* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* --- ESTILOS DO Navbar --- */
.header {
    background-color: #276749;
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 30px;
}

.site-title {
    font-size: 1.5rem;
    color: #E0E0E0;
    margin-bottom: 0;
    font-weight: 700;
}

.navbar-nav {
    gap: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link:hover {
    color: #ABD3C0;
}

/* --- ESTILO DA SEÇÃO DE TÓPICOS --- */

.topicos-direitos {
    padding-top: 40px;
    padding-bottom: 40px;
}

.topicos-direitos h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #276749;
}

.topic-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-bottom: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    transition: transform 0.15s ease-in-out;
    height: 100%; 
    text-decoration: none;
}

.topic-card:hover {
    transform: scale(1.03);
}

.topic-card .card-body {
    padding: 1.25rem;
}

.topic-card .card-title {
    font-size: 1.2rem;
    color: #276749;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.topic-card .card-text {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0;
}


/* --- ESTILOS DO RODAPÉ --- */

footer {
    background-color: #276648;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Nunito, sans-serif;
    width: 100%;
    margin: 0 auto;
}


.footer-container, .footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    gap: 20px;
}

.footer-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
}

.footer-legal {
    margin-top: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 40px;
}

.footer-text {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #979797;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    border-color: #ffffff;
    text-decoration: none;
}

.footer-social img {
    height: 18px;
    width: 18px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}
