.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse-btn 1s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    animation: none;
    transform: scale(1.1);
}

.floating-whatsapp img {
    width: 44px;
    border-radius: 50%;
    /* animation: pulse-btn 1s infinite ease-in-out; */
    height: 44px;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        background-color: #25D366;
    }

    50% {
        transform: scale(1.2);
        background-color: #00e660;
    }

    100% {
        transform: scale(1);
        background-color: #25D366;
    }
}