:root {
    --primary: #0b1f3a;
    --primary-mid: #122847;
    --primary-light: #1a3560;
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.12);
    --gold-line: rgba(212, 175, 55, 0.35);
    --white: #ffffff;
    --off-white: #f8f9fa; /* Branco profissional (off-white) */
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-site: rgba(11, 31, 58, 0.08);
    --bg-footer: #1e2229; /* Cinza escuro elegante padrão */
    --text-footer: #ffffff;
    --padding-standard: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-family: 'Source Serif 4', serif;
    background-color: var(--off-white);
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

a {
    text-decoration: none;
}
header {
    height: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    max-width: 100%;
    
    /* Para telas menores (celular/tablet): 
       O dourado fica puro até 8rem (passando a logo) e depois espalha suavemente até o azul completo em 20rem */
    background: linear-gradient(to right, var(--gold) 8rem, var(--primary) 20rem);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ajuste para monitores grandes:
   Como o miolo do seu site (nav) fica centralizado a partir de 1200px, usamos esse cálculo 
   para garantir que o início da transição do gradiente acompanhe o movimento da logo na tela */
@media (min-width: 1200px) {
    header {
        background: linear-gradient(
            to right, 
            var(--gold) calc(50% - 600px + 8rem), 
            var(--primary) calc(50% - 600px + 22rem)
        );
    }
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px; 
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 0 2rem; 
}

.nav__logo {
    flex-shrink: 0;
    width: 4.5rem; 
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.nav__divider {
    width: 1px;
    height: 2.5rem;
    margin-left: 16rem;
    margin-right: 12rem;
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav__links a {
    text-decoration: none;
    padding: 0.5rem 0.2rem;
    color: var(--white);
    font-size: 1rem; 
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav__links a:hover {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.nav__brand {
    margin-left: auto;
}

/* Hamburguer (mobile) */
.nav__toggle {
    display: none;
    background: none;
    border: 1px solid var(--white);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    margin: 4px 0;
}
/* ── Main ── */
main {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--off-white);
}

/* ── Row Layout: section + aside ── */
.content-row {
    display: grid;
    grid-template-columns: 1fr 360px;
    background-color: var(--white) ;
    gap: 2rem;
    align-items: start;
    width: 100%;
    padding-right: 2rem;
}

/* ── Wrap (Seção Inicial / Quem Somos) ── */
.wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

/* HERO (Destaque institucional) */
.hero {
    background: var(--primary);
    padding: 3rem 2.5rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    left: 2.5rem;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.hero-block p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.divider-v {
    width: 1px;
    background: var(--gold-line);
}

.hero-mission h3 {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hero-mission p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

/* Cards de Seção (Objetivos / Diretoria) */
.section-card {
    background: var(--white);
    border: 1px solid var(--border-site);
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.section-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-site);
}

.section-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Objetivos */
.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.goal-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.goal-dot {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--gold);
    margin-top: 8px;
}

.goal-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    width: 100%;
}

.member-card {
    background: var(--white);
    padding: 1.25rem;    
    display: flex;
    flex-direction: column; 
    width: 100%;
    gap: 0.6rem;
    border-radius: 2%;
}

.member-card.highlight {
    background: var(--primary);
    border: 1px solid var(--primary-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-card.highlight div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fonders-photo {
    width: 100%; 
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;  
    margin-bottom: 0.4rem;
}

.member-role {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
}

.member-name {
    font-size: 13px;
    font-weight: 800;
    max-width: 200px;
    color: var(--primary);
    line-height: 1.4;
    display: block;
    word-wrap: break-word; /* Se o nome for muito longo, quebra a linha elegantemente */
}

.member-card.highlight .member-name {
    color: var(--white);
}

.member-oab {
    font-family: 'Arial', sans-serif;
    font-size: 11.5px;
    color: var(--text-muted);
    display: block;
    line-height: 1.4;
    word-break: break-word; /* Impede que o texto longo da OAB empurre as bordas do card */
}

.member-card.highlight .member-oab {
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1150px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr); /* Transiciona para 2 colunas, evitando que os textos fiquem ilegíveis */
    }
}

/* Para telas de celulares: */
@media (max-width: 650px) {
    .members-grid {
        grid-template-columns: 1fr; /* Fica em 1 coluna vertical confortável */
    }
}
/* ── Seção de Notícias Principal ── */

.section-title {
    font-size: 40px;
    color: var(--primary);
    align-self: flex-start;
    margin-bottom: 0.5rem;
    margin-top: 0px;
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 3px solid var(--gold);
}

.read-more {
    color: var(--primary);
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: var(--primary);
    color: var(--white);
}

/* ── Lateral (Aside) ── */
.aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.aside h1 {
    color: var(--primary);
    font-size: 22px;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--gold);
    width: fit-content;
    margin-bottom: 0.5rem;
}

aside {
    width: 100%;
}

.aside-card {
    border-bottom: 1px solid var(--border-site);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    transition: border-color 0.3s ease;
}

.aside-card:hover {
    border-bottom-color: var(--gold);
}

.aside-card img {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: cover;
}

.aside-card h2 {
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary);
    font-weight: 700;
    transition: color 0.3s ease;
}

.aside-card:hover h2 {
    color: var(--gold);
}

.aside-card p {
    margin-top: 0.25rem;
    font-size: 13px;
    color: var(--text-muted);
}

.aside-card a {
    text-decoration: none;
}

.aside-meta {
    font-size: 11px;
    color: #888;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
}

/* ── Footer ── */
.site-footer {
    background-color: var(--bg-footer);
    color: var(--text-footer);
    padding: 3.5rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    font-family: 'Arial', sans-serif;
    border-top: 3px solid var(--gold);
}

.footer-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-block h2 {
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-block p {
    line-height: 1.7;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-block a:hover {
    color: var(--gold);
}

/* Dropdown Menu Global */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    list-style: none;
    min-width: 200px;
    background: var(--primary-mid);
    border-top: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav__dropdown:hover .nav__dropdown-menu {
    display: block;
}

.nav__dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.nav__dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--gold);
    border-bottom-color: var(--primary-light);
}

.nav__arrow {
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__arrow {
    transform: rotate(90deg);
}

/* ── Responsividade ── */
@media (max-width: 1024px) {
    .content-row {
        grid-template-columns: 1fr;
    }
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .site-footer {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    main {
        padding: 1.5rem 1rem;
    }
    .nav__links {
        display: none;
    }
    .nav__toggle {
        display: block;
    }
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    /* Quando ativo via JS */
    header.nav-open .nav__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-mid);
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
}
/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;

    z-index: 1000;

    list-style: none;
    min-width: 180px;
    background: var(--primary);
    border: 3px solid var(--border-light);
}

.nav__dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    margin-top: 0.6rem;
    font-size: 1.6rem;
    text-decoration: none;
    white-space: nowrap;
}

.nav__dropdown-menu img {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
}

/* Abre ao passar o mouse */
.nav__dropdown:hover .nav__dropdown-menu {
    display: block;
}

.nav__arrow {
    font-size: 2.3rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

/* Gira a seta quando o dropdown abre */
.nav__dropdown:hover .nav__arrow {
    transform: rotate(90deg);
}

.aside-card {
    border-bottom: 1px solid var(--gold-line);
    padding-bottom: 0.7rem;
    margin-bottom: 0.7rem;
    display: flex;
    gap: 1.7rem;
}

.aside-card img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
}

.aside-card h2 {
    font-size: 1rem;
    color: var(--muted);
}

.aside-card p {
    margin-top: 0.5rem;
    color: var(--muted);
}

.aside-card a {
    text-decoration: none;
    color: var(--muted);
}

.aside-texto {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aside-card:hover {
    border-bottom: 5px solid var(--gold);
    transition: all 0.5s ease;

    a {
        color: var(--gold);
    }
}

.aside-meta {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    margin-right: 2rem;
}

.aside h1 {
    color: var(--muted);
    font-size: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--gold);
    width: fit-content;
}

.presentation-section {
    border: 1px solid;
    max-width: 100%;
    margin-right: 6rem;
    display: block;
    justify-content: start;
    align-items: start;
    padding-top: 2rem;
    padding-inline: 3rem;
    height: fit-content;
    background: var(--off-white);
}

.presentation-section h1 {
    font-size: 2.5rem;
    color: var(--primary);
}


.presentation-section spam {
    font-size: 2.5rem;
    color: var(--gold);
}

.divider-presentation {
    width: 1px;
    height: 5rem;
    margin-left: 2rem;
    margin-right: 1rem;
    background: var(--gold-line);
    flex-shrink: 0;
}

.logo {
    width: 9rem;
    height: 9rem;
    object-fit: cover;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: gray;
}

.div-mission {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-width: 12rem;
    color: var(--primary);
}

.section-noticia {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 50rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    padding-right: 0px;
    padding-top: 0px;

    a {
        text-decoration: none;
    }

}

.section-noticia a:visited {
    color: var(--primary);
    text-decoration: none;
}

/* arrumar o section-noticias hover, ta feio sem */

.article-noticia-destaque {
    width: 100%;
    background: var(--white);
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.article-card-row {
    width: 100%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
}

.read-more {
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0.3rem;
    padding-left: 1rem;
    margin-top: 1rem;
    border-bottom: 3px solid var(--gold);
}

.read-more:hover {
    background: var(--gold);
    color: var(--primary);
    transition: all 0.5s ease;
    border-bottom: 0 solid var(--gold);
    border-radius: 15px;
}

.all-news {
    width: 100%;
    background: var(--white);
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.arrow {
    padding-left: 0.5rem;
    padding-right: 0.3rem;
    font-size: 1.8rem;
    transform: rotate(90deg);
}

.noticia-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.noticia-data:hover {
    a {
        color: var(--gold);
        transition: all 0.3s ease;
        border-bottom: 3px solid var(--gold);
    }

    ;

    p {
        color: var(--gold);
        transition: all 0.3s ease;
        border-bottom: 3px solid var(--gold);
    }
}

.img-destaque {
    width: 100%;
    object-fit: cover;
}

.div-noticia-data {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 370px;
    height: 170px;
    height: auto;
    font-size: 0.75rem;
}

.noticia-data-img {
    height: auto;
    width: 8rem;
}

.noticia-data-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.wrap {
    font-family: 'Georgia', serif;
    color: var(--primary);
    padding: 0 0 2rem;
    max-width: 1300px;

}

.label {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}


/* ── HERO ── */
.hero {
    background: var(--primary);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.hero::after {
    content: '';
    position: absolute;
    left: 2rem;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.hero .label {
    color: var(--gold);
}

.hero .label::before {
    background: var(--gold);
}

.hero h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.hero-block p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

.divider-v {
    width: 1px;
    background: var(--gold-line);
    margin: 0 0.25rem;
}

.hero-mission h3 {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.hero-mission p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

/* ── STAT PILLS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    background: var(--primary);
    border: 1px solid var(--gold-line);
    border-radius: 6px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.stat-number {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ── SECTIONS ── */
.section-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
}

.section-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.section-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

/* Objetivos */
.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.goal-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.goal-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
}

.goal-item p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--primary);
}

/* Membros */
.members-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

/* Fundadores list */
.founders-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--off);
    font-size: 13px;
}

.founder-row::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.founder-row strong {
    color: var(--primary);
    font-weight: 600;
    margin-right: 4px;
}

.founder-row span {
    color: var(--primary);
}

/* Sede */
.sede-bar {
    background: var(--primary);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.sede-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.sede-bar p strong {
    color: rgba(255, 255, 255, 0.85);
}

.sede-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
}

.site-footer {
    background-color: var(--bg-footer);
    color: var(--text-footer);
    padding: 40px var(--padding-standard);

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--padding-standard);
    font-family: sans-serif;
}

/* Estilização de cada Article (Alterado aqui) */
.footer-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
    /* <--- Isso centraliza títulos, textos e listas */
}

.footer-block h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-block p {
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
    /* Opcional: evita que o texto inline fique textualmente muito largo */
    margin: 0 auto;
    /* Mantém o bloco do parágrafo centralizado */
}

/* Listas e Links */
.footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block a {
    color: var(--text-footer);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
    display: inline-block;
}

.footer-block a:hover {
    border-bottom: var(--gold) 2px solid;
    color: var(--gold);
}