/* WhatsApp Float Button Styles */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatWA 3s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.8);
    animation: floatWA 3s ease-in-out infinite, pulseGlowHover 1s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto;
}

