/* ═══════════════════════════════════════════════
   REDES SUBTERRÂNEAS 2026 — CSS GLOBAL
   Tokens, Reset, Navbar, Footer, Botões, Eyebrow,
   WhatsApp Float, Componentes Compartilhados.

   Identidade: laranja monolítico #FE8200 + ink carbono + paper quente.
   Tipografia: Space Grotesk (display) + Inter (body) + JetBrains Mono (labels).

   Espelha a arquitetura do expo-eletrica-site/assets/css/global.css
   — mesma estrutura de tokens, classes e componentes — com identidade
   visual exclusiva do Redes Subterrâneas (laranja monolítico, sem navy).
═══════════════════════════════════════════════ */

/* Font Awesome font-display override */
@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; }

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─────────────────────────────────────────
   TOKENS — Redes Subterrâneas
───────────────────────────────────────── */
:root {
  /* Brand institucional — laranja monolítico */
  --brand:        #FE8200;
  --brand-bright: #FF9F33;
  /* laranja p/ TEXTO sobre fundo claro — o --brand puro não passa no contraste AA */
  --brand-on-light: #D96F00;
  --brand-deep:   #8A3D00;
  --brand-light:  #FFE7D1;
  --brand-soft:   rgba(254,130,0,0.14);
  --brand-glow:   rgba(254,130,0,0.28);

  /* Surfaces */
  --paper:        #FAF6F1;   /* off-white quente, herda do peach #FBD5C1 do site atual */
  --canvas:       #FFFFFF;
  --ink:          #0B0B0F;   /* preto carbono (não puro) */
  --ink-mid:      #1A1A1F;
  --ink-soft:     #2A2A30;

  /* Texto */
  --text-dark:    #0B0B0F;
  --text-mid:     #3A3A3A;
  --text-muted:   #69727D;
  --text-faint:   #9CA3AF;
  --text-dim:     rgba(255,255,255,0.80);
  --text-on-dark: rgba(255,255,255,0.92);
  --text-on-dark-soft: rgba(255,255,255,0.66);

  /* Borders */
  --border-dark:  rgba(255,255,255,0.10);
  --border-light: rgba(11,11,15,0.08);
  --whatsapp:     #25D366;

  /* Fontes */
  --f-display:    'Space Grotesk', system-ui, -apple-system, sans-serif;
  --f-body:       'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:       'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Espaçamento 8px scale */
  --s1:   8px;  --s2:  16px;  --s3:  24px;
  --s4:  32px;  --s5:  48px;  --s6:  64px;
  --s7:  80px;  --s8: 104px;  --s9: 128px;

  /* Raio */
  --r1: 4px;  --r2: 8px;  --r3: 14px;
  --r4: 20px; --r5: 28px;
  --pill: 999px; --circle: 50%;

  /* Sombras */
  --sh-card:        0 2px 14px rgba(11,11,15,0.07);
  --sh-card-hover:  0 10px 32px rgba(11,11,15,0.12);
  --sh-soft:        0 4px 24px rgba(11,11,15,0.06);
  --sh-float:       0 12px 40px rgba(11,11,15,0.15);
  --sh-geo:         6px 6px 0 rgba(11,11,15,0.10);
  --sh-brand:       0 8px 24px rgba(254,130,0,0.32);
  --sh-brand-soft:  0 4px 16px rgba(254,130,0,0.22);
  --sh-photo:       0 24px 80px rgba(11,11,15,0.25);

  /* Gradientes brand */
  --gr-brand-depth: linear-gradient(180deg, #0B0B0F 0%, #1A0F05 70%, #FE8200 100%);
  --gr-action:      linear-gradient(135deg, #FE8200 0%, #FF9F33 100%);
  --gr-soft:        linear-gradient(135deg, #FAF6F1 0%, #FFE7D1 100%);
  --gr-paper:       radial-gradient(circle at 85% 15%, rgba(254,130,0,0.07) 0%, transparent 55%), #FAF6F1;

  /* ─────────────────────────────────────────
     BUTTON TOKENS — duas variantes principais
     ───────────────────────────────────────── */

  /* PRIMARY · fundo claro (paper / canvas)
     Gradient sutil top-down + borda 1px brand-deep + dupla sombra (contato
     curta + ambient warm) + inset highlight + inset shadow. Mesma
     qualidade premium do botão dark, adaptado pro contexto claro.
     Usado em hero (paper), seção sobre, modalidades, patrocinadores. */
  --btn-light-bg:           linear-gradient(180deg, #FF9F33 0%, #F58E1A 100%);
  --btn-light-bg-hover:     linear-gradient(180deg, #FFAE52 0%, #FF9F33 100%);
  --btn-light-fg:           var(--ink);
  --btn-light-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(138,61,0,0.18),
    0 0 0 1px rgba(138,61,0,0.12),
    0 1px 2px rgba(11,11,15,0.08),
    0 14px 28px -8px rgba(245,142,26,0.50);
  --btn-light-shadow-hover:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(138,61,0,0.14),
    0 0 0 1px rgba(138,61,0,0.18),
    0 2px 4px rgba(11,11,15,0.10),
    0 22px 40px -10px rgba(255,159,51,0.58);

  /* PRIMARY · fundo escuro (ink / dark sections)
     Gradient sutil pra dar profundidade 3D + glow ambiente que SÓ funciona
     em dark. Esse é o botão "fantástico" — usado em CTA banner, navbar,
     seção dark por que participar, footer. */
  --btn-dark-bg:            linear-gradient(180deg, #FFA340 0%, #F58E1A 100%);
  --btn-dark-bg-hover:      linear-gradient(180deg, #FFB360 0%, #FE9F33 100%);
  --btn-dark-fg:            var(--ink);
  --btn-dark-shadow:
    0 0 0 1px rgba(254,130,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(138,61,0,0.30),
    0 12px 30px rgba(254,130,0,0.38),
    0 0 60px -8px rgba(254,130,0,0.35);
  --btn-dark-shadow-hover:
    0 0 0 1px rgba(255,159,51,0.75),
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 -1px 0 rgba(138,61,0,0.25),
    0 18px 40px rgba(254,130,0,0.55),
    0 0 80px -8px rgba(254,130,0,0.50);

  /* Layout */
  --wrap:    1200px;
  --gutter:  24px;

  /* ─────────────────────────────────────────
     SPACING RESPONSIVO — diretrizes lp-builder
     Section padding:  56px mobile → 80 → 112 → 120px desktop
     Eyebrow → título: 12px mobile → 16px desktop
     Título → lede:    16px mobile → 20px desktop
     Header → conteúdo: 32px mobile → 48px desktop MAX (64px é exagerado)
     Princípio: gap mobile ≤ 60-70% do desktop
     ───────────────────────────────────────── */
  --sec-py:      clamp(44px, 5.2vw, 80px);
  --gap-eyebrow: clamp(12px, 1.1vw, 16px);
  --gap-title:   clamp(16px, 1.4vw, 20px);
  /* espaço entre o cabeçalho da seção (eyebrow + título + subtítulo) e o conteúdo.
     Desktop 40px · notebook/tablet 32px · mobile 24px (ver media queries no fim) */
  --gap-header:  40px;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dark);
  background: var(--paper);
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────
   EYEBROW
───────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--gap-eyebrow);
  color: var(--brand-deep);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow--brand  { color: var(--brand-deep); }
.eyebrow--muted  { color: var(--text-muted); }
.eyebrow--white  { color: rgba(255,255,255,0.66); }
.eyebrow--on-dark { color: var(--brand-bright); }

/* ─────────────────────────────────────────
   BOTÕES
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: var(--pill);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, filter 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--lg   { font-size: 16px; padding: 18px 32px; }
.btn--md   { font-size: 14px; padding: 14px 24px; }
.btn--sm   { font-size: 13px; padding: 11px 18px; }
.btn--full { width: 100%; }

/* PRIMARY · fundo claro */
.btn--brand {
  background: var(--btn-light-bg);
  color: var(--btn-light-fg);
  box-shadow: var(--btn-light-shadow);
}
.btn--brand:hover {
  background: var(--btn-light-bg-hover);
  box-shadow: var(--btn-light-shadow-hover);
  transform: translateY(-2px);
}
.btn--brand:active {
  transform: translateY(0);
  box-shadow: var(--btn-light-shadow);
}

/* PRIMARY · fundo escuro (com glow ambiente premium) */
.btn--brand-on-dark {
  background: var(--btn-dark-bg);
  color: var(--btn-dark-fg);
  box-shadow: var(--btn-dark-shadow);
  border: none;
}
.btn--brand-on-dark:hover {
  background: var(--btn-dark-bg-hover);
  box-shadow: var(--btn-dark-shadow-hover);
  transform: translateY(-2px);
}
.btn--brand-on-dark:active {
  transform: translateY(0);
  box-shadow: var(--btn-dark-shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--white, #fff);
  border: 1.5px solid rgba(255,255,255,0.30);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(11,11,15,0.20);
}
.btn--ghost-dark:hover {
  border-color: var(--ink);
  background: rgba(11,11,15,0.04);
}

/* ─────────────────────────────────────────
   NAVBAR — dark com logo branco oficial
───────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.navbar__logo {
  height: 56px;
  width: auto;
  display: block;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.navbar__nav a {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: #fff;
  border-bottom-color: var(--brand);
}

/* Dropdown (Etapas Anteriores) */
.navbar__dropdown { position: relative; }
.navbar__dropdown-toggle {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.18s, border-color 0.18s;
}
.navbar__dropdown-toggle:hover,
.navbar__dropdown.open .navbar__dropdown-toggle {
  color: #fff;
  border-bottom-color: var(--brand);
}
.navbar__dropdown-toggle i.fa-chevron-down {
  font-size: 11px;
  transition: transform 0.2s;
}
.navbar__dropdown.open .navbar__dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}
.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-mid);
  border-radius: var(--r2);
  padding: 8px 0;
  min-width: 140px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  z-index: 110;
  border: 1px solid rgba(255,255,255,0.10);
}
.navbar__dropdown.open .navbar__dropdown-menu { display: block; }
.navbar__dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  border-bottom: none !important;
  transition: color 0.18s, background 0.18s;
}
.navbar__dropdown-menu a:hover {
  color: var(--brand);
  background: rgba(255,255,255,0.06);
}

/* Hamburger (mobile) */
.navbar__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

/* Mobile menu overlay */
.navbar__mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(11,11,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.navbar__mobile-menu.open { opacity: 1; visibility: visible; }
.navbar__mobile-menu a,
.navbar__mobile-menu button {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s;
}
.navbar__mobile-menu.open a,
.navbar__mobile-menu.open button {
  transform: translateY(0);
  opacity: 1;
}
.navbar__mobile-menu.open > :nth-child(1) { transition-delay: 0.05s; }
.navbar__mobile-menu.open > :nth-child(2) { transition-delay: 0.10s; }
.navbar__mobile-menu.open > :nth-child(3) { transition-delay: 0.15s; }
.navbar__mobile-menu.open > :nth-child(4) { transition-delay: 0.20s; }
.navbar__mobile-menu.open > :nth-child(5) { transition-delay: 0.25s; }
.navbar__mobile-menu.open > :nth-child(6) { transition-delay: 0.30s; }
.navbar__mobile-menu.open > :nth-child(7) { transition-delay: 0.35s; }
.navbar__mobile-menu a {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.navbar__mobile-menu a:hover { color: var(--brand); }
.navbar__mobile-dropdown-toggle {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__mobile-dropdown-toggle:hover { color: var(--brand); }
.navbar__mobile-dropdown-toggle.open i.fa-chevron-down { transform: rotate(180deg); }
.navbar__mobile-sub {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.navbar__mobile-sub.open { display: flex; }
.navbar__mobile-sub a {
  font-size: 17px !important;
  color: rgba(255,255,255,0.60) !important;
  padding-left: 16px;
  border-left: 2px solid var(--brand);
}
.navbar__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

@media (max-width: 900px) {
  .navbar__nav, .navbar__cta-desktop { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-header {
  max-width: 680px;
  margin-bottom: var(--gap-header);
}
.section-header > *:last-child { margin-bottom: 0; }
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center .eyebrow { justify-content: center; }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: var(--gap-title);
  text-wrap: balance;   /* sem viúvas — linhas balanceadas */
}
.section-title--light { color: #fff; }
.section-title--dark  { color: var(--ink); }
.section-desc {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  /* evita palavra órfã sozinha na última linha */
  text-wrap: pretty;
}
.section-desc--light { color: rgba(255,255,255,0.78); }

/* ─────────────────────────────────────────
   HERO — editorial split, sem gradients esquisitos
───────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--paper);
  padding: var(--s7) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: var(--s7);
  align-items: center;
}
.hero__col-text {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.hero__col-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r4);
  overflow: hidden;
  background: var(--ink);
}
.hero__col-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* imagem 4:5 nativa — preserva banner do evento no topo */
  display: block;
}
.hero__col-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  /* véu mínimo só na base, pra tag ficar legível — imagem permanece clara */
  background: linear-gradient(180deg, rgba(11,11,15,0) 70%, rgba(11,11,15,0.38) 100%);
  pointer-events: none;
}
.hero__visual-tag {
  position: absolute;
  left: var(--s3);
  bottom: var(--s3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11,11,15,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--pill);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}
.hero__visual-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -1.1px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--brand-on-light);
  font-weight: 700;
}
.hero__sub {
  font-family: var(--f-body);
  text-wrap: pretty;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 560px;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: 4px;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-mid);
}
.hero__meta-item i {
  color: var(--brand-deep);
  font-size: 15px;
}
.hero__meta-item strong { color: var(--ink); font-weight: 600; }
/* Cidade na mesma linha no desktop ("· São Paulo - SP"); linha própria no mobile */
.hero__meta-sub::before { content: '· '; }
@media (max-width: 720px) {
  .hero__meta-sub { display: block; }
  .hero__meta-sub::before { content: none; }
  .hero__meta { flex-direction: column; gap: var(--s2); align-items: flex-start; }
  .hero__meta-item { align-items: flex-start; }
  .hero__meta-item i { margin-top: 3px; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s3);
}

/* Metrics strip — editorial, traço brand sobre cada stat (amarra com eyebrow) */
.hero-metrics {
  background: var(--paper);
  padding: 0 0 clamp(48px, 5.6vw, 80px);
  border-bottom: 1px solid var(--border-light);
}
.hero-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-default);
}
.hero-metric {
  position: relative;
  text-align: left;
  padding: var(--s4) var(--s3) 0 0;
}
.hero-metric::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--brand);
  border-radius: 0 0 2px 2px;
}
.hero-metric + .hero-metric {
  padding-left: var(--s4);
}
.hero-metric + .hero-metric::before {
  left: var(--s4);
}
.hero-metric strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1.2px;
}
.hero-metric span {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s5); }
  .hero__col-visual { aspect-ratio: 16/10; }
}
@media (max-width: 720px) {
  .hero { padding: var(--s6) 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero-metrics__grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--s4); }
  .hero-metric { padding: var(--s3) var(--s2) 0 0; }
  .hero-metric + .hero-metric { padding-left: 0; }
  .hero-metric + .hero-metric::before { left: 0; }
  .hero-metric:nth-child(even) { padding-left: var(--s3); }
  .hero-metric:nth-child(even)::before { left: var(--s3); }
}

/* ─────────────────────────────────────────
   FEATURE CARDS (Sobre / 3 colunas)
───────────────────────────────────────── */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
/* Variante 4 cards (ex: o-evento) — 2x2 no desktop, evita órfão */
.feature-cards--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1100px) { .feature-cards--4 { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  padding: var(--s4) var(--s3);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  /* coluna: mantém os CTAs alinhados na base mesmo com textos de tamanhos diferentes */
  display: flex;
  flex-direction: column;
}
.feature-card__link { margin-top: auto; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -20px rgba(11,11,15,0.18);
  border-color: var(--brand-glow);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r2);
  background: linear-gradient(135deg, #FFE7D1 0%, #FFD4A8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-size: 22px;
  margin-bottom: var(--s2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 2px 8px rgba(254,130,0,0.18);
}
.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, #FFD4A8 0%, #FF9F33 100%);
  color: var(--ink);
}
.feature-card__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-card__text {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--brand-deep);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.feature-card__link:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
  gap: 12px;
}
.feature-card__link i { font-size: 11px; }

@media (max-width: 880px) {
  .feature-cards { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   WHY CARDS (grid 2x2 — Por Que Participar)
───────────────────────────────────────── */
.why { background: var(--ink); padding: var(--sec-py) 0; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r3);
  padding: var(--s5);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-color: var(--brand-glow);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r2);
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
  margin-bottom: var(--s3);
}
.why-card__title {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.why-card__text {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 720px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   PÚBLICO (chips/badges)
───────────────────────────────────────── */
.audience { background: var(--paper); padding: var(--sec-py) 0; }

/* Split editorial: intro à esquerda + grid de segmentos à direita */
.audience__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--s6);
  align-items: center;
}
.audience__intro .section-desc { margin-bottom: 0; }
.audience__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.audience-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--sh-brand-soft);
}
.audience-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r2);
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.audience-item__label {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.1px;
}

@media (max-width: 980px) {
  .audience__grid { grid-template-columns: 1fr; gap: var(--s5); }
}
@media (max-width: 560px) {
  .audience__items { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   MODALIDADES (Feira vs Fórum — 2 cards lado a lado)
───────────────────────────────────────── */
.modalities { background: var(--canvas); padding: var(--sec-py) 0; }
.modalities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 32px);
  /* header já entrega o --gap-header; sem margin-top duplicado */
  /* cards com altura natural — sem esticar conteúdo pra igualar */
  align-items: start;
}
.modality-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--r4);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.modality-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
}
.modality-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-hover);
  border-color: var(--brand-glow);
}
.modality-card--featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.modality-card--featured .modality-card__title,
.modality-card--featured .modality-card__dates strong,
.modality-card--featured .modality-card__price-value {
  color: #fff;
}
.modality-card--featured .modality-card__body,
.modality-card--featured .modality-card__dates {
  color: rgba(255,255,255,0.78);
}
.modality-card--featured .modality-card__list li {
  color: rgba(255,255,255,0.85);
}
.modality-card--featured .modality-card__list li::before {
  background: var(--brand);
}
.modality-card--featured .modality-card__obs {
  color: rgba(255,255,255,0.55);
}

/* Flag de destaque — só no card featured (Feira gratuita) */
.modality-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 16px;
  background: var(--brand);
  color: var(--ink);
  border-radius: var(--pill);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: var(--s3);
  box-shadow: 0 6px 18px rgba(254,130,0,0.35);
}
.modality-card__flag i { font-size: 12px; }
.modality-card__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 10px;
}
.modality-card--featured .modality-card__eyebrow { color: var(--brand-bright); }
.modality-card__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: var(--s2);
  line-height: 1.1;
}
/* Espaçamento interno do card — sistema único:
   16px entre blocos de texto · 24px antes do CTA · 12px pra obs */
.modality-card__dates {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--s2);
  line-height: 1.5;
}
.modality-card__dates strong { color: var(--ink); font-weight: 600; }
.modality-card__body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: var(--s2);
}
.modality-card > .btn { margin-top: var(--s3); }
.modality-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.modality-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mid);
}
.modality-card__list li:last-child { margin-bottom: 0; }
.modality-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.modality-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: var(--s2) 0 0;
}
.modality-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.modality-card__price-old {
  text-decoration: line-through;
  color: var(--text-faint);
  font-family: var(--f-mono);
  font-size: 14px;
}
.modality-card__price-value {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -0.5px;
}
.modality-card--featured .modality-card__price-value { color: var(--brand); }
.modality-card__price-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Observações — nota de rodapé abaixo do CTA (mesmo respiro do topo do botão) */
.modality-card__obs {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-faint);
  margin-top: var(--s3);
}

@media (max-width: 880px) {
  .modalities__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   CONSELHO CONSULTIVO (people grid)
───────────────────────────────────────── */
.council { background: var(--paper); padding: var(--sec-py) 0; }
/* Flex centrado: última linha incompleta centraliza (sem órfãos à esquerda) */
.council__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s3);
  margin-top: var(--gap-header);
}
/* 5 colunas (14 = 5+5+4, última linha centra) — cards generosos */
.person-card {
  flex: 0 0 calc((100% - 4 * var(--s3)) / 5);
  min-width: 180px;
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  padding: var(--s4) var(--s3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
@media (max-width: 1000px) { .person-card { flex-basis: calc((100% - 3 * var(--s3)) / 4); } }
@media (max-width: 760px)  { .person-card { flex-basis: calc((100% - 2 * var(--s3)) / 3); } }
/* mobile: 2 por linha — zera o min-width pra caber em telas estreitas (~375px) */
@media (max-width: 560px)  { .person-card { flex-basis: calc((100% - var(--s3)) / 2); min-width: 0; padding: var(--s3) var(--s2); } }
.person-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--sh-brand-soft);
}
.person-card__photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--brand-soft);
  overflow: hidden;
  margin: 0 auto var(--s3);
}
.person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.person-card__name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  min-height: 2.4em;            /* nomes de 1-2 linhas alinham o cargo */
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-card__role {
  font-family: var(--f-body);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   SPONSORS / LOGO TILES
───────────────────────────────────────── */
.sponsors { background: var(--canvas); padding: var(--sec-py) 0; border-top: 1px solid var(--border-light); }
.tier-block {
  padding-bottom: clamp(32px, 3.4vw, 48px);
  margin-bottom: clamp(32px, 3.4vw, 48px);
  border-bottom: 1px solid var(--border-light);
}
.tier-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.tier-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s3);
}
.tier-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 0 0 4px rgba(11,11,15,0.05);
}

/* Estado "cota disponível" — card de convite a patrocinar */
.logos-row[data-empty="true"] {
  background: linear-gradient(135deg, var(--brand-soft) 0%, transparent 100%);
  border: 1px dashed var(--brand-glow);
  border-radius: var(--r3);
  padding: 20px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  flex-wrap: wrap;
}
.logos-row[data-empty="true"] p {
  margin: 0;
}
.logos-row[data-empty="true"] a {
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.logos-row[data-empty="true"] a:hover {
  color: var(--brand) !important;
}
.tier-dot--master    { background: var(--brand); }
.tier-dot--diamante  { background: #9BB8D0; }
.tier-dot--platina   { background: #ABABAB; }
.tier-dot--safira    { background: #4A8FCA; }
.tier-dot--ouro      { background: #DE9E2B; }
.tier-dot--prata     { background: #999; }
.tier-dot--bronze    { background: #B08D57; }
.tier-dot--especial  { background: var(--ink); }
.tier-dot--coffee    { background: #6F4E37; }
.tier-dot--apoio     { background: #5A9E7A; }
.tier-dot--apoiadores { background: var(--text-muted); }

/* Trio compacto — Bronze · Especial · Coffee lado a lado */
.tier-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  padding-bottom: var(--s6);
  margin-bottom: var(--s6);
  border-bottom: 1px solid var(--border-light);
}
.tier-trio .tier-block--compact {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media (max-width: 880px) {
  .tier-trio { grid-template-columns: 1fr; gap: var(--s5); }
}
.tier-name {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Logos aplicados DIRETO no fundo branco — sem cards.
   GRID com células uniformes: colunas e linhas alinhadas, cada logo
   centralizado na sua célula, tamanho normalizado por tier. */
.logos-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s3) var(--s3);
  align-items: center;
  justify-items: center;
}
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84px;
  background: none;
  border: none;
  padding: 0 var(--s2);
  transition: transform 0.2s ease;
}
.logo-tile:hover { transform: scale(1.05); }
.logo-tile img {
  /* height vem de style inline — calculado por proporção do arquivo
     (normalização óptica: área visual ~igual entre logos) */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* MASTER — células maiores */
.logos-row:has(.logo-tile--master) {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.logo-tile--master { height: 116px; }

/* DIAMANTE — segundo nível */
.logos-row:has(.logo-tile--diamante) {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.logo-tile--diamante { height: 100px; }

/* APOIADORES — células compactas, mais colunas */
.logos-row:has(.logo-tile--apoio) {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--s3) var(--s2);
}
.logo-tile--apoio { height: 72px; }

@media (max-width: 640px) {
  .logos-row { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ─────────────────────────────────────────
   GALERIA EDIÇÃO 2025
───────────────────────────────────────── */
.gallery2025 {
  background: var(--paper);
  padding: var(--sec-py) 0;
}
/* Bento grid de fotos (páginas internas) — 1 grande + 4 */
.gallery2025__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--s2);
  margin-top: var(--gap-header);
}
.gallery2025__item {
  margin: 0;
  border-radius: var(--r3);
  overflow: hidden;
  background: var(--ink);
}
.gallery2025__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery2025__item:hover img { transform: scale(1.05); }
.gallery2025__item--tall { grid-column: span 2; grid-row: span 2; }
@media (max-width: 880px) {
  .gallery2025__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery2025__item--tall { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 520px) {
  /* 2 por linha no celular: com 8 fotos, 1 coluna deixaria a seção longa demais */
  .gallery2025__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 10px; }
  .gallery2025__item--tall { grid-column: span 2; grid-row: span 1; }
}
/* Marquee infinito full-bleed — fotos rolando continuamente, beirada a beirada */
.marquee2025 {
  width: 100%;
  overflow: hidden;
}
.marquee2025__track {
  display: flex;
  gap: var(--s2);
  width: max-content;
  animation: marquee2025-scroll 70s linear infinite;
  will-change: transform;
}
.marquee2025:hover .marquee2025__track {
  animation-play-state: paused;
}
.marquee2025__slide {
  margin: 0;
  flex: 0 0 auto;
  width: min(460px, 70vw);
  aspect-ratio: 3 / 2;
  border-radius: var(--r3);
  overflow: hidden;
  background: var(--ink);
}
.marquee2025__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* loop seamless: track contém 2 cópias do set — anda exatamente metade */
@keyframes marquee2025-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee2025__track { animation: none; }
  .marquee2025 { overflow-x: auto; }
}

/* ─────────────────────────────────────────
   VENUE
───────────────────────────────────────── */
.venue { background: var(--ink); color: #fff; padding: var(--sec-py) 0; }
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
  /* header já entrega o --gap-header */
}
.venue__info { display: flex; flex-direction: column; gap: var(--s3); }
.venue__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.80);
}
.venue__item i {
  color: var(--brand);
  font-size: 18px;
  margin-top: 2px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.venue__item strong { color: #fff; font-weight: 600; }
.venue__map {
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1px solid var(--border-dark);
}
.venue__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 880px) {
  .venue__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   CTA BANNER (final) — brand laranja sólido
   Quebra o bloco dark venue→footer (sem 3 seções pretas seguidas)
───────────────────────────────────────── */
.cta-banner {
  background: var(--brand);
  padding: var(--sec-py) 0;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.10;
  letter-spacing: -0.6px;
  margin-bottom: var(--s2);
  text-wrap: balance;
}
.cta-banner__sub {
  font-family: var(--f-body);
  font-size: 17px;
  color: rgba(11,11,15,0.78);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto var(--gap-header);
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
/* Botões sobre fundo brand: primário ink sólido + secundário outline ink */
.cta-banner .btn--on-brand {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11,11,15,0.30);
}
.cta-banner .btn--on-brand:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11,11,15,0.38);
}
.cta-banner .btn--ghost-on-brand {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(11,11,15,0.38);
}
.cta-banner .btn--ghost-on-brand:hover {
  border-color: var(--ink);
  background: rgba(11,11,15,0.06);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.66);
  padding: var(--s7) 0 var(--s4);
  border-top: 1px solid var(--brand-glow);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s5);
  margin-bottom: var(--s5);
}
.footer__col-title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s3);
}
.footer__brand-logo {
  height: 64px;
  width: auto;
  margin-bottom: var(--s3);
}
.footer__brand-text {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.66);
  margin-bottom: var(--s3);
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255,255,255,0.66);
  transition: color 0.18s;
}
.footer__list a:hover { color: var(--brand); }
.footer__social { display: flex; gap: 12px; margin-top: var(--s2); }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: background 0.18s, color 0.18s;
}
.footer__social a:hover {
  background: var(--brand);
  color: var(--ink);
}
/* Realização / Apoio de Mídia / Apoio de Conteúdo */
.footer__credits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
  align-items: flex-end;
  padding: var(--s4) 0;
  border-top: 1px solid var(--border-dark);
  margin-bottom: var(--s3);
}
.footer__credit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__credit-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.footer__credit img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__bottom {
  padding-top: var(--s3);
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer__bottom-text,
.footer__bottom-links a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.62);
}
.footer__bottom-links { display: flex; gap: var(--s3); }
.footer__bottom-links a:hover { color: var(--brand); }

/* Mobile: brand em cima full-width; Evento + Patrocínio lado a lado (2/2);
   Edições vira linha horizontal embaixo */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s5) var(--s4);
  }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__grid { gap: var(--s4); }
  .footer__col--edicoes { grid-column: 1 / -1; }
  .footer__col--edicoes .footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--s3);
  }
  .footer__credits { gap: var(--s4); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS — safe-by-default
   Conteúdo SEMPRE visível por padrão; reveal só anima fade-in
   se a classe `.js-reveal` for adicionada pelo script (depois do load).
   Garante que sem JS ou se observer falhar, conteúdo aparece.
───────────────────────────────────────── */
.reveal { transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
}
html.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger — filhos entram em sequência */
html.js-reveal .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js-reveal .reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
html.js-reveal .reveal-stagger.visible > :nth-child(1) { transition-delay: 0.06s; }
html.js-reveal .reveal-stagger.visible > :nth-child(2) { transition-delay: 0.14s; }
html.js-reveal .reveal-stagger.visible > :nth-child(3) { transition-delay: 0.22s; }
html.js-reveal .reveal-stagger.visible > :nth-child(4) { transition-delay: 0.30s; }
html.js-reveal .reveal-stagger.visible > :nth-child(5) { transition-delay: 0.38s; }
html.js-reveal .reveal-stagger.visible > :nth-child(6) { transition-delay: 0.46s; }
html.js-reveal .reveal-stagger.visible > :nth-child(7) { transition-delay: 0.54s; }
html.js-reveal .reveal-stagger.visible > :nth-child(8) { transition-delay: 0.62s; }

/* ─────────────────────────────────────────
   HERO ENTRANCE — anima no load (sem esperar scroll)
───────────────────────────────────────── */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-visual {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
.hero__col-text > * { animation: hero-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.hero__col-text > :nth-child(1) { animation-delay: 0.05s; }
.hero__col-text > :nth-child(2) { animation-delay: 0.14s; }
.hero__col-text > :nth-child(3) { animation-delay: 0.23s; }
.hero__col-text > :nth-child(4) { animation-delay: 0.32s; }
.hero__col-text > :nth-child(5) { animation-delay: 0.41s; }
.hero__col-visual { animation: hero-visual 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards; }

/* Dot da tag do hero pulsa */
.hero__visual-tag::before { animation: tag-pulse 2.2s ease-in-out infinite; }
@keyframes tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.8); }
}

/* Traço laranja das métricas "desenha" quando entra */
html.js-reveal .hero-metrics .hero-metric::before {
  width: 0;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
html.js-reveal .hero-metrics.visible .hero-metric::before { width: 44px; }

/* ─────────────────────────────────────────
   MICRO-INTERAÇÕES — ícones respondem ao hover do card
───────────────────────────────────────── */
.feature-card__icon,
.why-card__icon,
.audience-item__icon {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s, color 0.25s;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--brand);
  color: var(--ink);
}
.why-card:hover .why-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--brand);
  color: var(--ink);
}
.audience-item:hover .audience-item__icon {
  transform: scale(1.08);
  background: var(--brand);
  color: var(--ink);
}

/* WhatsApp float — pulse ring contínuo */
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Navbar comprime levemente ao scrollar */
.navbar { transition: padding 0.25s ease, box-shadow 0.25s ease; }
.navbar--scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.40);
}

/* Acessibilidade — desliga tudo pra quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mt-6 { margin-top: var(--s6); }

/* ═══════════════════════════════════════════════
   PÁGINAS INTERNAS — subhero, cotas, form, mapa, legal
═══════════════════════════════════════════════ */

/* ── Subhero (cabeçalho de página interna) ── */
.subhero {
  position: relative;
  background: var(--ink);
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
}
.subhero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,0,0.30) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(254,130,0,0.16) 0%, transparent 44%),
    linear-gradient(135deg, #0B0B0F 0%, #1A0F05 100%);
  pointer-events: none;
}
.subhero__inner { position: relative; z-index: 1; max-width: 800px; }
.subhero__eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: var(--gap-eyebrow);
}
.subhero__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -1px;
  color: #fff;
  text-wrap: balance;
}
.subhero__lede {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
  max-width: 640px;
  margin: var(--gap-title) auto 0;
}
.subhero__actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--gap-header);
}
@media (max-width: 600px) {
  .subhero__actions { flex-direction: column; }
  .subhero__actions .btn { width: 100%; }
}

/* ── Cotas de patrocínio ── */
/* Grid 3 col fixo. Master (--featured) ocupa a linha inteira no topo,
   os 6 expositores fecham 3×2 limpo (sem órfão) */
.cotas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-bottom: var(--s8);
  align-items: stretch;
}
.cota-card--featured { grid-column: 1 / -1; }
@media (max-width: 900px) { .cotas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cotas-grid { grid-template-columns: 1fr; } }
.cota-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r4);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.cota-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-hover);
  border-color: var(--brand-glow);
}
/* Master: card largo (linha inteira), com a MESMA cor dos demais cards de cota —
   o destaque visual (fundo escuro) foi removido a pedido do Hilton (rev. 03/ago/2026). */
.cota-card--featured {
  background: var(--canvas);
  border-color: var(--border-light);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--s4) var(--s5);
  align-items: center;
  padding: var(--s5);
}
.cota-card--featured .cota-card__head { grid-column: 1; margin-bottom: var(--s2); }
.cota-card--featured .cota-card__area-tag { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.cota-card--featured .cota-card__list { grid-column: 2; grid-row: 1 / 4; display: grid; grid-template-columns: 1fr 1fr; gap: 10px var(--s4); margin: 0; }
.cota-card--featured .btn { grid-column: 1; grid-row: 3; }
.cota-card--featured .cota-card__tier { font-size: 18px; }
.cota-card--featured .cota-card__area-tag { justify-self: start; }
.cota-card--featured .btn--ghost-dark { justify-self: start; }
@media (max-width: 700px) {
  .cota-card--featured { grid-template-columns: 1fr; }
  .cota-card--featured .cota-card__list { grid-column: 1; grid-row: auto; grid-template-columns: 1fr; }
  .cota-card--featured .cota-card__head,
  .cota-card--featured .cota-card__area-tag,
  .cota-card--featured .btn { grid-column: 1; grid-row: auto; }
}
.cota-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: var(--s2); }
.cota-card__tier {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Tag de área/cota (substitui o preço — valores só via contato, padrão Expo) */
.cota-card__area-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: var(--pill);
  margin-bottom: var(--s3);
}
.cota-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.cota-card__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mid);
}
.cota-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* Outras formas */
.outras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s3);
}
.outra-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  padding: var(--s4);
}
.outra-card__price {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.outra-card__price span {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.outra-card__name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.outra-card__desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ── Lead form ── */
.lead-form {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r4);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--r2);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.lead-form textarea { resize: vertical; }
.lead-form button { margin-top: var(--s2); }
.lead-form__legal {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
  text-align: center;
}
.lead-form__legal a { color: var(--brand-deep); font-weight: 600; }
/* honeypot anti-bot — fora da tela, sem exibir pro usuário/leitor de tela */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* banner de status do envio do formulário */
.form-status {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: var(--radius-md, 12px);
  border: 1px solid transparent;
}
.form-status--ok {
  color: #15692b;
  background: #eaf7ee;
  border-color: #bfe6c8;
}
.form-status--err {
  color: #9a2222;
  background: #fdecec;
  border-color: #f3c2c2;
}
@media (max-width: 480px) {
  .lead-form__grid { grid-template-columns: 1fr; }
}

/* ── Mapa frame ── */
/* Passe-partout dark emoldura o mapa claro + affordance de zoom */
.mapa-frame {
  position: relative;
  border-radius: var(--r4);
  overflow: hidden;
  background: var(--ink);
  padding: clamp(16px, 2.4vw, 32px);
  box-shadow: var(--sh-float);
}
.mapa-frame a { display: block; position: relative; border-radius: var(--r2); overflow: hidden; }
.mapa-frame img { width: 100%; display: block; cursor: zoom-in; border-radius: var(--r2); }
.mapa-frame__zoom {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(11,11,15,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--pill);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
}
.mapa-frame__zoom i { color: var(--brand); }

/* ── Páginas legais ── */
.legal { background: var(--paper); padding: var(--sec-py) 0; }
.legal__wrap { max-width: 760px; }
.legal__h {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: var(--s5) 0 var(--s2);
}
.legal__h:first-child { margin-top: 0; }
.legal__p {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: var(--s2);
}
.legal__p a { color: var(--brand-deep); font-weight: 600; }

/* tier dots faltantes pra cotas */
.cota-card__head .tier-dot--master { background: var(--brand); }

/* ── Info cards (mapa) ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
}
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--s3);
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
}
.info-card__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--r2);
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.info-card__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.info-card__value {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
@media (max-width: 880px) { .info-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .info-cards { grid-template-columns: 1fr; } }

/* Ícone nos cards "outras formas" */
.outra-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r2);
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: var(--s2);
}

/* ── Marcas que já passaram pelo REDES (parede consolidada) ── */
/* seções de logos (marcas/patrocinadores) são SEMPRE brancas */
.marcas { background: var(--canvas); padding: var(--sec-py) 0; }
.marcas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--s2);
  align-items: center;
  justify-items: center;
}
.marca-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84px;
  padding: 14px 18px;
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.marca-tile:hover {
  border-color: var(--brand);
  box-shadow: var(--sh-brand-soft);
  transform: translateY(-2px);
}
.marca-tile img {
  /* height vem inline (normalização óptica por proporção) */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .marcas__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Programação do Fórum (apresentações confirmadas) ────────── */
.programa { padding: var(--sec-py) 0; }
.programa__list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--gap-header);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.programa-item {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--brand);
  border-radius: var(--r2);
  padding: var(--s4);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.programa-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card-hover);
  border-color: var(--brand-glow);
  border-left-color: var(--brand);
}
.programa-item__tema {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.35;
  margin: 0 0 8px;
}
.programa-item__quem {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
  display: flex;
  gap: 8px;
}
.programa-item__quem i { color: var(--brand-deep); margin-top: 3px; flex-shrink: 0; }
@media (max-width: 600px) {
  .programa-item { padding: var(--s3); }
  .programa-item__tema { font-size: 16px; }
}

/* Evita palavra órfã na última linha (viúva tipográfica) nos textos corridos */
.feature-card__text,
.why-card__text,
.modality-card__body,
.person-card__role,
.programa-item__quem,
.cota-card__list li,
.legal p,
.audience__intro p { text-wrap: pretty; }

/* ── Espaçamento cabeçalho → conteúdo (subtítulo para conteúdo) ──────────
   Desktop 40px · notebook/tablet 32px · mobile 24px                      */
@media (max-width: 1280px) {
  :root { --gap-header: 32px; }
}
@media (max-width: 600px) {
  :root { --gap-header: 24px; }
}

/* ── Tabela de lotes do Fórum ────────────────────────────────── */
.lotes {
  max-width: 760px;
  margin: var(--s5) auto 0;
  text-align: center;
}
.lotes__titulo {
  display: block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s3);
}
.lotes__lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}
.lote {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s3) var(--s2);
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--r2);
}
.lote--atual {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
  background: var(--brand-tint, #FFF6EE);
}
.lote__nome {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lote__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 2px 7px;
  border-radius: 99px;
}
.lote__valor {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.1;
}
.lote--atual .lote__valor { color: var(--brand-deep); }
.lote__prazo {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .lotes__lista { grid-template-columns: 1fr; gap: 10px; }
  .lote {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "nome valor" "prazo valor";
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    text-align: left;
    padding: 12px var(--s3);
  }
  .lote__nome  { grid-area: nome;  justify-content: flex-start; white-space: nowrap; }
  .lote__prazo { grid-area: prazo; white-space: nowrap; }
  .lote__valor { grid-area: valor; font-size: 21px; text-align: right; white-space: nowrap; }
  .lote__tag { font-size: 9px; padding: 2px 6px; }
}

/* ── LiteYouTube — thumbnail + play; player abre em modal (padrão das LPs) ── */
/* margin-bottom separa o vídeo da faixa de fotos que vem logo abaixo */
.lite-yt { max-width: 900px; margin: var(--gap-header) auto; }
.lite-yt__btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--r3);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  box-shadow: var(--sh-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lite-yt__btn:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); }
.lite-yt__thumb {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.lite-yt__btn:hover .lite-yt__thumb { transform: scale(1.03); }
.lite-yt__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,15,0.5), rgba(11,11,15,0.08) 45%, rgba(11,11,15,0.25));
}
.lite-yt__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.lite-yt__glow {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(254,130,0,0.45);
  filter: blur(28px);
  transform: scale(1.5);
  animation: lite-yt-pulse 2.4s ease-in-out infinite;
}
@keyframes lite-yt-pulse { 0%,100% { opacity: 0.65; } 50% { opacity: 1; } }
.lite-yt__ring {
  position: absolute;
  width: 112px; height: 112px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.26);
  transition: border-color 0.3s ease;
}
.lite-yt__btn:hover .lite-yt__ring { border-color: rgba(254,166,77,0.75); }
.lite-yt__disc {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding-left: 6px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 20px 56px -8px rgba(254,130,0,0.6);
  transition: transform 0.3s ease;
}
.lite-yt__btn:hover .lite-yt__disc { transform: scale(1.1); }
.lite-yt__cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 46px var(--s3) 18px;
  font-family: var(--f-display);
  font-size: 15px; font-weight: 600;
  color: #fff; text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* modal */
.lite-yt-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lite-yt-modal.open { opacity: 1; }
.lite-yt-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border: 0; padding: 0; cursor: pointer;
}
.lite-yt-modal__player {
  position: relative;
  width: 100%; max-width: 1200px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.9);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.lite-yt-modal.open .lite-yt-modal__player { transform: scale(1) translateY(0); }
.lite-yt-modal__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lite-yt-modal__close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lite-yt-modal__close:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.lite-yt-modal__hint {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
  .lite-yt__disc { width: 68px; height: 68px; }
  .lite-yt__ring { width: 88px; height: 88px; }
  .lite-yt__glow { width: 72px; height: 72px; }
  .lite-yt__cta { font-size: 13px; padding: 34px var(--s2) 12px; }
  .lite-yt-modal { padding: 0; }
  .lite-yt-modal__player { border-radius: 0; }
  .lite-yt-modal__hint { display: none; }
}

/* ── Aviso de cookies ────────────────────────────────────────
   Nasce junto com o pixel: sem o aceite, o fbevents.js não carrega.
   Ancorado embaixo e estreito para não cobrir conteúdo nem CTA. */
.consent {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 9000;
  width: min(680px, calc(100vw - 32px));
  transform: translate(-50%, calc(100% + 32px));
  opacity: 0;
  transition: transform .26s ease, opacity .26s ease;
}
.consent.is-open { transform: translate(-50%, 0); opacity: 1; }

.consent__box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #14110F;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
}
.consent__texto {
  margin: 0;
  flex: 1;
  font-size: .8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
}
.consent__texto a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.consent__acoes { display: flex; gap: 8px; flex-shrink: 0; }
.consent__btn {
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #1A1207;
  font: inherit;
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter .18s ease;
}
.consent__btn:hover { filter: brightness(1.08); }
.consent__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .2);
}
.consent__btn--ghost:hover { background: rgba(255, 255, 255, .06); filter: none; }
.consent__btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

@media (max-width: 640px) {
  /* Compacto de propósito: em telas pequenas o aviso fica sobre o segundo CTA
     do hero, então ele ocupa o mínimo necessário para ser lido e respondido. */
  .consent { bottom: 10px; width: calc(100vw - 20px); }
  .consent__box { flex-direction: column; align-items: stretch; gap: 10px; padding: 13px 15px; }
  .consent__texto { font-size: .75rem; line-height: 1.45; }
  .consent__acoes { justify-content: stretch; gap: 8px; }
  .consent__btn { flex: 1; padding: 9px 14px; font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  .consent { transition: opacity .2s ease; transform: translate(-50%, 0); }
}
