Atendimento WhatsApp por Departamento
/* Estilos básicos para os botões */
.whatsapp-buttons {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
margin-top: 50px;
}
.whatsapp-button {
background-color: #25D366; /* Cor verde do WhatsApp */
color: white;
border: none;
padding: 15px 30px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease;
width: 250px;
text-align: center;
}
.whatsapp-button:hover {
background-color: #128C7E; /* Cor mais escura ao passar o mouse */
}