/* =========================================================================
   O Advogado Eleitoral — Prestação de Contas
   Estilo baseado no handoff EDLER Advocacia (Claude Design).
   Organização: Reset · Variáveis · Base · Header · Hero · Seções · Footer ·
                Componentes · Utilitários · Responsivo
   ========================================================================= */

/* ---------- 1. Reset -------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; }

/* ---------- 2. Variáveis ---------------------------------------------- */
:root {
  /* Cores da marca */
  --cor-navy: #0F2742;
  --cor-navy-deep: #0A1B2E;
  --cor-navy-soft: #163152;
  --cor-primaria: #C49A4A;           /* gold */
  --cor-gold-light: #E3CE94;
  --cor-gold-deep: #9A7634;
  --cor-texto: #26303C;              /* ink */
  --cor-texto-suave: #5A6675;        /* muted */
  --cor-fundo: #F7F4ED;              /* sand */
  --cor-fundo-2: #EFEADD;            /* sand-2 */
  --cor-branco: #FFFFFF;
  --cor-linha: rgba(15,39,66,.12);
  --cor-linha-gold: rgba(196,154,74,.45);

  /* Aliases legados que o CSS interno usa */
  --navy: var(--cor-navy);
  --navy-deep: var(--cor-navy-deep);
  --navy-soft: var(--cor-navy-soft);
  --gold: var(--cor-primaria);
  --gold-light: var(--cor-gold-light);
  --gold-deep: var(--cor-gold-deep);
  --ink: var(--cor-texto);
  --muted: var(--cor-texto-suave);
  --sand: var(--cor-fundo);
  --sand-2: var(--cor-fundo-2);
  --paper: var(--cor-branco);
  --line: var(--cor-linha);
  --line-gold: var(--cor-linha-gold);

  /* Tipografia */
  --fonte-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --fonte-corpo: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --fonte-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Layout / raio */
  --container-max: 1280px;
  --espacamento-secao: 80px;
  --border-radius: 4px;
  --radius-btn: 2px;
  --radius-card: 4px;
}

/* ---------- 3. Base --------------------------------------------------- */
body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--fonte-corpo);
  font-size: 16px;              /* nunca abaixo de 16px — evita zoom iOS */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--gold-light); color: var(--navy-deep); }

/* Skip link acessibilidade */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Focus visível */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 4. Header ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: calc(100% - 28px);
  max-width: var(--container-max);
  margin: 14px auto 0;
  border-radius: 12px;
  background: rgba(247,244,237,.9);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -14px rgba(15,39,66,.25);
  overflow: hidden;
}
.site-header__bar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-header__logo img { height: clamp(36px, 5vw, 48px); width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop__link {
  text-decoration: none;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color .25s, color .25s;
}
.nav-desktop__link:hover,
.nav-desktop__link:focus-visible {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--sand);
  padding: 8px clamp(18px, 4vw, 40px) 18px;
  flex-direction: column;
}
.nav-mobile.is-open { display: flex; animation: slideDown .3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav-mobile__link {
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}

/* ---------- 5. Botões / CTAs ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 3px 0 var(--gold-deep);
  font-size: 16px;
  padding: 15px 26px;
  min-height: 52px;
}
.btn--gold:hover,
.btn--gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--gold-deep);
}
.btn--gold-sm {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 2px 0 var(--gold-deep);
  font-size: 14px;
  padding: 13px 20px;
  min-height: 44px;
}
.btn--gold-sm:hover,
.btn--gold-sm:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--gold-deep);
}
.btn--gold-lg {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 0 var(--gold-deep);
  font-size: 17px;
  padding: 16px 30px;
  min-height: 52px;
}
.btn--gold-lg:hover,
.btn--gold-lg:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--gold-deep);
}
.btn--outline-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  padding: 16px 24px;
  min-height: 52px;
  transition: border-color .2s;
}
.btn--outline-light:hover,
.btn--outline-light:focus-visible { border-color: var(--gold); }
.btn__icon { font-size: 17px; }

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.45);
  transition: transform .18s;
  text-decoration: none;
  animation: pulseWhats 2.6s infinite;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible { transform: scale(1.08); animation: none; }
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain; }
@keyframes pulseWhats {
  0%, 100% { box-shadow: 0 10px 26px -8px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 10px 26px -8px rgba(0,0,0,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- 6. Hero --------------------------------------------------- */
.hero {
  position: relative;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: clamp(440px, 80vw, 560px);
}
.hero__container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  min-height: clamp(440px, 80vw, 560px);
}
.hero__panel {
  padding: clamp(28px, 8vw, 96px) clamp(18px, 4vw, 56px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(247,244,237,.93);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 0 0 4px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(196,154,74,.14);
  border: 1px solid var(--line-gold);
  padding: 7px 13px;
  border-radius: 2px;
  width: -moz-fit-content;
  width: fit-content;
}
.eyebrow--plain {
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
}
.eyebrow--light { color: var(--gold-light); }
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2.4s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,154,74,.55); }
  50%      { box-shadow: 0 0 0 7px rgba(196,154,74,0); }
}

.hero__title {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--navy-deep);
  margin: 22px 0 0;
}
.hero__title-alt {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 18.5px);
  line-height: 1.62;
  color: var(--muted);
  max-width: 520px;
  margin: 20px 0 0;
}
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__cta-wrap { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 34px);
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 30px);
  color: var(--navy);
  line-height: 1;
}
.stat__label {
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--muted);
  margin-top: 5px;
  max-width: 150px;
}

/* ---------- 7. Seções genéricas --------------------------------------- */
.section {
  border-bottom: 1px solid var(--line);
}
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--sand-2 { background: var(--sand-2); }
.section--navy { background: var(--navy); border-bottom: 1px solid rgba(196,154,74,.25); color: #fff; }
.section--navy-deep {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--gold {
  background: var(--gold);
  border-bottom: 1px solid var(--line-gold);
}
.section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) clamp(18px, 4vw, 40px);
}
.section__container--narrow { max-width: 1100px; }
.section__container--extra-narrow { max-width: 920px; }
.section__container--faq { max-width: 820px; }
.section__container--callout { max-width: 900px; padding: clamp(28px, 4vw, 40px) clamp(18px, 4vw, 40px); text-align: center; }
.section__head { max-width: 680px; }
.section__head--center { margin: 0 auto; text-align: center; }
.section__title {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.18;
  color: var(--navy-deep);
  margin: 14px 0 0;
}
.section__title--light { color: #fff; }
.section__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 16px 0 0;
}
.section__lead--light { color: rgba(255,255,255,.68); }
.section__lead--small { font-size: 14px; margin-top: 14px; }
.section__lead strong { color: var(--ink); }

/* Callout dourado / navy */
.callout__text {
  font-family: var(--fonte-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(19px, 3vw, 26px);
  line-height: 1.35;
  color: var(--navy-deep);
  margin: 0;
}
.callout__text--light { color: var(--gold-light); font-weight: 500; }

/* ---------- 8. Credenciais / O advogado ------------------------------- */
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}
.credentials__text { order: 2; }
.credentials__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 560px;
}
.credentials__body--sm { font-size: 15px; line-height: 1.6; }
.credentials__body strong { color: var(--ink); font-weight: 600; }
.credentials__body em { font-style: italic; color: var(--navy); }
.credentials__list {
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.credentials__list li { display: flex; gap: 14px; align-items: flex-start; }
.credentials__list-mark {
  flex-shrink: 0;
  margin-top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(196,154,74,.14);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 12px;
}
.credentials__list-item-text { font-size: 15.5px; line-height: 1.5; color: var(--ink); }

.credentials__photo-wrap {
  order: 1;
  position: relative;
  justify-self: center;
  max-width: 400px;
  width: 100%;
}
.credentials__photo-frame {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--line-gold);
  border-radius: 3px;
  pointer-events: none;
}
.credentials__photo {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 18px 44px -22px rgba(15,39,66,.4);
}

/* ---------- 9. Obrigação legal (tabela) ------------------------------- */
.oblig__table {
  margin-top: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 40px -28px rgba(15,39,66,.35);
}
.oblig__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 2fr;
  border-top: 1px solid var(--line);
}
.oblig__row--head {
  background: var(--navy);
  color: #fff;
  border-top: 0;
}
.oblig__head-cell {
  padding: 15px clamp(16px, 3vw, 26px);
  font-family: var(--fonte-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.oblig__head-cell + .oblig__head-cell { border-left: 1px solid rgba(255,255,255,.12); }
.oblig__scope {
  padding: 18px clamp(16px, 3vw, 26px);
  background: var(--sand-2);
  border-left: 4px solid var(--gold);
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--navy);
  display: flex;
  align-items: center;
}
.oblig__cargos { border-left: 1px solid var(--line); }
.oblig__cargo {
  padding: 14px clamp(16px, 3vw, 26px);
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.oblig__cargo:last-child { border-bottom: 0; }

/* ---------- 10. Linha do prazo ---------------------------------------- */
.timeline-strip {
  background: rgba(255,255,255,.5);
  border-bottom: 1px solid var(--line);
}
.timeline-strip__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 40px);
}
.timeline-strip__label {
  font-family: var(--fonte-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.timeline-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}
.timeline-strip__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
}
.timeline-strip__item { position: relative; padding-top: 20px; }
.timeline-strip__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand);
  border: 2.5px solid var(--gold);
}
.timeline-strip__tag {
  font-family: var(--fonte-mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: .05em;
}
.timeline-strip__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2px;
  line-height: 1.3;
}

/* ---------- 11. Como funciona ----------------------------------------- */
.process { margin-top: 46px; display: flex; flex-direction: column; gap: 0; }
.process__step { display: flex; gap: clamp(16px, 3vw, 28px); align-items: stretch; }
.process__rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.process__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--fonte-mono);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}
.process__connector {
  flex: 1;
  width: 2px;
  min-height: 16px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}
.process__card {
  flex: 1;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: border-color .2s, transform .2s;
}
.process__card:hover { border-color: var(--line-gold); transform: translateX(3px); }
.process__phase {
  font-family: var(--fonte-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.process__title {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy-deep);
  margin: 6px 0 0;
}
.process__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 8px 0 0; }

/* ---------- 12. Riscos ------------------------------------------------- */
.risks { position: relative; overflow: hidden; }
.risks__pattern,
.risks__glow {
  position: absolute; inset: 0; pointer-events: none;
}
.risks__pattern {
  background-image: repeating-linear-gradient(135deg,
    rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px,
    transparent 1px, transparent 26px);
}
.risks__glow {
  background: radial-gradient(700px 400px at 85% -10%, rgba(196,154,74,.14), transparent 60%);
}
.risks__container { max-width: 1180px; margin: 0 auto; padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 40px); position: relative; }
.risks__eyebrow-line { width: 22px; height: 1px; background: var(--gold); }
.risks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 44px auto 0;
  max-width: 820px;
}
.risk-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(196,154,74,.22);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  padding: 28px 26px 30px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.risk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.5);
  border-color: rgba(196,154,74,.55);
}
.risk-card__ghost-num {
  position: absolute;
  top: 6px;
  right: 16px;
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 56px;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}
.risk-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,154,74,.16);
  border: 1px solid rgba(196,154,74,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  position: relative;
}
.risk-card__title {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin: 20px 0 0;
  line-height: 1.25;
  position: relative;
}
.risk-card__desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(255,255,255,.68);
  margin: 10px 0 0;
  position: relative;
}
.risks__note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin: 30px 0 0;
  max-width: 760px;
}

/* ---------- 13. Comparativo ------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.compare__card {
  background: var(--sand);
  border: 1px solid var(--line-gold);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 30px clamp(22px, 3vw, 32px);
}
.compare__title {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.3;
}
.compare__list {
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.compare__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.compare__mark { flex-shrink: 0; color: var(--gold-deep); font-weight: 700; }

/* ---------- 14. Mirror questions -------------------------------------- */
.mirror__label {
  font-family: var(--fonte-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.mirror__grid {
  display: grid;
  gap: 18px;
  margin: 26px auto 0;
  max-width: 680px;
}
.mirror__q {
  font-family: var(--fonte-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 2.6vw, 22px);
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
.mirror__close {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
  margin: 30px 0 0;
}

/* ---------- 15. Calendário -------------------------------------------- */
.calendar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 40px -28px rgba(15,39,66,.35);
}
.calendar__row {
  display: grid;
  grid-template-columns: minmax(150px, 200px) 1fr;
  gap: clamp(14px, 3vw, 26px);
  padding: 16px clamp(16px, 3vw, 26px);
  border-bottom: 1px solid var(--line);
}
.calendar__row:last-child { border-bottom: 0; }
.calendar__date {
  font-family: var(--fonte-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: .01em;
  line-height: 1.4;
}
.calendar__event { font-size: 15.5px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.calendar__base { font-family: var(--fonte-mono); font-size: 11.5px; color: var(--muted); margin-top: 4px; }

/* ---------- 16. Depoimentos (carrossel) ------------------------------- */
.testim { position: relative; margin-top: 40px; }
.testim__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testim__track::-webkit-scrollbar { display: none; }
.testim__page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 2px;
}
.testim__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 26px 24px;
}
.testim__quote-mark {
  color: var(--gold);
  font-size: 22px;
  font-family: var(--fonte-display);
  line-height: 1;
}
.testim__quote { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 8px 0 0; min-height: 96px; }
.testim__meta { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.testim__name { font-family: var(--fonte-display); font-weight: 600; font-size: 15px; color: var(--navy-deep); }
.testim__role { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.testim__controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.testim__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--paper);
  color: var(--navy);
  font-size: 16px;
  transition: background .2s;
}
.testim__btn:hover,
.testim__btn:focus-visible { background: var(--sand); }
.testim__note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 22px 0 0;
  font-style: italic;
}

/* ---------- 17. FAQ ---------------------------------------------------- */
.faq { margin-top: 34px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 20px 2px;
}
.faq__q-text {
  font-family: var(--fonte-display);
  font-weight: 500;
  font-size: clamp(16px, 2.2vw, 18.5px);
  color: var(--navy-deep);
  line-height: 1.4;
}
.faq__icon {
  flex-shrink: 0;
  color: var(--gold-deep);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
}
.faq__item[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
  padding-right: 36px;
  display: none;
}
.faq__item[aria-expanded="true"] .faq__a { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- 18. CTA Final --------------------------------------------- */
.cta-final {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, var(--navy-soft));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final__ring {
  position: absolute;
  top: -90px;
  left: -70px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(196,154,74,.3);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final__container {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 40px);
  text-align: center;
  position: relative;
}
.cta-final__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196,154,74,.4);
  padding: 7px 14px;
  border-radius: 2px;
}
.cta-final__title {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: clamp(26px, 4.6vw, 38px);
  line-height: 1.16;
  color: #fff;
  margin: 22px auto 0;
  max-width: 680px;
}
.cta-final__lead {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.62;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin: 18px auto 0;
}
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.cta-final__note {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  margin-top: 22px;
  font-style: italic;
  font-family: var(--fonte-display);
}
.cta-final__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.cta-final__contact-label {
  color: var(--gold-light);
  font-family: var(--fonte-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

/* ---------- 19. Footer ------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
}
.site-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 60px) clamp(18px, 4vw, 40px) 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.site-footer__brand-logo { height: 72px; width: auto; margin-bottom: 16px; }
.site-footer__about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}
.site-footer__col-title {
  font-family: var(--fonte-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.site-footer__nav { display: grid; gap: 10px; }
.site-footer__nav a,
.site-footer__contact a {
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  transition: color .2s;
}
.site-footer__nav a:hover,
.site-footer__contact a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:focus-visible { color: var(--gold-light); }
.site-footer__contact { display: grid; gap: 10px; font-size: 14.5px; }
.site-footer__oab { font-family: var(--fonte-mono); font-size: 12.5px; color: rgba(255,255,255,.55); }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}

/* ---------- 20. Utilitários ------------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.wrap-main { width: 100%; }

/* Scroll-driven reveal com fallback --------------------------------- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
[data-reveal] {
  animation: revealUp .8s cubic-bezier(.2,.7,.2,1) both;
  animation-timeline: view();
  animation-range: entry 0% cover 32%;
}
@supports not (animation-timeline: view()) {
  [data-reveal] { animation: revealUp .7s cubic-bezier(.2,.7,.2,1) both; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 21. Responsivo -------------------------------------------- */

/* Tablet (≤ 1100px): menu hambúrguer */
@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* Tablet ≤ 900px: credenciais empilhadas */
@media (max-width: 900px) {
  .credentials__grid { grid-template-columns: 1fr; }
  .credentials__text { order: 2; }
  .credentials__photo-wrap { order: 1; max-width: 480px; }
}

/* Mobile ≤ 720px */
@media (max-width: 720px) {
  .site-header { top: 8px; margin-top: 8px; width: calc(100% - 16px); }
  .site-header__bar { padding: 12px 18px; }
  .hero__panel { max-width: 100%; }
  .btn--gold,
  .btn--gold-lg,
  .btn--outline-light { width: 100%; }
  .cta-final__actions .btn { width: 100%; max-width: 100%; }
  .hero__cta-wrap .btn { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 58px; height: 58px; }
  .risks__grid { grid-template-columns: 1fr; }
}

/* Mobile ≤ 600px: calendário colapsa */
@media (max-width: 600px) {
  .calendar__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .oblig__row { grid-template-columns: 1fr; }
  .oblig__row--head { display: none; }
  .oblig__scope { border-left: 4px solid var(--gold); border-bottom: 1px solid var(--line); }
  .oblig__cargos { border-left: 0; }
  .process__step { align-items: flex-start; }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .site-header__logo img { height: 34px; }
  .hero__panel { padding: 32px 18px; }
  .section__container,
  .section__container--narrow,
  .section__container--faq { padding: 48px 18px; }
}
