/* ============================================================
   RMH ADVOGADOS — Estilos
   Paleta: navy escuro + dourado/bronze (sobriedade jurídica)
   Para trocar as cores, edite as variáveis em :root abaixo.
   ============================================================ */

:root {
  --navy: #072b1d;        /* verde-escuro principal (marca RMH) */
  --navy-2: #04190f;      /* verde mais escuro */
  --navy-3: #0c4029;      /* verde de hover */
  --gold: #cfa851;        /* dourado accent */
  --gold-2: #b88f3a;      /* dourado hover */
  --ink: #0e231a;         /* texto escuro esverdeado */
  --muted: #56655c;       /* texto secundário */
  --paper: #f6f4ec;       /* fundo claro (off-white) */
  --white: #ffffff;
  --line: #e6e1d4;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(7, 43, 29, 0.14);
  --serif: "Caladea", Cambria, "Times New Roman", Georgia, serif;
  --sans: "Libre Franklin", "Franklin Gothic Book", "Liberation Sans", Arial, sans-serif;
  /* ajustáveis pelo painel (Aparência e tamanhos) */
  --logo-topo: 66px;
  --logo-rodape: 104px;
  --section-pad: 92px;
  --font-scale: 1;
  --bg-image: url("assets/hero-bg.png");
  --header-bg: rgba(7, 43, 29, .78);
}
html { font-size: calc(100% * var(--font-scale, 1)); }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- Tipografia auxiliar ---------- */
.eyebrow {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600; margin-bottom: .8rem;
}
.eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.12;
  color: var(--ink); margin-bottom: 1.1rem;
}
.section-title.light { color: var(--white); }

.section-desc { color: var(--muted); max-width: 560px; font-size: 1.05rem; }

.section { padding: var(--section-pad, 92px) 0; }

.section-head.center { text-align: center; margin: 0 auto 56px; max-width: 640px; }
.section-head.center .section-desc { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn.full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg, rgba(7, 43, 29, .78)); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 163, 90, .18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.logo { display: flex; align-items: center; }
.logo img { height: var(--logo-topo, 66px); width: auto; display: block; }
.logo-mark {
  font-family: var(--serif); font-weight: 700; font-size: 1.6rem;
  color: var(--gold); letter-spacing: .04em;
}
.logo-text { color: var(--white); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
.nav { display: flex; gap: 34px; }
.nav a { color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--gold); }
.btn-nav { padding: 9px 22px; font-size: .85rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(7,43,29,.95) 0%, rgba(4,25,15,.88) 100%),
    var(--bg-image) center / cover no-repeat,
    var(--navy);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,163,90,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,163,90,.05) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .5;
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0; max-width: 820px; }
.hero-eyebrow {
  color: var(--gold); letter-spacing: .26em; text-transform: uppercase;
  font-size: .8rem; font-weight: 600; margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--serif); color: var(--white); font-weight: 700;
  font-size: clamp(2.3rem, 5.5vw, 4.2rem); line-height: 1.08; margin-bottom: 1.6rem;
}
.hero-title .accent { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.78); font-size: 1.15rem; max-width: 620px; margin-bottom: 2.4rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sobre ---------- */
.sobre { background: var(--paper); }
.sobre-text p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.sobre-text .btn { margin-top: .8rem; }
.sobre-aside { display: flex; flex-direction: column; gap: 20px; }
.team-photo { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; box-shadow: var(--shadow);
}
.stat-num { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold-2); line-height: 1; }
.stat-label { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; font-weight: 500; }

/* ---------- Áreas ---------- */
.areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.area-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.area-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.area-card:hover::before { transform: scaleX(1); }
.area-icon { font-size: 2.2rem; margin-bottom: 16px; }
.area-card h3 { font-family: var(--serif); font-size: 1.55rem; color: var(--ink); margin-bottom: 6px; }
.area-target { color: var(--gold-2); font-size: .85rem; font-weight: 600; margin-bottom: 18px; }
.area-card ul { list-style: none; margin-bottom: 22px; }
.area-card li { padding-left: 24px; position: relative; color: var(--muted); margin-bottom: 9px; font-size: .96rem; }
.area-card li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }
.area-link { color: var(--ink); font-weight: 600; font-size: .95rem; transition: color .2s; }
.area-link:hover { color: var(--gold-2); }

/* ---------- Diferenciais ---------- */
.diferenciais { background: var(--navy); }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dif-item { padding: 28px; border: 1px solid rgba(200,163,90,.2); border-radius: var(--radius); transition: background .25s; }
.dif-item:hover { background: var(--navy-2); }
.dif-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.dif-item h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.dif-item p { color: rgba(255,255,255,.66); font-size: .95rem; }

/* ---------- CTA faixa ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  padding: 70px 0; text-align: center;
}
.cta-inner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 10px; }
.cta-inner p { color: rgba(7,43,29,.85); margin-bottom: 26px; font-size: 1.1rem; }
.cta-band .btn-gold { background: var(--navy); color: var(--white); }
.cta-band .btn-gold:hover { background: var(--navy-2); }

/* ---------- Contato ---------- */
.contato { background: var(--paper); }
.contact-list { list-style: none; margin: 28px 0; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-list .ci { color: var(--gold-2); }
.ci svg { width: 22px; height: 22px; display: block; }
.maps-link svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 4px; }
.contact-list strong { color: var(--ink); }
.contact-list div { color: var(--muted); font-size: .98rem; }
.contact-list a { color: var(--gold-2); font-weight: 600; }
.contact-list a:hover { color: var(--ink); }
.socials { display: flex; gap: 22px; }
.socials a { color: var(--gold-2); font-weight: 600; font-size: .9rem; transition: color .2s;
  display: inline-flex; align-items: center; gap: 8px; }
.socials a svg { width: 20px; height: 20px; flex: 0 0 auto; }
.socials a:hover { color: var(--ink); }

.maps-link { display: inline-block; margin-top: 8px; color: var(--gold-2); font-weight: 600;
  font-size: .92rem; text-decoration: none; transition: color .2s; }
.maps-link:hover { color: var(--ink); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-card h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 22px; color: var(--ink); }
.form-card label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font-family: var(--sans); font-size: .95rem; color: var(--ink);
  background: var(--paper); transition: border-color .2s; resize: vertical;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(207,168,81,.18); }
.form-card .btn { margin-top: 8px; }

/* Seletor personalizado "Área de interesse" — na paleta do site */
.cselect { position: relative; margin-top: 6px; }
.cselect-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper);
  font-family: var(--sans); font-size: .95rem; color: var(--ink); cursor: pointer; text-align: left; }
.cselect-btn:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(207,168,81,.18); }
.cselect-btn svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--gold-2); transition: transform .2s; }
.cselect.open .cselect-btn svg { transform: rotate(180deg); }
.cselect.open .cselect-btn { border-color: var(--gold); }
.cselect-list { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
  list-style: none; margin: 0; padding: 6px; max-height: 280px; overflow: auto; display: none; }
.cselect.open .cselect-list { display: block; }
.cselect-list li { padding: 10px 12px; border-radius: 7px; color: var(--ink); font-size: .95rem; cursor: pointer; }
.cselect-list li:hover { background: rgba(207,168,81,.16); }
.cselect-list li[aria-selected="true"] { background: var(--gold); color: var(--navy); font-weight: 600; }
.cselect-list li.placeholder { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; padding: 60px 0; flex-wrap: wrap; }
.footer-logo { height: 56px; width: auto; margin-bottom: 14px; }
.footer-fullname { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em; margin-bottom: 4px !important; }
.footer-brand p { margin-top: 4px; max-width: 320px; font-size: .95rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: rgba(255,255,255,.7); font-size: .95rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.oab-note { font-style: italic; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Responsivo ---------- */
@media (max-width: 880px) {
  .nav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0;
    background: var(--navy-2); padding: 24px; gap: 18px; border-bottom: 1px solid rgba(200,163,90,.2);
  }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .areas-grid, .dif-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: 78vh; }
  .footer-bottom .container { flex-direction: column; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ============================================================
   ANIMAÇÕES / TRANSIÇÕES (reveal on scroll)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* linha dourada sob títulos centrais (estilo elegante) */
.section-head.center .section-title::after,
.page-hero h1::after {
  content: ""; display: block; width: 64px; height: 2px; background: var(--gold);
  margin: 18px auto 0;
}

/* ============================================================
   CABEÇALHO COM LINKS DE PÁGINA / ESTADO ATIVO
   ============================================================ */
.nav a.active { color: var(--gold); }

/* ============================================================
   SEÇÃO NOSSA SEDE
   ============================================================ */
.sede { background: var(--white); }
.sede-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.sede-photo-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 470px; }
.sede-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block;
  transition: transform .6s ease;
}
.sede-photo-wrap:hover img { transform: scale(1.04); }
.sede-photo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(7,43,29,.45) 100%);
}
.sede-photo-empty {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 320px; background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: rgba(255,255,255,.8); font-size: .95rem; padding: 30px;
}
.sede-addr { margin-top: 18px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.sede-addr .ci { color: var(--gold-2); }

/* ============================================================
   RODAPÉ NOVO (estilo translúcido)
   ============================================================ */
.site-footer {
  background:
    linear-gradient(135deg, rgba(7,43,29,.97), rgba(4,25,15,.97)),
    var(--bg-image) center / cover no-repeat;
  color: rgba(255,255,255,.72);
}
.footer-cols {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px;
  padding: 64px 0 40px;
}
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer-col h4 b { color: var(--gold); }
.footer-col p { font-size: .92rem; margin-bottom: 12px; max-width: 300px; }
.footer-logo { height: var(--logo-rodape, 104px); width: auto; margin-bottom: 16px; }
.footer-fullname { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; margin-bottom: 6px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .92rem; align-items: flex-start; }
.footer-contact a { color: rgba(255,255,255,.72); transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .ci { color: var(--gold); }
.footer-contact .ci svg { width: 18px; height: 18px; margin-top: 1px; }
.footer-social { display: flex; gap: 12px; margin: 6px 0 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .25s, transform .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-priv { display: inline-block; margin-top: 8px; color: rgba(255,255,255,.8);
  border-top: 1px solid rgba(200,163,90,.4); padding-top: 14px; }
.footer-priv:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; }
.footer-bottom .container { display: block; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 2px 0; }

/* ============================================================
   PÁGINAS INTERNAS (Áreas / Notícias)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(7,43,29,.95), rgba(4,25,15,.9)),
    var(--bg-image) center / cover no-repeat;
  color: #fff; text-align: center; padding: 110px 0 80px;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 6px 0 0; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 600px; margin: 22px auto 0; }

/* Áreas — página */
.area-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.area-detail {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 34px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.area-detail:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.area-detail .area-icon { font-size: 2.4rem; margin-bottom: 14px; }
.area-detail h2 { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); margin-bottom: 8px; }
.area-detail .area-target { color: var(--gold-2); font-weight: 600; font-size: .85rem; margin-bottom: 14px; }
.area-detail .area-desc { color: var(--muted); margin-bottom: 18px; }
.area-detail ul { list-style: none; padding: 0; margin: 0 0 22px; }
.area-detail li { padding-left: 24px; position: relative; color: var(--ink); margin-bottom: 9px; font-size: .96rem; }
.area-detail li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }

/* Notícias — grade */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-thumb { height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy-3)); position: relative; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-thumb .news-cat {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 50px;
}
.news-thumb .mono { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(207,168,81,.5); font-family: var(--serif); font-size: 2.4rem; font-weight: 700; }
.news-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.news-body p.news-date { color: var(--muted); font-size: .8rem; margin-bottom: 8px; flex: 0 0 auto; }
.news-body h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.news-body p:not(.news-date) { color: var(--muted); font-size: .92rem; margin-bottom: 16px; flex: 1; }
.news-link { color: var(--gold-2); font-weight: 600; font-size: .9rem; }
.news-link:hover { color: var(--ink); }

/* Notícia — post completo */
.post { max-width: 760px; margin: 0 auto; }
.post .post-cat { color: var(--gold-2); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.post h1 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); margin: 10px 0; }
.post .post-date { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.post .post-img { width: 100%; border-radius: var(--radius); margin-bottom: 26px; box-shadow: var(--shadow); }
.post p { color: #33413a; margin-bottom: 18px; font-size: 1.05rem; }
.post h2 { font-family: var(--serif); color: var(--ink); font-size: 1.5rem; margin: 34px 0 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.post h2:first-of-type { border-top: none; padding-top: 0; }
.post ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.post li { position: relative; padding-left: 24px; margin-bottom: 9px; color: #33413a; font-size: 1.02rem; }
.post li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }
.post a { color: var(--gold-2); font-weight: 600; }
.post .back { display: inline-block; margin-top: 28px; color: var(--gold-2); font-weight: 600; }

/* ---------- Equipe ---------- */
.equipe { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 920px; margin: 0 auto; }
.team-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 130px; height: 130px; margin: 0 auto 18px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold); box-shadow: 0 6px 18px rgba(7,43,29,.15);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold); font-family: var(--serif); font-size: 3rem; font-weight: 700;
}
.team-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: 4px; }
.team-role { color: var(--muted); font-size: .92rem; margin-bottom: 4px; }
.team-oab { color: var(--gold-2); font-size: .82rem; font-weight: 600; }

@media (max-width: 880px) {
  .sede-grid, .area-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-grid, .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 30px; }
}
