@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Estilo base para el botón */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    z-index: 9999;
    transition: background 0.5s;
}

/* Animación de degradado al apuntar con el cursor */
.whatsapp-button:hover {
    animation: gradientMove 1.5s infinite;
    background: linear-gradient(45deg, #FFA500, #FF4500, #FF0000);
    background-size: 400% 400%;
}

/* Definición de la animación del degradado */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
