/* =========================================
   ESTILOS DEL BOTÓN WHATSAPP (VIBE PREMIUM)
========================================= */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #C5A059;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Z-index altísimo para que nada lo tape */
    text-decoration: none;
    
    /* Estado inicial invisible para la animación de entrada */
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Clase que inyecta JS para que aparezca */
.wa-float.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: pulse-wa 2s infinite;
}

/* Efecto Hover */
.wa-float:hover {
    background-color: #A88647;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

/* Animación de latido suave */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}