/* Rodapé com fundo branco */
footer {
    background-color: #ffffff; /* Fundo branco */
    color: #333333; /* Texto preto suave */
    padding: 40px 20px;
    text-align: center;
    font-size: 1rem;
    border-top: 1px solid #dddddd; /* Linha sutil no topo */
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Links rápidos */
footer .links {
    margin: 10px 0;
}

footer .links a {
    color: #007bff; /* Azul padrão para os links */
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

footer .links a:hover {
    color: #0056b3; /* Azul mais escuro ao passar o mouse */
}

/* Copyright */
footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666666; /* Texto em cinza */
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        text-align: center;
    }

    footer .links {
        margin-bottom: 15px;
    }
}
.buttons-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; /* Para garantir que os botões quebrem linha se necessário */
}

.button-wrapper {
    text-align: center;
}

.call-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #28a745; /* Verde para o ícone */
    width: 120px; /* Largura fixa para o botão */
    height: 120px; /* Altura fixa para o botão */
    font-size: 2.2em; /* Ícone um pouco menor */
    font-weight: bold;
}