/* CUSTOM */

/* Estilos do botão flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000; /* Coloca o botão acima do background */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Efeito hover no botão */
.whatsapp-button:hover {
    transform: scale(1.1);
}
