/* ============================================================
   Leonardo Matielo Advocacia e Consultoria Jurídica
   Conceito: claro editorial — "a marca vira tinta sobre papel"
   Papel claro + navy como tinta (títulos, ícones, botões);
   prata em fios, marcas de corte e detalhes; navy profundo
   apenas nos bookends (convite final + rodapé).
   Tipografia: Cormorant Garamond (títulos) + Montserrat (corpo)
   ============================================================ */

:root {
  /* Paleta — derivada da logomarca (navy #000614→#05142B, prata #CCCCCC) */
  --paper: #FBFCFD;        /* fundo geral */
  --mist: #EFF2F6;         /* painéis e faixas */
  --ink: #0A1D3A;          /* navy tinta — títulos, ícones, botões */
  --deep: #040D1F;         /* navy profundo — bookends */
  --deep-2: #081527;
  --steel: #54647E;        /* texto de apoio */
  --steel-dark: #3D4E6C;   /* texto corrente */
  --silver: #C9CDD4;       /* prata — fios e detalhes */
  --silver-dark: #9AA6B8;

  --line: rgba(10, 29, 58, 0.09);
  --line-strong: rgba(10, 29, 58, 0.22);

  --grad-navy: linear-gradient(135deg, #142C52 0%, #071630 100%);
  --grad-silver: linear-gradient(135deg, #EDEDEF 0%, #C9CDD4 100%);

  /* Tons claros usados sobre os bookends escuros */
  --on-dark-title: #ECEEF2;
  --on-dark-body: #93A0B5;
  --on-dark-faint: #6B7890;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --container: 1160px;
  --radius: 14px;
  --radius-lg: 20px;

  --dur: 220ms;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--paper);
  color: var(--steel-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--ink); }

::selection { background: var(--ink); color: var(--paper); }

/* ---------- Acessibilidade ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -64px;
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout base ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

main { flex: 1; }

.section {
  padding-block: clamp(64px, 9vw, 116px);
  position: relative;
}
.section--line { border-top: 1px solid var(--line); }
.section--panel { background: var(--mist); }

/* Cabeçalho de seção */
.section-head, .section-title { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px;
  background: var(--silver-dark); flex-shrink: 0;
}
.section-head--center .eyebrow::after {
  content: ""; width: 34px; height: 1px;
  background: var(--silver-dark); flex-shrink: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.5rem); }

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: var(--steel);
  max-width: 62ch;
  margin-top: 18px;
}

/* Acento editorial: itálico com sublinhado prata (substitui o gradiente) */
.text-grad {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--silver);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--grad-navy);
  color: #F4F6FA;
  box-shadow: 0 12px 26px rgba(7, 22, 48, 0.24);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 22, 48, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(10, 29, 58, 0.04);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; min-height: 42px; font-size: 0.85rem; }

/* ---------- Header (claro) ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0;
  z-index: 100;
  background: rgba(251, 252, 253, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 252, 253, 0.95);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
/* Monograma prata sobre pastilha navy — a marca funciona no claro sem redesenho */
.brand-mark {
  width: 46px; height: 46px;
  padding: 9px;
  border-radius: 11px;
  background: linear-gradient(160deg, #0A1D3A 0%, #040D1F 100%);
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--steel);
}

.nav-list {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px);
  list-style: none; padding: 0;
}
.nav-list a:not(.btn) {
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--steel-dark);
  text-decoration: none;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-list a:not(.btn):hover { color: var(--ink); }
.nav-list a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--silver-dark);
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(9, 20, 40, 0.12);
    padding: 18px clamp(20px, 4vw, 40px) 28px;
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a:not(.btn) {
    display: block;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-list li:last-child { margin-top: 14px; }
  .nav-list .btn { width: 100%; }
}

/* ---------- Hero (claro, com retrato) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(130px, 17vh, 180px) clamp(64px, 9vw, 104px);
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(126, 140, 166, 0.14), transparent 62%),
    radial-gradient(800px 420px at -8% 108%, rgba(126, 140, 166, 0.09), transparent 60%),
    var(--paper);
}
.hero-watermark {
  position: absolute;
  right: clamp(-140px, -6vw, -40px);
  top: -60px;
  width: clamp(340px, 42vw, 640px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.hero-content { max-width: 640px; }
.hero h1 { margin-bottom: 8px; }
.hero .lead { margin-top: 22px; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 38px;
}
.hero-credential {
  margin-top: 34px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.hero-credential strong { color: var(--ink); font-weight: 600; }

/* Retrato com marcas de corte (vocabulário de papelaria) */
.hero-photo {
  position: relative;
  width: min(400px, 100%);
  margin-left: auto;
  margin-right: clamp(0px, 1.5vw, 18px);
}
.hero-photo::before {
  content: ""; position: absolute; top: -14px; left: -14px;
  width: 26px; height: 26px;
  border-top: 1.5px solid var(--silver-dark);
  border-left: 1.5px solid var(--silver-dark);
}
.hero-photo::after {
  content: ""; position: absolute; bottom: -14px; right: -14px;
  width: 26px; height: 26px;
  border-bottom: 1.5px solid var(--silver-dark);
  border-right: 1.5px solid var(--silver-dark);
}
.hero-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  border: 1px solid rgba(10, 29, 58, 0.12);
  box-shadow: 0 34px 70px rgba(9, 20, 40, 0.18);
}
.id-chip {
  position: absolute;
  left: -28px; bottom: 26px;
  display: flex; flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 18px 38px rgba(9, 20, 40, 0.16);
}
.id-chip .nm {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.08rem;
  color: var(--ink); line-height: 1.25;
}
.id-chip .ob {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { margin-inline: auto; width: min(340px, calc(100% - 40px)); }
  .id-chip { left: -14px; }
}

/* Hero interno (páginas secundárias) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(130px, 16vh, 170px) clamp(52px, 7vw, 80px);
  background:
    radial-gradient(900px 420px at 82% -20%, rgba(126, 140, 166, 0.13), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-top: 16px; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  list-style: none; padding: 0;
  margin-bottom: 22px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--steel);
}
.breadcrumb a { color: var(--steel); text-decoration: none; transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: var(--silver); }
.breadcrumb [aria-current="page"] { color: var(--steel-dark); }

/* Identificação com retrato circular (contato) */
.page-id {
  display: flex; align-items: center;
  gap: clamp(20px, 3vw, 32px);
}
.page-id .avatar {
  width: clamp(92px, 12vw, 124px);
  height: clamp(92px, 12vw, 124px);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 14%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 1px var(--silver), 0 18px 36px rgba(9, 20, 40, 0.16);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .page-id { flex-direction: column; align-items: flex-start; }
}

/* ---------- Barra de fatos (trust bar) ---------- */
.factbar {
  border-block: 1px solid var(--line);
  background: var(--mist);
}
.factbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.fact {
  background: var(--mist);
  padding: 30px clamp(18px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
}
.fact svg { width: 26px; height: 26px; color: var(--ink); }
.fact h3 {
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  color: var(--ink);
}
.fact p { font-size: 0.86rem; color: var(--steel); line-height: 1.6; }

@media (max-width: 920px) { .factbar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .factbar-grid { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 920px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 12px 28px rgba(9, 20, 40, 0.05);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
a.card { text-decoration: none; }
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(9, 20, 40, 0.1);
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--mist);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 { margin-top: 4px; }
.card p { font-size: 0.94rem; color: var(--steel); }

.card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--steel);
  border: 1px solid rgba(10, 29, 58, 0.16);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- Seção "para quem" (autor/réu, PF/PJ) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.panel {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 12px 28px rgba(9, 20, 40, 0.05);
}
.panel h3 {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.panel h3 svg { width: 22px; height: 22px; color: var(--ink); flex-shrink: 0; }
.panel p { font-size: 0.95rem; color: var(--steel); }
.panel p strong { color: var(--ink); font-weight: 600; }

/* Listas com marcador */
.checklist {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 16px;
}
.checklist li {
  display: flex; gap: 12px;
  font-size: 0.95rem;
  color: var(--steel-dark);
}
.checklist svg {
  width: 18px; height: 18px;
  color: var(--ink);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ---------- Etapas ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: step;
}
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--silver-dark);
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 8px;
}
.step p { font-size: 0.9rem; color: var(--steel); }

/* ---------- Bloco editorial (texto + aside) ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) { .editorial { grid-template-columns: 1fr; } }

.editorial-body p + p { margin-top: 16px; }
.editorial-body p { color: var(--steel); }
.editorial-body strong { color: var(--ink); font-weight: 600; }
.editorial-body .btn { margin-top: 26px; }

/* Citação editorial em itálico */
.editorial-body blockquote {
  margin: 24px 0;
  padding-left: 22px;
  border-left: 2px solid var(--silver);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.42;
  color: var(--ink);
}

.aside-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 40px);
  position: relative;
  box-shadow: 0 16px 40px rgba(9, 20, 40, 0.07);
}
.aside-card .monogram {
  width: 88px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0A1D3A 0%, #040D1F 100%);
  margin-bottom: 22px;
}
.aside-card h3 { margin-bottom: 12px; }
.aside-card p { font-size: 0.92rem; color: var(--steel); }
.aside-card .btn { margin-top: 22px; }

/* Aside com retrato */
.aside-card--photo { padding: clamp(20px, 2.4vw, 28px); }

.photo-frame { position: relative; }
.photo-frame::before {
  content: ""; position: absolute; top: -11px; left: -11px;
  width: 22px; height: 22px;
  border-top: 1.5px solid var(--silver-dark);
  border-left: 1.5px solid var(--silver-dark);
}
.photo-frame::after {
  content: ""; position: absolute; bottom: -11px; right: -11px;
  width: 22px; height: 22px;
  border-bottom: 1.5px solid var(--silver-dark);
  border-right: 1.5px solid var(--silver-dark);
}
.photo-frame img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(10, 29, 58, 0.1);
}
.photo-caption {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--steel);
  letter-spacing: 0.04em;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FFFFFF;
  transition: border-color var(--dur) var(--ease);
}
.faq details + details { margin-top: 12px; }
.faq details[open] { border-color: var(--line-strong); }

.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--steel);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary svg { transform: rotate(180deg); }
.faq .faq-body {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--steel);
}
.faq .faq-body p + p { margin-top: 10px; }

/* ---------- Cartão-assinatura (fim das páginas de área) ---------- */
.bio-strip {
  display: flex; align-items: center;
  gap: clamp(18px, 3vw, 30px);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 14px 34px rgba(9, 20, 40, 0.07);
}
.bio-strip > img {
  width: 96px; height: 120px;
  object-fit: cover;
  object-position: 50% 8%;
  border-radius: 10px;
  flex-shrink: 0;
}
.bio-body { flex: 1; min-width: 240px; }
.bio-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.2;
}
.bio-oab {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
  margin: 5px 0 8px;
}
.bio-text { font-size: 0.9rem; color: var(--steel); max-width: 56ch; }
.bio-strip .btn { flex-shrink: 0; }

@media (max-width: 760px) {
  .bio-strip { flex-wrap: wrap; }
  .bio-strip .btn { width: 100%; }
}

/* ---------- Convite final (bookend navy) ---------- */
.invite {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 205, 212, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(126, 140, 166, 0.16), transparent 60%),
    linear-gradient(180deg, var(--deep-2) 0%, var(--deep) 100%);
  padding: clamp(44px, 6vw, 76px) clamp(26px, 5vw, 72px);
  text-align: center;
}
.invite-watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 36vw, 460px);
  opacity: 0.05;
  pointer-events: none;
}
.invite > * { position: relative; }
.invite h2 { max-width: 640px; margin-inline: auto; color: var(--on-dark-title); }
.invite .eyebrow { color: var(--on-dark-body); }
.invite .eyebrow::before, .invite .eyebrow::after { background: var(--on-dark-faint); }
.invite p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--on-dark-body);
  font-weight: 400;
}
.invite .hero-ctas { justify-content: center; }
.invite .btn-primary {
  background: var(--grad-silver);
  color: #071630;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.invite .btn-primary:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45); }
.invite .btn-ghost {
  color: #D8DCE3;
  border-color: rgba(204, 208, 216, 0.35);
}
.invite .btn-ghost:hover {
  border-color: #D8DCE3;
  background: rgba(216, 220, 227, 0.07);
}
.invite-note {
  margin-top: 26px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { text-align: left; }
.contact-card .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
}
.contact-card .hint { font-size: 0.85rem; color: var(--steel); }

/* ---------- Footer (bookend navy) ---------- */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--deep);
  color: var(--on-dark-body);
  padding-top: clamp(48px, 6vw, 72px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 56px);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 54px; margin-bottom: 18px; }
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-title);
}
.footer-brand .oab {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--on-dark-body);
}
.footer-brand .desc {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--on-dark-body);
  max-width: 40ch;
}

.footer-title {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 18px;
}
.footer-nav ul, .footer-contact ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.92rem;
  color: #A9B4C6;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li {
  display: flex; gap: 10px;
  font-size: 0.92rem;
  color: #A9B4C6;
}
.footer-contact svg {
  width: 17px; height: 17px;
  color: var(--on-dark-faint);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 26px;
}
.footer-legal p {
  font-size: 0.78rem;
  color: var(--on-dark-faint);
  max-width: 90ch;
  line-height: 1.7;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
