/* ============================================
   Laser & Business Experience — Visual Silence
   Preto Profundo #0A0A0A / Dourado #D4AF37 / Branco #FFFFFF
   ============================================ */

@font-face {
  font-family: 'Against';
  src: url('../fonts/Against-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0A0A0A;
  --black-soft: #141210;
  --gold: #D4AF37;
  --gold-soft: #C5A059;
  --white: #FFFFFF;
  --ink: #EDEAE4;
  --ink-dim: #B8B2A6;
  --font-title: 'Against', Georgia, serif;
  --font-sub: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Lenis smooth scroll (js/vendor/lenis.min.js) */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  background:
    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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    var(--black);
  background-blend-mode: overlay, normal;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  position: relative;
  z-index: 1;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--white);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary:focus-visible {
  outline-color: var(--black);
}

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  transform: scale(1.05);
}

/* ---------- Kickers / Titles ---------- */

.section-kicker {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(20px, 4.6vw, 30px);
  max-width: 600px;
  margin-bottom: 8px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78svh;
  overflow: hidden;
  padding: 96px 0 64px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 85% 55% at 50% 0%, rgba(212, 175, 55, 0.28), transparent 62%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  opacity: 0;
  animation: heroGlowIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* Brilhos laterais, camada própria para entrarem depois do glow superior */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 100% 50%, rgba(212, 175, 55, 0.22), transparent 62%),
    radial-gradient(ellipse 50% 52% at 0% 58%, rgba(212, 175, 55, 0.16), transparent 62%);
  opacity: 0;
  animation: heroGlowIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes heroGlowIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(212, 175, 55, 0.05) 0px,
    rgba(212, 175, 55, 0.05) 1px,
    transparent 1px,
    transparent 90px
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  width: 100%;
  min-width: 0;
}

.hero__brand {
  font-family: var(--font-sub);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow {
  font-family: var(--font-sub);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__subheading {
  font-family: var(--font-body);
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 28px;
}

.hero__title {
  font-size: clamp(19px, 5.2vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: wordUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tags-wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 32px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero__tags-track {
  display: flex;
  width: max-content;
  animation: tagsMarquee 24s linear infinite;
}

@keyframes tagsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
  padding: 0 4px;
  list-style: none;
}

.hero__tags li {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
  white-space: nowrap;
}

.hero__meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}

.hero__scrollcue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  z-index: 1;
}

.hero__scrollcue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollcue 1.8s ease infinite;
}

@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

/* ---------- Glows de seção ----------
   Camada de luz por trás do conteúdo, alternando de lado
   para criar ritmo visual ao longo da rolagem. */

.sobre,
.publico,
.palestras,
.jornada,
.logistica,
.faq,
.oferta {
  position: relative;
}

/* Cada seção define só a geometria e a intensidade da sua luz.
   O gradiente e o grain são montados a partir dessas variáveis,
   garantindo que a textura acompanhe exatamente a forma da luz. */

.sobre     { --gx: -15%; --gy: 48%; --gw: 120%; --gh: 85%; --ga: 0.16; }
.pilares   { --gx: 112%; --gy: 50%; --gw: 125%; --gh: 90%; --ga: 0.15; }
.publico   { --gx: -12%; --gy: 58%; --gw: 115%; --gh: 95%; --ga: 0.14; }
.palestras { --gx: 110%; --gy: 45%; --gw: 130%; --gh: 60%; --ga: 0.15; }
.jornada   { --gx: -12%; --gy: 50%; --gw: 115%; --gh: 80%; --ga: 0.14; }
.logistica { --gx: 112%; --gy: 50%; --gw: 120%; --gh: 95%; --ga: 0.15; }
.faq       { --gx: -12%; --gy: 48%; --gw: 115%; --gh: 85%; --ga: 0.14; }
/* Centrado na caixa de preço, que fica a ~70% da altura da seção
   (medido: 69% no desktop, 71% no mobile). */
.oferta    { --gx: 50%;  --gy: 70%; --gw: 115%; --gh: 62%; --ga: 0.2; }

.sobre::before,
.pilares::before,
.publico::before,
.palestras::before,
.jornada::before,
.logistica::before,
.faq::before,
.oferta::before,
.sobre::after,
.pilares::after,
.publico::after,
.palestras::after,
.jornada::after,
.logistica::after,
.faq::after,
.oferta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Camada 1: a luz. Queda em 6 estágios para evitar borda dura. */
.sobre::before,
.pilares::before,
.publico::before,
.palestras::before,
.jornada::before,
.logistica::before,
.faq::before,
.oferta::before {
  background: radial-gradient(ellipse var(--gw) var(--gh) at var(--gx) var(--gy),
    rgba(212, 175, 55, var(--ga)) 0%,
    rgba(212, 175, 55, calc(var(--ga) * 0.62)) 18%,
    rgba(212, 175, 55, calc(var(--ga) * 0.34)) 34%,
    rgba(212, 175, 55, calc(var(--ga) * 0.15)) 50%,
    rgba(212, 175, 55, calc(var(--ga) * 0.05)) 62%,
    transparent 76%);
  /* Dissolve a luz antes das bordas da seção, senão a emenda
     entre seções vira uma linha reta visível. */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
}

/* A luz da oferta senta mais baixo que as outras, atrás da caixa de preço.
   A máscara padrão começaria a dissolver em 76%, bem em cima do miolo,
   então aqui ela segura mais antes de cair. */
.oferta::before {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 90%, transparent 100%);
}

/* Camada 2: grain recortado na mesma forma da luz.
   Quebra o banding do gradiente e casa com a textura do fundo. */
.sobre::after,
.pilares::after,
.publico::after,
.palestras::after,
.jornada::after,
.logistica::after,
.faq::after,
.oferta::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.13;
  -webkit-mask-image: radial-gradient(ellipse calc(var(--gw) * 0.82) calc(var(--gh) * 0.6) at var(--gx) var(--gy),
    #000 0%, rgba(0, 0, 0, 0.55) 38%, transparent 70%);
  mask-image: radial-gradient(ellipse calc(var(--gw) * 0.82) calc(var(--gh) * 0.6) at var(--gx) var(--gy),
    #000 0%, rgba(0, 0, 0, 0.55) 38%, transparent 70%);
}

/* Luz e grain acendem juntos conforme a seção entra na tela.
   Sem suporte a view(), ficam estáticos e sempre visíveis. */
@supports (animation-timeline: view()) {
  /* Duas animações por camada: uma acende, outra apaga.
     Elas usam propriedades diferentes (opacity e filter) de propósito,
     senão a segunda sobrescreveria a primeira em vez de somar. */

  .sobre::before,
  .pilares::before,
  .publico::before,
  .palestras::before,
  .jornada::before,
  .logistica::before,
  .faq::before,
  .oferta::before {
    opacity: 0;
    animation: sectionGlowIn linear both, sectionFadeOut linear both;
    animation-timeline: view(), view();
    /* Em vh, não em %, para o gatilho não depender da altura da seção.
       Acende quando o topo da seção chega ao meio da tela e apaga
       assim que ela começa a sair por cima, que é quando o miolo
       iluminado ainda está em quadro. Ancorar na base faria o glow
       apagar fora da tela, sem ninguém ver. */
    animation-range:
      entry 50vh entry 78vh,
      exit 0vh exit 100vh;
  }

  .sobre::after,
  .pilares::after,
  .publico::after,
  .palestras::after,
  .jornada::after,
  .logistica::after,
  .faq::after,
  .oferta::after {
    opacity: 0;
    animation: sectionGrainIn linear both, sectionFadeOut linear both;
    animation-timeline: view(), view();
    animation-range:
      entry 50vh entry 78vh,
      exit 0vh exit 100vh;
  }

  @keyframes sectionGlowIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes sectionGrainIn {
    from { opacity: 0; }
    to { opacity: 0.13; }
  }

  @keyframes sectionFadeOut {
    from { filter: opacity(1); }
    to { filter: opacity(0); }
  }
}

/* ---------- Sobre a palestrante ---------- */

.sobre {
  position: relative;
  padding: 64px 0;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.sobre__foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.sobre__bio {
  color: var(--ink-dim);
  margin: 18px 0 24px;
  max-width: 520px;
}

.sobre__credenciais li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--ink-dim);
}

.sobre__credenciais li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.sobre__credenciais li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

/* ---------- Pilares ---------- */

.pilares {
  position: relative;
  padding: 64px 0;
  text-align: center;
}

.pilares .section-title { margin: 0 auto 56px; }

.pilares__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: left;
}

.pilar {
  position: relative;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.05), transparent);
}

.pilar__icon {
  display: block;
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

.pilar h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.pilar p {
  font-size: 14px;
  color: var(--ink-dim);
}

/* ---------- Para quem é ---------- */

.publico {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.publico .section-title { margin-bottom: 40px; }

.publico__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container-w);
  margin: 0 auto;
}

.publico__card {
  position: relative;
  padding: 28px 26px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  background: var(--black-soft);
}

.publico__grid .publico__card:nth-child(1) { transition-delay: 0ms; }
.publico__grid .publico__card:nth-child(2) { transition-delay: 120ms; }

.publico__label {
  display: block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 12px;
}

.publico__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-dim);
}

.publico__label .word {
  display: inline-block;
}

.js .publico__label .word {
  opacity: 0;
  transform: translateY(0.4em);
}

.js .publico__card.is-visible .publico__label .word {
  animation: wordUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.publico__label .word:nth-child(1) { animation-delay: 0.05s; }
.publico__label .word:nth-child(2) { animation-delay: 0.12s; }
.publico__label .word:nth-child(3) { animation-delay: 0.19s; }
.publico__label .word:nth-child(4) { animation-delay: 0.26s; }
.publico__label .word:nth-child(5) { animation-delay: 0.33s; }

/* ---------- Palestras ---------- */

.palestras {
  padding: 64px 0 8px;
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.palestras .section-title { margin-bottom: 8px; }

.palestra {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.palestra:first-of-type {
  border-top: none;
  margin-top: 32px;
}

.palestra__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.palestra__foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.js .palestra.is-visible .palestra__numero {
  animation: palestraBadgeFlash 0.8s ease-out both;
}

@keyframes palestraBadgeFlash {
  0%, 55% { text-shadow: none; }
  75% { text-shadow: 0 0 16px rgba(212, 175, 55, 0.75); }
  100% { text-shadow: 0 0 6px rgba(212, 175, 55, 0.3); }
}

.palestra__numero {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.palestra__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.palestra__meta::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-dim);
}

.palestra__speaker-nome {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
}

.palestra h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.palestra__gancho {
  margin-bottom: 20px;
}

.palestra__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.palestra__gancho {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.palestra__checklist li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 10px;
}

.palestra__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.js .palestra__checklist li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js .palestra.is-visible .palestra__checklist li {
  opacity: 1;
  transform: translateY(0);
}

.palestra__checklist li:nth-child(1) { transition-delay: 0.05s; }
.palestra__checklist li:nth-child(2) { transition-delay: 0.09s; }
.palestra__checklist li:nth-child(3) { transition-delay: 0.13s; }
.palestra__checklist li:nth-child(4) { transition-delay: 0.17s; }
.palestra__checklist li:nth-child(5) { transition-delay: 0.21s; }

/* ---------- Jornada do dia ---------- */

.jornada {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.jornada .section-title { margin-bottom: 48px; }

.jornada__track {
  position: relative;
  max-width: 640px;
}

.jornada__lista {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jornada__cometa {
  display: none;
}

.jornada__lista::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: rgba(212, 175, 55, 0.18);
}

.jornada__lista li {
  position: relative;
  padding: 0 0 32px 28px;
}

.jornada__lista li:last-child { padding-bottom: 0; }

.jornada__dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--black);
}

.jornada__hora {
  display: block;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.jornada__lista h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.jornada__lista p {
  font-size: 14px;
  color: var(--ink-dim);
}

/* Scroll-scrubbed line + comet, native CSS scroll-driven animations.
   Ignored entirely by browsers without support, keeping the
   IntersectionObserver reveal above as the guaranteed baseline. */
@supports (animation-timeline: view()) {
  .jornada__track {
    view-timeline-name: --jornada-track;
    view-timeline-axis: block;
  }

  .jornada__track::before {
    content: "";
    position: absolute;
    left: 3.5px;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #fff2c2, var(--gold));
    box-shadow: 0 0 16px 2px rgba(212, 175, 55, 0.6);
    transform-origin: top;
    transform: scaleY(0);
    animation: jornada-draw-line linear both;
    animation-timeline: --jornada-track;
    animation-range: cover 0% cover 88%;
  }

  .jornada__cometa {
    display: block;
    position: absolute;
    left: -3px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, var(--gold) 45%, rgba(212, 175, 55, 0) 75%);
    box-shadow: 0 0 22px 6px rgba(212, 175, 55, 0.55), 0 0 44px 16px rgba(212, 175, 55, 0.22);
    opacity: 0;
    animation: jornada-comet-travel linear both;
    animation-timeline: --jornada-track;
    animation-range: cover 0% cover 88%;
  }

  .jornada__lista li {
    view-timeline-name: --jornada-step;
    view-timeline-axis: block;
  }

  .jornada__lista li.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: jornada-step-in linear both;
    animation-timeline: --jornada-step;
    animation-range: entry 0% entry 60%;
  }

  .jornada__dot {
    animation: jornada-dot-light linear both;
    animation-timeline: --jornada-step;
    animation-range: entry 0% entry 60%;
  }

  @keyframes jornada-draw-line {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }

  @keyframes jornada-comet-travel {
    0% { top: 0%; opacity: 1; }
    92% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }

  @keyframes jornada-step-in {
    from { opacity: 0; transform: translateY(28px) scale(0.94); filter: blur(4px); }
    65% { filter: blur(0); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }

  @keyframes jornada-dot-light {
    0% {
      background: var(--black-soft);
      box-shadow: 0 0 0 4px var(--black);
      transform: scale(0.75);
    }
    55% {
      background: var(--black-soft);
      box-shadow: 0 0 0 4px var(--black);
      transform: scale(0.75);
    }
    72% {
      background: var(--gold);
      box-shadow: 0 0 0 4px var(--black), 0 0 18px 5px rgba(212, 175, 55, 0.75);
      transform: scale(1.5);
    }
    100% {
      background: var(--gold);
      box-shadow: 0 0 0 4px var(--black), 0 0 8px 2px rgba(212, 175, 55, 0.4);
      transform: scale(1);
    }
  }
}

/* ---------- FAQ ---------- */

.faq {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black-soft);
}

.faq .section-title { margin-bottom: 40px; }

.faq__lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.faq__item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:last-child { border-bottom: none; }

.faq__item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.faq__item p {
  font-size: 14px;
  color: var(--ink-dim);
}

/* ---------- Logistica ---------- */

.logistica {
  padding: 64px 0;
}

.logistica__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.logistica__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.logistica__content p {
  color: var(--ink-dim);
  margin: 18px 0 26px;
  max-width: 520px;
}

.logistica__lista li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--ink-dim);
}

.logistica__lista li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.logistica__lista strong { color: var(--white); font-weight: 600; }

/* ---------- Oferta ---------- */

.oferta {
  padding: 64px 0 96px;
  text-align: center;
}

/* Inversão tipográfica no fechamento: serif de display no rótulo
   e sans no título, invertendo a hierarquia usada no resto da página. */
.oferta .section-kicker {
  font-family: var(--font-title);
  font-size: clamp(26px, 6.4vw, 40px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.oferta .section-title {
  font-family: var(--font-sub);
  font-size: clamp(14px, 2.4vw, 17px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 480px;
}

.oferta__content .section-title { margin: 0 auto 44px; }

.oferta__card {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 48px 36px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.07), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Spotlight hover, shared across all card-style components */
.pilar::after,
.publico__card::after,
.oferta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.16), transparent 70%);
}

.pilar:hover::after,
.publico__card:hover::after,
.oferta__card:hover::after {
  opacity: 1;
}

/* ---------- Contador ---------- */

.countdown {
  max-width: 460px;
  margin: 0 auto 36px;
}

.countdown__label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}

.countdown__grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.countdown__unit {
  min-width: 68px;
  padding: 12px 8px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.04);
}

.countdown__num {
  display: block;
  font-family: var(--font-sub);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  /* Largura fixa por dígito, senão a caixa "pula" a cada segundo */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.countdown__cap {
  display: block;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 7px;
}

.countdown__deadline {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 16px;
}

.countdown.is-over .countdown__grid { display: none; }

/* ---------- Oferta ---------- */

.oferta__label {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}

.oferta__ancora {
  font-family: var(--font-sub);
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 4px;
}

.oferta__ancora s {
  text-decoration-color: rgba(212, 175, 55, 0.75);
  text-decoration-thickness: 1px;
}

.oferta__economia {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: 8px;
}

.oferta__preco {
  font-family: var(--font-title);
  font-size: clamp(30px, 9vw, 42px);
  color: var(--gold);
  font-weight: 700;
}

.oferta__preco span { font-size: 0.5em; }

.oferta__nota {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 14px 0 30px;
}

.oferta__ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* ---------- Footer ---------- */

.footer {
  padding: 32px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

.footer__nota {
  font-size: 12px;
  color: var(--ink-dim);
}

/* ---------- CTA Flutuante ---------- */

.cta-float {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.cta-float.is-visible {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .cta-float { display: none; }
}

/* ---------- Hero entrance (pure CSS, no JS dependency) ---------- */

.hero-enter {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__brand.hero-enter { animation-delay: 0s; }
.eyebrow.hero-enter { animation-delay: 0.05s; }
.hero__subheading.hero-enter { animation-delay: 0.4s; }
.hero__tags-wrap.hero-enter { animation-delay: 0.5s; }
.btn.hero-enter { animation-delay: 0.62s; }
.hero__meta.hero-enter { animation-delay: 0.74s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Reveal on scroll ----------
   Falls back to fully visible (no-js safety net) if the JS that
   toggles .is-visible never runs. */

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cascade for grid items */

.pilares__grid .pilar:nth-child(1) { transition-delay: 0ms; }
.pilares__grid .pilar:nth-child(2) { transition-delay: 90ms; }
.pilares__grid .pilar:nth-child(3) { transition-delay: 180ms; }
.pilares__grid .pilar:nth-child(4) { transition-delay: 270ms; }
.pilares__grid .pilar:nth-child(5) { transition-delay: 360ms; }

.jornada__lista li:nth-child(1) { transition-delay: 0ms; }
.jornada__lista li:nth-child(2) { transition-delay: 70ms; }
.jornada__lista li:nth-child(3) { transition-delay: 140ms; }
.jornada__lista li:nth-child(4) { transition-delay: 210ms; }
.jornada__lista li:nth-child(5) { transition-delay: 280ms; }
.jornada__lista li:nth-child(6) { transition-delay: 350ms; }
.jornada__lista li:nth-child(7) { transition-delay: 420ms; }

.faq__lista .faq__item:nth-child(1) { transition-delay: 0ms; }
.faq__lista .faq__item:nth-child(2) { transition-delay: 70ms; }
.faq__lista .faq__item:nth-child(3) { transition-delay: 140ms; }
.faq__lista .faq__item:nth-child(4) { transition-delay: 210ms; }
.faq__lista .faq__item:nth-child(5) { transition-delay: 280ms; }

.js .palestra {
  transform: translateY(32px) scale(0.97);
}

.js .palestra.is-visible {
  transform: translateY(0) scale(1);
}

.js .pilar {
  transform: translateY(24px) scale(0.96);
}

.js .pilar.is-visible {
  transform: translateY(0) scale(1);
}

.js .oferta__card {
  transform: translateY(32px) scale(0.95);
}

.js .oferta__card.is-visible {
  transform: translateY(0) scale(1);
}

/* ---------- Desktop layout ---------- */

@media (min-width: 860px) {
  .hero {
    min-height: 92svh;
    padding: 100px 0 60px;
  }

  .hero__content {
    max-width: 1040px;
  }

  .hero__brand {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .eyebrow {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: clamp(36px, 3.6vw, 46px);
    margin-bottom: 22px;
  }

  .hero__subheading {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .hero__tags {
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero__tags li {
    font-size: 13px;
    padding: 10px 20px;
  }

  .hero__meta {
    margin-top: 24px;
    font-size: 14px;
  }

  .sobre {
    padding: 110px 0;
  }

  .sobre__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .sobre__content {
    order: 1;
  }

  .sobre__foto {
    order: 2;
  }

  .pilares {
    padding: 110px 0;
  }

  .publico {
    padding: 110px 0;
  }

  .publico__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .palestras {
    padding: 110px 0 8px;
  }

  .palestra {
    padding: 72px 0;
  }

  .palestra:first-of-type {
    margin-top: 40px;
  }

  .palestra__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .palestra__foto {
    order: 2;
  }

  .palestra__content {
    order: 1;
  }

  .palestra--reverse .palestra__foto {
    order: 1;
  }

  .palestra--reverse .palestra__content {
    order: 2;
  }

  .jornada {
    padding: 110px 0;
  }

  .faq {
    padding: 110px 0;
  }

  .logistica {
    padding: 110px 0;
  }

  .logistica__grid {
    grid-template-columns: 1fr 1fr;
  }

  .oferta {
    padding: 110px 0 150px;
  }

  .oferta__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .footer {
    padding: 40px 0 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .palestra, .js .pilar, .js .oferta__card { transform: none; }
  .js .palestra__checklist li { opacity: 1; transform: none; transition: none; }
  .hero-enter { opacity: 1; transform: none; animation: none; }
  .hero__bg, .hero__bg::before { opacity: 1; transform: none; animation: none; }
  .sobre::before, .pilares::before, .publico::before, .palestras::before,
  .jornada::before, .logistica::before, .faq::before, .oferta::before {
    opacity: 1;
    filter: none;
    animation: none;
  }
  .sobre::after, .pilares::after, .publico::after, .palestras::after,
  .jornada::after, .logistica::after, .faq::after, .oferta::after {
    opacity: 0.13;
    filter: none;
    animation: none;
  }
  .hero__title .word { opacity: 1; transform: none; animation: none; }
  .hero__tags-track { animation: none; }
  .hero__scrollcue span { animation: none; }
  /* Sem o ponteiro de segundos piscando; o JS passa a atualizar por minuto. */
  .countdown__unit--sec { display: none; }
  .jornada__track::before { animation: none; transform: none; }
  .jornada__cometa { animation: none; display: none; }
  .jornada__lista li.reveal { animation: none; }
  .jornada__dot { animation: none; }
  .js .publico__label .word { opacity: 1; transform: none; animation: none; }
  .js .palestra.is-visible .palestra__numero { animation: none; }
  .pilar::after, .publico__card::after, .oferta__card::after { transition: none; }
}
