/* Animación de salto */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px); /* Salto hacia arriba */
    }
    60% {
        transform: translateY(-8px); /* Salto hacia abajo */
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    animation: bounce 2.5s infinite; 
    animation-delay: 7s;
    transition: transform 0.2s ease; /* Agregar transición suave */
    animation-play-state: running; /* La animación está en ejecución por defecto */
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
}

.whatsapp-button:hover {
    animation-play-state: paused; /* Pausar la animación al hacer hover */
    transform: scale(1.03) !important; /* Forzar el escalado cuando se hace hover */
}