/**
 * eVoost WhatsApp — estilos del botón flotante.
 * Port 1:1 del snippet WPCode original (misma estética), con selectores
 * bajo el prefijo evoost-wa-.
 */

.evoost-wa-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 999999999 !important;
}

.evoost-wa-btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    background: transparent !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease;
    cursor: pointer !important;
    margin-bottom: 55px !important;
    animation: evoost-wa-breathe 2.5s ease-in-out infinite;
}

/* Anillo pulsante (efecto sonar) */
.evoost-wa-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: rgba(37, 211, 102, 0.5) !important;
    z-index: -1 !important;
    animation: evoost-wa-pulse-ring 2.5s ease-out infinite;
    pointer-events: none !important;
}

.evoost-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    animation-play-state: paused;
}

.evoost-wa-btn:hover::before {
    animation-play-state: paused;
    opacity: 0;
}

.evoost-wa-icon {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}

@keyframes evoost-wa-breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes evoost-wa-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .evoost-wa-float {
        bottom: 20px !important;
        right: 20px !important;
    }

    .evoost-wa-btn {
        width: 55px !important;
        height: 55px !important;
    }

    .evoost-wa-icon {
        width: 55px !important;
        height: 55px !important;
    }
}
