/* =========================================================
   LP Curso Direito Eleitoral — FADISP
   Estilo: editorial sóbrio. Fraunces (display, Google Fonts)
   + Libre Franklin (body, self-hosted).
   Paleta: off-white quente + carvão + FADISP red (#DF2F1A) como ink.
   ========================================================= */

/* ---- Libre Franklin (self-hosted) ---- */
/* Variable font: um único arquivo cobre 100–900 dentro de cada subset. */
@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/libre-franklin-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/libre-franklin-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design tokens ---- */
:root {
  /* Cores */
  --bg: #faf7f2;
  --bg-alt: #f3ede3;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --ink-mute: #6b6b6b;
  --ink-faint: #95918a;
  --rule: #e4e0d8;
  --rule-strong: #c7c0b3;
  --red: #DF2F1A;
  --red-hover: #b8250f;
  --red-soft: #fbe9e6;
  --white: #ffffff;

  /* Fontes */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Escalas */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Ritmos */
  --max-width: 1120px;
  --max-width-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
}

/* ---- Reset minimal ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red-hover); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em; line-height: 1.08; color: var(--ink); font-variation-settings: "opsz" 96; text-wrap: balance; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }

/* ---- Containers ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.container-narrow { max-width: var(--max-width-narrow); }

/* ---- Utility: eyebrow (pequeno rótulo uppercase com ponto vermelho) ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow-light { color: var(--ink-soft); }

/* ---- SKIP-LINK (a11y) ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  color: var(--bg);
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule-strong);
  box-shadow: 0 1px 0 var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand img { height: 44px; width: auto; display: block; object-fit: contain; }
.header-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: background .15s ease, color .15s ease;
}
.header-cta:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 560px) {
  .header-cta { padding: 0.5rem 0.85rem; font-size: 0.8125rem; }
  .brand img { height: 36px; }
  .header-inner { height: 60px; }
}

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-hover); color: var(--white); }
.btn-primary:active { transform: translateY(1px); }
.btn-large { padding: 1.15rem 2rem; font-size: 1.0625rem; }
.btn-huge  { padding: 1.4rem 2.4rem; font-size: 1.125rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem); }
.hero-title {
  font-size: clamp(2.2rem, 6.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 20ch;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 2.25rem;
}
.hero-subhead strong { color: var(--ink); font-weight: 600; }

.hero-meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  align-items: center;
}
.meta-sep { color: var(--rule-strong); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}
.countdown {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.countdown #days-left, .countdown #days-left-footer {
  color: var(--red);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   SECTIONS — padrão
   ========================================================= */
.section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 80px; /* compensa o header sticky de 72px */
}
.section-head { margin-bottom: 3.5rem; max-width: 64ch; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 120;
}
.section-bridge {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}

/* Prose (parágrafos de leitura) */
.prose p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); }
.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--ink); }

/* =========================================================
   SEÇÃO 2 — AUDIENCE
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.6rem 1.85rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 48px;
  background: var(--red);
}
.card-rank {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.card-title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  font-variation-settings: "opsz" 48;
}
.card-body {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.audience-note {
  font-size: 0.875rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rule);
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SEÇÃO 3 — WHY NOW
   ========================================================= */
.section-why .prose p:first-child {
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
}
.section-why .prose p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 0.3rem 0.6rem 0 0;
  color: var(--red);
  font-variation-settings: "opsz" 144;
}

/* =========================================================
   SEÇÃO 4 — FACULTY
   ========================================================= */
.professor {
  padding: 2.5rem 0 2.25rem;
  border-top: 1px solid var(--rule);
}
.professor:first-of-type { border-top: none; padding-top: 0; }

/* Grid portrait-left, content-right (editorial bio layout) */
.professor-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 1rem;
}
.professor-figure {
  margin: 0;
}
.professor-figure picture,
.professor-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--rule);
  filter: grayscale(6%) contrast(1.02); /* sutilíssimo, aproxima editorial */
}
.professor-content { min-width: 0; }
@media (max-width: 820px) {
  .professor-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .professor-figure {
    max-width: 240px;
  }
}

.professor-role {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.role-pill {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
}
.role-pill-primary { background: var(--ink); color: var(--bg); }
.role-pill-inaugural { background: var(--red); color: var(--white); }
.role-meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.professor-name {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 96;
}
.professor-credline {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-mute);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.professor-credhighlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--red);
  margin-bottom: 0.9rem;
  max-width: 40ch;
  line-height: 1.3;
  font-variation-settings: "opsz" 48;
}
.professor-tema {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.professor-tema em { color: var(--ink-mute); font-style: normal; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.3rem; }

.professor-bio { max-width: 68ch; margin-bottom: 1.75rem; }

.professor-pull {
  margin: 2rem 0 0;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  max-width: 50ch;
  line-height: 1.35;
  font-variation-settings: "opsz" 72;
}

.professor-closing {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.55;
  max-width: 64ch;
}
.professor-closing strong { color: var(--red); }

/* =========================================================
   SEÇÃO 5 — EIXOS
   ========================================================= */
.eixos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.eixo {
  background: var(--bg);
  padding: 2rem 1.75rem 2.25rem;
}
.eixo-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.eixo-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72;
}
.eixo-body {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .eixos { grid-template-columns: 1fr; }
}

/* =========================================================
   SEÇÃO 6 — TIMELINE / CRONOGRAMA
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 10px;
  width: 1px;
  background: var(--rule-strong);
}
.timeline-item {
  position: relative;
  padding: 1.25rem 0 1.25rem 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1.35rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.timeline-inaugural .timeline-marker {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.timeline-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.4rem;
}
.timeline-prof {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
  font-variation-settings: "opsz" 36;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
}
.timeline-tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}
.timeline-tema {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 70ch;
}
.timeline-note {
  margin-top: 1.75rem;
  padding-left: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 600px) {
  .timeline-prof { font-size: 1rem; }
}

/* =========================================================
   SEÇÃO 7 — GUEST FACULTY (corpo docente complementar)
   ========================================================= */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.guest-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
}
.guest-topic {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.guest-name {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
}
.guest-bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 900px) { .guest-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SEÇÃO 8 — FORMAT
   ========================================================= */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 0;
}
.format-item {
  background: var(--bg);
  padding: 1.5rem 1.5rem 1.75rem;
}
.format-item dt {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.format-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.format-detail {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: 0;
  text-transform: none;
}
.format-detail.pending {
  color: var(--ink-faint);
  font-style: italic;
}
.format-caption {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--red);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 75ch;
}
.format-caption strong {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-right: 0.6rem;
}
@media (max-width: 720px) {
  .format-grid { grid-template-columns: 1fr; }
}
@media (min-width: 721px) and (max-width: 980px) {
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   SEÇÃO 9 — INVEST
   ========================================================= */
.section-invest .section-head { text-align: center; margin-inline: auto; }
.invest-block {
  text-align: center;
  padding: 2.5rem 2rem 3rem;
  background: var(--white);
  border: 1px solid var(--rule);
}
.invest-context {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
}
.invest-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-variation-settings: "opsz" 144;
}
.invest-support {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 0.9rem;
  line-height: 1.55;
}
.invest-note {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  font-style: italic;
}
.section-invest .btn-primary { margin-top: 0.5rem; }

/* =========================================================
   SEÇÃO 10 — FAQ
   ========================================================= */
.faq-list { border-top: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  transition: transform .2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--red); }
.faq-answer { margin-top: 1rem; color: var(--ink-soft); font-size: 0.9875rem; line-height: 1.65; max-width: 70ch; }
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 0.75rem; }

/* =========================================================
   SEÇÃO 11 — FINAL CTA
   ========================================================= */
.section-final-cta {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  border-top: none;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 7rem);
}
.section-final-cta .eyebrow,
.section-final-cta .eyebrow-light {
  color: var(--bg-alt);
  justify-content: center;
  display: inline-flex;
}
.final-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  color: var(--bg);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 120;
}
.final-body {
  font-size: 1.0625rem;
  color: var(--bg-alt);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}
.final-body strong { color: var(--white); }
.section-final-cta #days-left-footer { color: var(--red); font-weight: 700; font-variant-numeric: tabular-nums; }
.final-support {
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.section-final-cta .btn-huge { box-shadow: 0 0 0 1px rgba(255,255,255,0.02); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-block p, .footer-block address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0.25rem 0;
}
.footer-block a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule-strong); text-underline-offset: 3px; }
.footer-block a:hover { color: var(--red); text-decoration-color: var(--red); }
.footer-block-title {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
  margin-bottom: 0.9rem !important;
}
.footer-block-sub {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink) !important;
  margin-top: -0.3rem !important;
}
.footer-logo {
  margin-bottom: 1.25rem;
}
.footer-logo img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8rem;
  color: var(--ink-mute);
}
.footer-disclaimer {
  padding-top: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  line-height: 1.55;
  color: var(--ink-faint);
}
.footer-disclaimer p { margin: 0; max-width: 85ch; }
.footer-disclaimer strong { color: var(--ink-mute); font-weight: 600; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.75rem 1rem;
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-top: 1px solid var(--rule);
  }
  /* Margem extra no final para o sticky não tapar conteúdo */
  body { padding-bottom: 72px; }
}

/* =========================================================
   ACCESSIBILITY & motion
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   SELECTION
   ========================================================= */
::selection { background: var(--red); color: var(--white); }
