@charset "utf-8";
/* CSS Document */

/* Estilos para o rodapé  */
.footer-top.bg-light {
    background-color: #7fa936 !important;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 5rem; /* Mantém a margem superior */
}
.footer-top .container {
    font-family: gothamRoundedMedium, sans-serif;
    max-width: 1340px;
    margin: 0 auto;
    padding: 40 15px;
}
.footer-top h6 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-top p {
    line-height: 1.5;
    margin-bottom: 0;
}
.footer-top a, .footer-top a:visited {
    color: white;
    text-decoration: none;
    padding: 6px 6px;
    padding-right: 12px;
    border-radius: 8px;
    transition: background-color 0.18s ease;
}
.footer-top a:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
}
.footer-top a:active {
    opacity: 0.7; /* ou transform: scale(0.98); */
}
/* Estilos para a linha separadora */
.footer-line.bg-light {
    background-color: #7fa936 !important; /* Mantém a mesma cor de fundo */
    padding: 0; /* Remove qualquer padding padrão */
}
.footer-line .container-fluid {
    padding: 0; /* Garante que o container fluid não adicione padding */
}
.footer-line .linha-rodape {
    width: 100%;
    border-top: 1px solid #fff; /* Linha branca */
    margin: 0; /* Remove margens padrão da hr */
}
/* Estilos para o rodapé inferior */
.footer-bottom.bg-light {
    background-color: #7fa936 !important;
    color: #f00;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-bottom .container {
    font-family: gothamRoundedMedium, sans-serif;
    max-width: 1200px;
    margin: 20 auto;
    padding: 20 15px;
    text-align: center;
}
.footer-bottom .text-muted {
    color: #fff !important;
}
/* Ajustes responsivos (opcional, mas pode ser útil) */
/* Ajustes responsivos para telas menores */
@media (max-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 50px !important; /* Adicionamos !important */
    }
    footer .col-md-4:last-child {
        margin-bottom: 0; /* Mantém a remoção da margem inferior do último item */
    }
}

