.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Mudei de 'right' para 'left' */
    z-index: 1000;
    animation: float 2s ease-in-out infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    background-color: #20b556;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    fill: white;
    width: 35px;
    height: 35px;
}