/* =========================================================================
   ELO — Aplaudido no Mercado e Vaiado em Casa
   Direção: pôster editorial, preto quente + laranja queimado + branco.
   Arco de cor: escuro (peso) -> claro (oferta/prova) -> escuro (decisão).
   ========================================================================= */

:root {
  /* --- cor --- */
  --ink:        #17110D;   /* preto quente, fundo do peso emocional */
  --ink-2:      #211712;   /* superfície escura elevada */
  --ink-3:      #2C2019;   /* borda/linha sobre escuro */
  --paper:      #FBF7F2;   /* off-white quente, seções claras */
  --paper-2:    #FFFFFF;   /* cards claros */
  --paper-line: #EBE2D8;   /* borda sobre claro */

  --orange:     #C9682C;   /* laranja queimado, acento único */
  --orange-lit: #E6903F;   /* topo do gradiente / brilho */
  --orange-deep:#9C4715;   /* base do gradiente / sombra */
  --orange-ink: #F0A863;   /* laranja claro p/ detalhe sobre escuro */

  --white:      #FFFFFF;
  --on-ink:     rgba(255, 248, 242, 0.72);  /* corpo sobre escuro */
  --on-ink-dim: rgba(255, 248, 242, 0.42);
  --on-paper:   #43382F;   /* corpo sobre claro */
  --on-paper-dim:#8A7B6E;

  /* --- tipografia --- */
  --display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --text-body: clamp(1.02rem, 0.96rem + 0.35vw, 1.15rem);
  --h1: clamp(2.3rem, 1.5rem + 4.2vw, 4.9rem);
  --h2: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  --lede: clamp(1.55rem, 1.1rem + 2.1vw, 2.6rem);

  /* --- espaço / forma --- */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --pad-x: clamp(1.15rem, 0.6rem + 2.6vw, 2.4rem);
  --section-y: clamp(4rem, 3rem + 5vw, 8.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 640ms;
}

/* ---------------- reset básico ---------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 1.62;
  color: var(--on-ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: fixed; top: -80px; left: 12px; z-index: 200;
  background: var(--orange); color: #fff; padding: .7rem 1.1rem;
  border-radius: 8px; font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------------- layout ---------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }

.section { position: relative; padding-block: var(--section-y); }
.section--ink   { background: var(--ink);   color: var(--on-ink); }
.section--paper { background: var(--paper);  color: var(--on-paper); }

/* a "virada" — fundo escuro sólido (sem degradê) */
.section--turn { color: var(--on-ink); background: var(--ink); }
.section--turn .lede span { color: var(--orange-ink); }

/* ---------------- tipografia utilitária ---------------- */
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange-ink);
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.section--paper .eyebrow { color: var(--orange); }
.eyebrow.center { justify-content: center; }
.eyebrow .idx {
  font-family: var(--display); font-size: 1.1rem; letter-spacing: 0;
  color: var(--orange); line-height: 1;
}
.eyebrow .dot, .hero__micro .dot, .ticket__urg .dot, .hero__cap .dot {
  color: var(--orange); font-size: .7em; transform: translateY(-1px);
}

.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: var(--h2); line-height: 0.98; letter-spacing: .005em;
  text-transform: uppercase; color: var(--ink);
}
.section-title.on-ink, .section--ink .section-title { color: var(--white); }
.section-title.center { text-align: center; }
/* variante frase (não-display): Inter, caixa normal, com ênfase laranja */
.section-title--plain {
  font-family: var(--body); font-weight: 800; text-transform: none;
  font-size: clamp(1.6rem, 1.15rem + 2.2vw, 2.7rem); line-height: 1.14; letter-spacing: -.01em;
}
.section-title--plain em { color: var(--orange); font-style: italic; }

/* ---------------- botões ---------------- */
.btn {
  --btn-fs: 1rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 700; font-size: var(--btn-fs);
  letter-spacing: .01em; line-height: 1;
  padding: 1.05rem 1.7rem; border-radius: 12px; border: 0;
  cursor: pointer; text-align: center;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn--orange {
  color: #fff;
  background: linear-gradient(180deg, var(--orange-lit), var(--orange) 55%, var(--orange-deep));
  box-shadow: 0 10px 30px -10px rgba(201,104,44,.65), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(201,104,44,.8), inset 0 1px 0 rgba(255,255,255,.3); }
.btn--orange:active { transform: translateY(0); }
.btn--line {
  color: var(--white); background: transparent;
  border: 1.5px solid rgba(255,255,255,.28); font-weight: 600;
}
.btn--line:hover { border-color: var(--orange-ink); color: var(--orange-ink); }
.btn--line .mut { color: var(--on-ink-dim); font-weight: 500; }
.btn--ghost {
  color: var(--white); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16); padding: .72rem 1.15rem; font-size: .92rem;
}
.btn--ghost:hover { background: var(--orange); border-color: var(--orange); }
.btn--block { display: flex; width: 100%; }
.btn--lg { --btn-fs: 1.12rem; padding: 1.25rem 2.2rem; }

.play-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); display: inline-grid; place-items: center; flex: none;
  position: relative;
}
.play-dot::after {
  content: ""; width: 0; height: 0; margin-left: 2px;
  border-left: 7px solid #fff; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.play-dot--lg { width: 66px; height: 66px; box-shadow: 0 0 0 10px rgba(201,104,44,.18), 0 14px 40px -8px rgba(0,0,0,.6); }
.play-dot--lg::after { margin-left: 4px; border-left-width: 18px; border-top-width: 12px; border-bottom-width: 12px; }

/* ---------------- header ---------------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem var(--pad-x);
  background: linear-gradient(180deg, rgba(23,17,13,.92), rgba(23,17,13,0));
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-head.is-stuck {
  background: rgba(20,15,11,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 34px; width: auto; display: block; }
@media (min-width: 620px) { .brand__logo { height: 38px; } }
.head-cta { display: none; }
@media (min-width: 620px) { .head-cta { display: inline-flex; } }

/* ---------------- fio laranja (o "elo") ---------------- */
.thread {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 100vh; z-index: 1; pointer-events: none;
  background: rgba(255,255,255,.06);
  opacity: 0; transition: opacity .5s var(--ease);   /* aparece só da 2ª dobra */
}
.thread.is-active { opacity: 1; }
.thread__fill {
  display: block; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--orange-lit), var(--orange) 60%, transparent);
  box-shadow: 0 0 10px rgba(201,104,44,.6);
  transition: height .1s linear;
}
@media (max-width: 760px) { .thread { display: none; } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { overflow: hidden; padding-top: clamp(6rem, 5rem + 6vw, 9rem); isolation: isolate; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(1rem, 1rem + 2vw, 3rem); position: relative; z-index: 2;
}

/* --- fundo aurora (preto/laranja) — portado do efeito React p/ CSS puro --- */
.hero__glow {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  opacity: .85; pointer-events: none;
}
.hero__glow::before, .hero__glow::after { content: ""; position: absolute; inset: -60%; }
/* camada 1: bandas quentes suaves (o "glow") */
.hero__glow::before {
  background: repeating-linear-gradient(102deg,
    #4A2109 6%, #B85E24 12%, #E6903F 18%, #B85E24 24%, #4A2109 30%);
  background-size: 320% 100%;
  filter: blur(58px);
  animation: aurora-drift 26s linear infinite;
}
/* camada 2: as LINHAS/faixas visíveis da aurora (pouco blur) */
.hero__glow::after {
  background: repeating-linear-gradient(102deg,
    transparent 0%, transparent 2.2%,
    rgba(240,168,99,.30) 3%, rgba(255,210,158,.55) 4.4%, rgba(240,168,99,.30) 5.8%,
    transparent 6.6%, transparent 10%);
  background-size: 200% 100%;
  filter: blur(2.5px);
  mix-blend-mode: screen;
  animation: aurora-shift 19s linear infinite;
}
@keyframes aurora-drift {
  0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }
}
@keyframes aurora-shift {
  0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }
}
/* véu de leitura: escurece o lado do texto e o topo/base */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,8,5,.92) 0%, rgba(11,8,5,.55) 38%, rgba(11,8,5,.05) 66%, transparent 82%),
    radial-gradient(ellipse at 62% 45%, transparent 30%, rgba(11,8,5,.55) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__copy { position: relative; z-index: 3; }
.hero__title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: var(--h1); line-height: 0.92; letter-spacing: .004em;
  margin: .3rem 0 1.3rem;
}
.hero__title .l1 { display: block; color: var(--white); }
.hero__title .l2 { display: block; color: var(--orange); }
.hero__sub {
  max-width: 34ch; color: var(--on-ink); font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem);
  margin-bottom: 1.9rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.hero__micro {
  font-size: .86rem; letter-spacing: .04em; color: var(--on-ink-dim);
  display: flex; gap: .5rem; align-items: center; flex-wrap: wrap;
}
.hero__figure {
  position: relative; z-index: 2; justify-self: end; align-self: end;
  margin-bottom: calc(var(--section-y) * -1);
}
.hero__figure img {
  width: min(40vw, 440px);
  -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 74%, transparent 99%);
}
/* contador regressivo (cards) */
.countdown { display: flex; gap: .6rem; margin-top: 1.7rem; max-width: 430px; }
.cd__box {
  position: relative; flex: 1 1 0; min-width: 0;
  background: linear-gradient(180deg, rgba(44,32,25,.9), rgba(23,17,13,.9));
  border: 1px solid var(--ink-3); border-radius: 15px;
  padding: .85rem .3rem .65rem; text-align: center; overflow: hidden;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.7);
}
.cd__box::before {
  content: ""; position: absolute; top: 0; left: 14%; right: 14%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange-lit), transparent);
}
.cd__num {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 1.5rem + 2.2vw, 2.9rem); line-height: 1; color: var(--orange-lit);
  font-variant-numeric: tabular-nums;
}
.cd__lbl { display: block; margin-top: .4rem; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-dim); }

.scroll-cue {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-ink-dim);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-cue span {
  width: 1px; height: 34px; background: linear-gradient(var(--orange), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { opacity: 0; transform: scaleY(.3); transform-origin: top; } 40% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: top; } }

/* =========================================================================
   VÍDEO
   ========================================================================= */
.video__sub { color: var(--on-ink); max-width: 46ch; margin: .9rem auto 2rem; }
.video__frame {
  position: relative; margin-inline: auto; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--ink-3);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video .btn--orange { margin-top: 2rem; }

/* =========================================================================
   DOR -> VIRADA
   ========================================================================= */
.lede {
  font-family: var(--body); font-weight: 700; font-size: var(--lede);
  line-height: 1.16; letter-spacing: -.01em; color: var(--white); max-width: 20ch;
  margin-bottom: 2.4rem;
}
.lede span { display: block; color: var(--on-ink); font-weight: 500; margin-top: .5rem; max-width: 26ch; }
.pains { display: grid; gap: .1rem; max-width: 60ch; }
.pains li {
  position: relative; padding: 1rem 0 1rem 2.2rem; font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.09); color: var(--on-ink);
}
.pains li::before {
  content: ""; position: absolute; left: 0; top: 1.5rem;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--orange); background: transparent;
}
.section--turn .pains li { border-color: rgba(255,255,255,.12); }
.turn-quote {
  margin-top: 3rem; padding: 2rem clamp(1.2rem, 3vw, 2.4rem);
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,.04); border-radius: 0 var(--radius) var(--radius) 0;
}
.turn-quote p { font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem); color: var(--white); font-weight: 500; line-height: 1.4; }
.turn-quote__tag {
  margin-top: 1rem !important; font-family: var(--display); text-transform: uppercase;
  font-size: 1.1rem; color: var(--orange-ink) !important; font-weight: 400 !important; letter-spacing: .02em;
}

/* =========================================================================
   AUTORIDADE
   ========================================================================= */
.authority__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(1.4rem, 1rem + 3vw, 4rem); }
.authority__figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #efe4d7, #d9c7b4);
}
.authority__figure::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 -60px 60px -30px rgba(23,17,13,.25);
}
.authority__figure img { width: 100%; }
.authority__copy p { color: var(--on-paper); margin-top: 1rem; max-width: 52ch; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.chips li {
  font-size: .82rem; font-weight: 600; padding: .5rem .9rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--paper-line); color: var(--ink);
}
.chips li::before { content: "◆ "; color: var(--orange); }

/* =========================================================================
   BENTO — o que vai viver
   ========================================================================= */
.live .section-title { margin-bottom: 2.2rem; }
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.bento__card {
  position: relative; background: var(--paper-2); border: 1px solid var(--paper-line);
  border-radius: var(--radius); padding: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -24px rgba(23,17,13,.4); border-color: #e0cdb8; }
.bento__card--wide { grid-column: 1 / -1; }
.bento__card p { font-size: 1.12rem; font-weight: 500; color: var(--ink); max-width: 46ch; position: relative; z-index: 1; }
.bento__n {
  font-family: var(--display); font-size: clamp(2.4rem, 2rem + 3vw, 4rem);
  color: var(--paper-line); line-height: 1; position: absolute; top: .5rem; right: 1rem; z-index: 0;
}
.bento__card:hover .bento__n { color: var(--orange-ink); }

/* =========================================================================
   PROVA SOCIAL
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.4rem 0 3rem; text-align: center; }
.stat { padding: 1.6rem 1rem; border: 1px solid var(--paper-line); border-radius: var(--radius); background: #fff; }
.stat__n { display: block; font-family: var(--display); font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem); color: var(--orange); line-height: 1; }
.stat__l { display: block; margin-top: .5rem; font-size: .9rem; color: var(--on-paper-dim); text-transform: uppercase; letter-spacing: .08em; }

.testis { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 1rem; margin-bottom: 1.6rem; }
.testi {
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius);
  padding: 1.6rem; margin: 0; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.testi:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -26px rgba(23,17,13,.4); }
.testi__quote { font-family: var(--display); font-weight: 400; text-transform: none; font-size: 1.3rem; color: var(--ink); line-height: 1.15; letter-spacing: .005em; }
.testi__who { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; }
.testi__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(150deg, var(--orange-lit), var(--orange-deep));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .82rem; letter-spacing: .02em;
}
.testi__name { display: flex; flex-direction: column; font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.2; }
.testi__role { font-weight: 500; color: var(--on-paper-dim); font-size: .78rem; margin-top: .15rem; }

.reviews__label { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .9rem; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.review { background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 1.5rem; margin: 0; }
.review__stars { color: #E8A33C; letter-spacing: 3px; font-size: 1rem; }
.review__quote { color: var(--ink); font-weight: 500; line-height: 1.5; margin-top: .6rem; }
.review__who { display: flex; align-items: center; gap: .55rem; margin-top: 1.1rem; font-weight: 700; color: var(--ink); font-size: .9rem; }
.review__avatar { width: 32px; height: 32px; border-radius: 50%; flex: none; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .8rem; }
.review__src { margin-left: auto; font-weight: 500; color: var(--on-paper-dim); font-size: .76rem; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gallery__item {
  aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden; margin: 0;
  background: var(--ink-2); border: 1px solid var(--paper-line);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }

/* =========================================================================
   OFERTA / INGRESSO
   ========================================================================= */
.offer__lead { max-width: 52ch; margin: 1rem auto 2.6rem; color: var(--on-paper); }
.ticket {
  display: grid; grid-template-columns: 130px 1fr;
  background: var(--ink); color: var(--on-ink);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: 0 40px 80px -34px rgba(23,17,13,.55);
}
.ticket__stub {
  background: linear-gradient(160deg, var(--orange-lit), var(--orange-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  padding: 1.4rem .6rem; text-align: center; position: relative;
}
.ticket__stub::after {
  content: ""; position: absolute; right: -8px; top: 0; bottom: 0; width: 16px;
  background: radial-gradient(circle at 50% 0, transparent 8px, var(--ink) 9px) repeat-y;
  background-size: 16px 22px;
}
.ticket__lote { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; color: #fff; letter-spacing: .04em; }
.ticket__ico { font-size: 1.8rem; }
.ticket__date { font-family: var(--display); font-size: 1.9rem; color: #fff; line-height: 1; }
.ticket__body { padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); }
.ticket__list { display: grid; gap: .75rem; margin-bottom: 1.5rem; }
.ticket__list li { position: relative; padding-left: 1.9rem; color: var(--on-ink); }
.ticket__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--ink); font-weight: 800; font-size: .8rem;
  width: 20px; height: 20px; border-radius: 50%; background: var(--orange-lit); display: grid; place-items: center;
}
.ticket__price { display: flex; flex-direction: column; align-items: flex-start; gap: .15rem; padding-top: 1.3rem; border-top: 1px solid var(--ink-3); }
.ticket__parcela { font-size: 1rem; color: var(--on-ink); }
.ticket__parcela strong { color: var(--orange-ink); }
.ticket__value {
  font-family: var(--display); font-size: clamp(3.4rem, 2.4rem + 4.5vw, 5.2rem);
  color: #fff; line-height: .95; letter-spacing: .01em;
}
.ticket__value .cur { font-family: var(--body); font-size: .3em; font-weight: 700; color: var(--orange-ink); vertical-align: 0.85em; margin-right: .12em; }
.ticket__value .cents { font-size: .45em; vertical-align: 0.95em; }
.ticket__avista { margin-top: .5rem; font-size: .95rem; color: var(--on-ink-dim); }
.ticket__avista strong { color: #fff; }
.ticket__plus { color: var(--orange-ink); font-weight: 600; white-space: nowrap; }
.ticket__social { font-size: .92rem; color: var(--on-ink-dim); margin: .7rem 0 1.5rem; font-style: italic; }
.ticket__urg {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.1rem; font-size: .85rem; color: var(--orange-ink); letter-spacing: .03em; font-weight: 600;
}
.urg-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(201,104,44,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(201,104,44,.55); } 70% { box-shadow: 0 0 0 9px rgba(201,104,44,0); } 100% { box-shadow: 0 0 0 0 rgba(201,104,44,0); } }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq .section-title { margin-bottom: 2rem; }
.acc { display: grid; gap: .7rem; }
.acc__item { background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius); overflow: hidden; }
.acc__item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 3rem 1.1rem 1.3rem; position: relative;
  font-weight: 700; color: var(--ink); font-size: 1.05rem;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--display); color: var(--orange); font-size: 1.6rem; transition: transform .25s var(--ease);
}
.acc__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc__body { padding: 0 1.3rem 1.2rem; }
.acc__body p { color: var(--on-paper); max-width: 60ch; }
.acc__body strong { color: var(--ink); }
.acc__link {
  display: inline-block; margin-top: .5rem; color: var(--orange); font-weight: 700;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.acc__link:hover { color: var(--orange-deep); }

/* =========================================================================
   CTA FINAL
   ========================================================================= */
.final { overflow: hidden; isolation: isolate; }
.final__glow {
  position: absolute; inset: auto 50% -30% auto; transform: translateX(50%); z-index: 0;
  width: 80vw; height: 40vw; max-width: 700px;
  background: radial-gradient(circle, rgba(201,104,44,.3), transparent 60%); filter: blur(8px);
}
.final .wrap { position: relative; z-index: 1; }
.final__title {
  font-family: var(--display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.8rem); line-height: 1; color: var(--white);
  max-width: 16ch; margin-inline: auto;
}
.final__sub { margin: 1.5rem auto 2.2rem; color: var(--on-ink); font-size: clamp(1.05rem, 1rem + .6vw, 1.35rem); }
.final .hero__micro { justify-content: center; margin-top: 1.4rem; }

/* ---------------- DETALHES DO EVENTO ---------------- */
.final { padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.details { padding-top: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.details__title {
  font-family: var(--display); text-transform: uppercase; text-align: center; color: #fff;
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.9rem); line-height: 1; margin-bottom: 2.2rem;
}
.details__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.details__item {
  display: flex; flex-direction: column; align-items: flex-start; gap: .22rem;
  background: linear-gradient(150deg, rgba(201,104,44,.13), rgba(33,23,18,.45));
  border: 1px solid rgba(230,144,63,.28); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.details__item:hover { transform: translateY(-3px); border-color: rgba(230,144,63,.55); }
.details__ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .7rem;
  background: linear-gradient(160deg, var(--orange-lit), var(--orange-deep)); color: #fff;
}
.details__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-ink); font-weight: 700; }
.details__val { color: #fff; font-size: 1.28rem; line-height: 1.15; }
.details__sub { color: var(--on-ink-dim); font-size: .88rem; }
.details__map { margin-top: .7rem; color: var(--orange-ink); font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.details__map:hover { color: #fff; }

/* =========================================================================
   RODAPÉ
   ========================================================================= */
.site-foot { padding: clamp(3rem, 2rem + 3vw, 4.5rem) 0 2rem; border-top: 1px solid var(--ink-3); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.foot__logo { height: 48px; width: auto; }
.foot__brand p { margin-top: 1rem; color: var(--on-ink-dim); font-size: .9rem; line-height: 1.6; }
.foot__contact, .foot__legal { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.foot__contact a, .foot__legal a { color: var(--on-ink); font-size: .92rem; transition: color .2s var(--ease); }
.foot__contact a:hover, .foot__legal a:hover { color: var(--orange-ink); }
.foot__lgpd { color: var(--on-ink-dim); font-size: .78rem; margin-top: .4rem; }
.foot__copy { text-align: center; margin-top: 2.5rem; color: var(--on-ink-dim); font-size: .8rem; }
.foot__credit { text-align: center; margin-top: .5rem; color: var(--on-ink-dim); font-size: .8rem; }
.foot__credit a { color: var(--orange-ink); font-weight: 600; }
.foot__credit a:hover { color: var(--orange); }

/* =========================================================================
   BARRA MOBILE
   ========================================================================= */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem var(--pad-x) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(20,15,11,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-3);
  transform: translateY(120%); transition: transform .35s var(--ease); visibility: hidden;
}
.mobile-bar.is-visible { transform: translateY(0); visibility: visible; }
.mobile-bar__info { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-bar__info strong { color: #fff; font-size: 1rem; white-space: nowrap; }
.mobile-bar__info span { color: var(--on-ink-dim); font-size: .78rem; }
.mobile-bar .btn { padding: .85rem 1.4rem; flex: none; }
@media (min-width: 861px) { .mobile-bar { display: none; } }

/* =========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================= */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 96;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 4px 10px rgba(0,0,0,.25);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37,211,102,.6), 0 4px 10px rgba(0,0,0,.25); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 860px) {
  .wa-float { right: 16px; bottom: calc(84px + env(safe-area-inset-bottom)); width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
}

/* =========================================================================
   MOTION — reveal on scroll
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-cue span, .urg-dot, .hero__glow::before, .hero__glow::after { animation: none; }
  .thread__fill { transition: none; }
}

/* =========================================================================
   RESPONSIVO
   ========================================================================= */
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { justify-self: center; margin-top: 1.4rem; margin-bottom: calc(var(--section-y) * -0.45); }
  .hero__figure img { width: min(64vw, 290px); }
  .hero__glow { top: -6%; right: -20%; }
  .scroll-cue { display: none; }
  .authority__grid { grid-template-columns: 1fr; }
  .authority__figure { max-width: 360px; }
  .stats, .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 74px; } /* espaço p/ barra mobile */
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .ticket { grid-template-columns: 1fr; }
  .ticket__stub { flex-direction: row; justify-content: center; gap: 1rem; padding: 1rem; }
  .ticket__stub::after { display: none; }
  .ticket__date { font-size: 1.5rem; }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
}

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