* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.soporte-mascota {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 160px;
    z-index: 9999;
    text-decoration: none;
}

/* Mascota */
.mascota {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform .35s ease;
}

/* Diadema */
.diadema {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) scale(.6);
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,.3);
    opacity: 0;
    transition: all .3s ease;
    z-index: 3;
}

/* 🌟 ANTENA BRILLANTE */
.antena-glow {
    position: absolute;
    top: 8px;          /* AJUSTA según tu imagen */
    right: 45px;       /* AJUSTA según tu imagen */
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    z-index: 4;

    box-shadow:
        0 0 6px #00ff88,
        0 0 12px rgba(0,255,136,.8),
        0 0 20px rgba(0,255,136,.6);

    animation: pulso-antena 1.8s infinite ease-in-out;
}

/* Animación del brillo */
@keyframes pulso-antena {
    0% {
        transform: scale(1);
        opacity: .7;
    }
    50% {
        transform: scale(1.6);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: .7;
    }
}

/* Hover */
.soporte-mascota:hover .diadema {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.soporte-mascota:hover .mascota {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
    .soporte-mascota {
        width: 130px;
    }
}

/* 🛸 Levitación suave */
.mascota {
    animation: levitar-suave 6s linear infinite;
    will-change: transform;
}

@keyframes levitar-suave {
    0% {
        transform: translate3d(0, 0px, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
    100% {
        transform: translate3d(0, 0px, 0);
    }
}

.antena-glow {
    background: #00ff88;
    box-shadow:
        0 0 6px currentColor,
        0 0 12px currentColor,
        0 0 20px currentColor;
    color: #00ff88;
    transition: all .4s ease;
}

/* Estados */
.antena-verde {
    color: #00ff88;
}

.antena-amarillo {
    color: #ffcc00;
}

.antena-rojo {
    color: #ff3b3b;
}