.floating-whatsapp {
    animation: float 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-whatsapp:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
