.angie-whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 70px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    gap: 12px;
    animation: angie-wa-pulse 2s infinite ease-in-out;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@keyframes angie-wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.angie-whatsapp-floating-btn svg {
    width: 40px;
    height: 40px;
    animation: angie-wa-wiggle 3s infinite ease-in-out;
}

@keyframes angie-wa-wiggle {
    0%, 10%, 100% { transform: rotate(0deg); }
    2%, 6% { transform: rotate(-10deg); }
    4%, 8% { transform: rotate(10deg); }
}

.angie-whatsapp-text {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.angie-whatsapp-floating-btn:hover {
    background-color: #128C7E;
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: #FFF;
}
.angie-whatsapp-floating-btn:hover svg {
    animation: none;
}

@media (max-width: 768px) {
    .angie-whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        height: 60px;
        padding: 0 20px;
        border-radius: 30px;
    }
    .angie-whatsapp-floating-btn svg {
        width: 30px;
        height: 30px;
    }
    .angie-whatsapp-text {
        font-size: 16px;
    }
}