.whatsapp-button-container {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 99;
    animation: slideInUp 0.5s ease-out;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.4));
}

.whatsapp-button svg {
    width: 44px;
    height: 44px;
}

.whatsapp-button__icon {
    display: block;
    pointer-events: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 15px rgba(37, 211, 102, 0.6));
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .whatsapp-button-container {
        bottom: 24px;
        right: 24px;
    }

    .whatsapp-button svg {
        width: 50px;
        height: 50px;
    }
}

/* Desktop Grande */
@media (min-width: 1200px) {
    .whatsapp-button-container {
        bottom: 30px;
        right: 30px;
    }
}
