/* ============================================================
   WORKSHOP 03/09 · V2 CLARA E FESTIVA
   Herda tokens de ../../../_TEMPLATE/design-system.css e sobrescreve
   para tema claro (creme + laranja), inspirado nas referências
   Educture (creme/laranja), Consulting (passos numerados) e Vita
   (shapes assimétricos).
   Mobile-first. Breakpoints em min-width.
   ============================================================ */

:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* base clara */
  --cream:       #FFF6EE;
  --cream-deep:  #FDE9D8;
  --paper:       #FFFFFF;
  --ink:         #1B1410;
  --ink-soft:    #6B5D53;
  --ink-faint:   #9C8E84;

  /* acentos */
  --o:           #ED5300;
  --o-light:     #F97316;
  --o-soft:      #FFE2CC;
  --amber:       #FFB44D;
  --amber-soft:  #FFEFD2;
  --deep:        #2A1A12;

  --line:        rgba(27, 20, 16, 0.10);
  --shadow-soft: 0 18px 44px rgba(120, 62, 20, 0.10);
  --shadow-lift: 0 26px 60px rgba(120, 62, 20, 0.16);

  --container-narrow: 860px;

  /* shapes assimétricos (ref Vita) */
  --leaf: 44px 12px 44px 12px;
  --leaf-lg: 72px 18px 72px 18px;
}

/* o marquee é rotacionado e escalado, o que empurra ~6px para fora.
   sem isto o celular ganha uma barra de rolagem horizontal. */
html { scroll-behavior: smooth; overflow-x: hidden; }

body.theme-light {
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

.container--narrow { max-width: var(--container-narrow); }

/* headings do design system são uppercase e claros: reescreve p/ tema claro */
.theme-light .heading-lg,
.theme-light .heading-xl,
.theme-light .heading-md {
  color: var(--ink);
  text-transform: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.theme-light .heading-lg { font-size: clamp(28px, 5.2vw, 46px); line-height: 1.08; }
.theme-light .body-lg { color: var(--ink-soft); }
.theme-light .label { color: var(--o); font-weight: 700; }

/* botões */
.theme-light .btn {
  font-size: 16px;
  padding: 15px 26px;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s ease, background 0.25s ease;
}
.theme-light .btn-primary {
  background: var(--o);
  color: #fff;
  box-shadow: 0 12px 26px rgba(237, 83, 0, 0.30);
}
.theme-light .btn-primary:hover {
  opacity: 1;
  background: #FF6412;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(237, 83, 0, 0.38);
}
/* seta dentro de círculo (ref Vita) */
.theme-light .btn-primary .material-symbols-rounded {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  padding: 4px;
  font-size: 18px;
  transition: transform 0.25s var(--ease-out);
}
.theme-light .btn-primary:hover .material-symbols-rounded { transform: translateX(3px); }

.theme-light .badge {
  background: var(--o-soft);
  color: #A63B00;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  padding: 7px 14px;
}

/* -----------------------------------------------------------
   AMBIENTE: luz quente + bolinhas
   ----------------------------------------------------------- */
.sunlight { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.sunlight__blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
}

.sunlight__blob--1 {
  width: 62vw; height: 62vw; max-width: 760px; max-height: 760px;
  top: -20vw; right: -20vw;
  background: radial-gradient(circle, rgba(255, 180, 77, 0.55), transparent 68%);
  animation: float1 20s ease-in-out infinite alternate;
}
.sunlight__blob--2 {
  width: 54vw; height: 54vw; max-width: 640px; max-height: 640px;
  top: 42%; left: -26vw;
  background: radial-gradient(circle, rgba(237, 83, 0, 0.22), transparent 70%);
  animation: float2 26s ease-in-out infinite alternate;
}
.sunlight__blob--3 {
  width: 46vw; height: 46vw; max-width: 540px; max-height: 540px;
  bottom: -16vw; right: -10vw;
  background: radial-gradient(circle, rgba(255, 196, 120, 0.45), transparent 72%);
  animation: float1 24s ease-in-out infinite alternate-reverse;
}

@keyframes float1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-5%, 7%, 0) scale(1.12); } }
@keyframes float2 { from { transform: translate3d(0,0,0) scale(1.05); } to { transform: translate3d(7%, -5%, 0) scale(0.94); } }

.dots-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(237, 83, 0, 0.14) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 85% 55% at 50% 0%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 55% at 50% 0%, #000 15%, transparent 72%);
}

main, .footer, .topbar, .sticky-cta, .marquee { position: relative; z-index: 1; }

/* -----------------------------------------------------------
   REVEAL
   ----------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .sunlight__blob, .marquee__track, .hero__confetti { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* -----------------------------------------------------------
   TOPBAR
   ----------------------------------------------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.topbar.scrolled {
  background: rgba(255, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 26px rgba(120, 62, 20, 0.12);
  padding-block: 10px;
}
/* container--wide só limita a largura, não dá padding: sem isto o logo
   encosta na borda da tela no celular. */
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); margin-inline: auto;
  padding-inline: var(--container-padding);
}
.topbar__logo img { height: 26px; width: auto; filter: brightness(0) saturate(100%); opacity: 0.88; }
.topbar__cta { display: none; }

/* -----------------------------------------------------------
   PILL
   ----------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--o-soft);
  box-shadow: 0 6px 18px rgba(120, 62, 20, 0.08);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.pill b { color: var(--o); font-weight: 800; }
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--o);
  box-shadow: 0 0 0 0 rgba(237, 83, 0, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(237, 83, 0, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(237, 83, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 83, 0, 0); }
}

/* -----------------------------------------------------------
   HERO
   ----------------------------------------------------------- */
.hero { padding-top: 104px; padding-bottom: var(--space-12); }

.hero__inner {
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: grid;
  gap: var(--space-12);
}

.hero__content { display: grid; gap: var(--space-5); justify-items: start; }

/* corpo calibrado para "Uma noite para você" caber em uma linha só,
   do 360px de largura até o desktop. Não aumentar sem testar a quebra. */
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(27px, 7.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  white-space: nowrap;
}

/* marca de destaque tipo grifo (ref Educture) */
.hero__title-mark {
  position: relative;
  display: inline-block;
  color: var(--o);
}
.hero__title-mark::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 0.06em;
  height: 0.30em;
  background: var(--amber);
  opacity: 0.42;
  border-radius: 6px;
  z-index: -1;
  transform: rotate(-0.6deg);
}

.hero__sub {
  font-size: clamp(16px, 4.2vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
}
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 700; color: var(--ink);
}
.chip .material-symbols-rounded { font-size: 18px; color: var(--o); }
.chip--prize { background: var(--amber-soft); border-color: rgba(255, 180, 77, 0.55); }
.chip--prize .material-symbols-rounded { color: #C2410C; }

/* countdown */
.countdown {
  width: 100%;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid; gap: var(--space-3);
}
.countdown__title {
  font-family: var(--font-label);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-faint);
}
.countdown__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.countdown__item {
  display: grid; gap: 2px; justify-items: center;
  padding: 12px 4px;
  border-radius: var(--radius-md);
  background: var(--cream);
}
.countdown__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1;
  color: var(--o);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint);
}
.countdown--over .countdown__num { color: var(--ink-faint); }

.hero__actions { display: grid; gap: var(--space-4); justify-items: start; width: 100%; }
.hero__cta { width: 100%; justify-content: center; font-size: 17px; padding-block: 18px; }
.hero__scarcity {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
}
.hero__scarcity .material-symbols-rounded { font-size: 18px; color: var(--o); }

/* VISUAL: foto sobre blob (ref Educture + Vita) */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding-block: var(--space-6);
}

.hero__blobshape {
  position: absolute;
  width: min(86%, 400px);
  aspect-ratio: 1 / 1.06;
  background: linear-gradient(150deg, var(--o) 0%, #FF7A29 62%, var(--amber) 100%);
  border-radius: 58% 42% 47% 53% / 46% 44% 56% 54%;
  animation: morph 14s ease-in-out infinite alternate;
  box-shadow: 0 30px 70px rgba(237, 83, 0, 0.30);
}
@keyframes morph {
  from { border-radius: 58% 42% 47% 53% / 46% 44% 56% 54%; transform: rotate(-2deg); }
  to   { border-radius: 44% 56% 60% 40% / 55% 48% 52% 45%; transform: rotate(3deg); }
}

/* quadrados concêntricos decorativos (ref Educture) */
.hero__confetti {
  position: absolute;
  border: 2px solid rgba(237, 83, 0, 0.30);
  border-radius: 8px;
  animation: spin 18s linear infinite;
}
.hero__confetti--a { width: 46px; height: 46px; top: 6%; left: 4%; }
.hero__confetti--b { width: 30px; height: 30px; bottom: 16%; left: 0; border-color: rgba(255, 180, 77, 0.75); animation-duration: 13s; animation-direction: reverse; }
.hero__confetti--c { width: 60px; height: 60px; top: 12%; right: 2%; border-color: rgba(255, 180, 77, 0.6); animation-duration: 22s; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__photo {
  position: relative;
  width: min(78%, 360px);
}
.hero__photo img {
  width: 100%; height: auto;
  border-radius: 50% 50% 24px 24px;
  filter: drop-shadow(0 22px 40px rgba(80, 40, 10, 0.28));
}

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lift);
  animation: bob 5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--ink); line-height: 1.15; }
.float-card span:not(.float-card__icon):not(.float-card__pulse) { font-size: 11.5px; color: var(--ink-faint); font-weight: 600; }
.float-card__icon { font-size: 20px; color: var(--o); }
.float-card__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #16A34A; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
}
.float-card--date  { top: 2%; right: -2%; animation-delay: 0.2s; }
.float-card--free  { top: 30%; left: -6%; animation-delay: 1.1s; }

/* selo do sorteio ao lado do professor */
.hero__seal {
  position: absolute;
  z-index: 3;
  bottom: -2%;
  right: -6%;
  width: min(56%, 260px);
  height: auto;
  transform: rotate(-6deg);
  filter: drop-shadow(0 18px 34px rgba(40, 25, 60, 0.35));
  animation: bob 5.5s ease-in-out infinite;
  animation-delay: 1.4s;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* -----------------------------------------------------------
   HERO NO CELULAR
   O hero empilhado ficava alto demais: o CTA caía muito abaixo da
   dobra e o selo colidia com a foto. Aqui a densidade é reduzida,
   o visual encolhe e cada elemento ganha posição própria.
   ----------------------------------------------------------- */
@media (max-width: 767px) {
  .hero { padding-top: 78px; padding-bottom: var(--space-2); }
  .hero__inner { gap: var(--space-5); }
  .hero__content { gap: var(--space-4); }

  /* o visual vai para o topo: rosto e selo são o gancho comercial,
     o texto entra logo abaixo já com a promessa. */
  .hero__visual { order: -1; }

  .pill { font-size: 11.5px; padding: 7px 13px; gap: 7px; }
  .pill b { display: block; }

  .hero__title { letter-spacing: -0.04em; }
  .hero__sub { font-size: 14.5px; line-height: 1.5; }

  /* chips em 2 colunas, sem quebrar palavra no meio */
  .hero__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; width: 100%; }
  .chip {
    padding: 8px 10px;
    font-size: 11.5px;
    line-height: 1.25;
    gap: 6px;
    align-items: flex-start;
  }
  .chip .material-symbols-rounded { font-size: 16px; }
  .chip--prize { grid-column: 1 / -1; }

  /* countdown mais compacto e depois do botão, para o CTA subir */
  .hero__actions { order: 1; }
  .countdown { order: 2; padding: var(--space-4); gap: 10px; }
  .countdown__item { padding: 9px 2px; }
  .countdown__num { font-size: 26px; }
  .countdown__label { font-size: 9.5px; }

  .hero__cta { padding-block: 16px; font-size: 16px; }
  .hero__scarcity { font-size: 12.5px; align-items: flex-start; }
  .hero__scarcity .material-symbols-rounded { margin-top: 1px; }

  /* Palco do visual: foto à esquerda com o blob atrás, selo grande
     entrando pela direita e a data no alto. Altura fixa para o texto
     começar cedo e o CTA não afundar. */
  .hero__visual {
    position: relative;
    display: block;
    height: 292px;
    padding: 0;
    margin: 0 calc(var(--container-padding) * -0.5);
  }

  .hero__photo {
    position: absolute;
    left: 4%;
    bottom: 0;
    width: 54%;
    max-width: 210px;
  }
  .hero__photo img { border-radius: 46% 46% 20px 20px; }

  .hero__blobshape {
    position: absolute;
    left: 0;
    bottom: 6%;
    width: 64%;
    max-width: 250px;
    transform: none;
  }

  .float-card { padding: 8px 11px; gap: 8px; border-radius: 14px; }
  .float-card strong { font-size: 12.5px; }
  .float-card span:not(.float-card__icon):not(.float-card__pulse) { font-size: 10.5px; }
  .float-card__icon { font-size: 17px; }
  .float-card--date { top: 2%; right: 3%; }
  /* o chip "100% gratuito" já diz isso logo acima: evita repetir */
  .float-card--free { display: none; }

  /* selo em destaque, entrando por cima da base da foto */
  .hero__seal {
    width: 62%;
    max-width: 245px;
    right: 0;
    bottom: -1%;
    transform: rotate(-4deg);
  }

  .hero__confetti--a { width: 28px; height: 28px; top: 12%; left: 2%; }
  .hero__confetti--b { width: 18px; height: 18px; bottom: 8%; left: 8%; }
  .hero__confetti--c { display: none; }

  /* respiro entre blocos, o hero estava longo demais */
  .marquee { margin-block: var(--space-5); }
  .section { padding-block: var(--space-12); }
  .section__header { margin-bottom: var(--space-8); }
}

@media (max-width: 380px) {
  .hero__photo { width: 62%; }
  .hero__seal { width: 60%; }
  .float-card strong { font-size: 12px; }
}

/* -----------------------------------------------------------
   MARQUEE
   ----------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--o);
  padding-block: 13px;
  transform: rotate(-1deg) scale(1.03);
  margin-block: var(--space-8);
}
.marquee__track {
  display: flex; align-items: center; gap: 22px;
  width: max-content;
  animation: slide 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; white-space: nowrap;
}
.marquee__track i { color: rgba(255, 255, 255, 0.6); font-style: normal; font-size: 12px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* -----------------------------------------------------------
   SEÇÕES
   ----------------------------------------------------------- */
.section { padding-block: var(--space-20); }
.section--cream { background: var(--paper); }

.section__header { text-align: center; margin-bottom: var(--space-12); display: grid; gap: var(--space-3); justify-items: center; }
.section__lead { max-width: 56ch; }

/* -----------------------------------------------------------
   DOR x MÉTODO (2 colunas, contraste dentro da paleta)
   Esquerda escura, direita clara. Sem azul, laranja como acento.
   ----------------------------------------------------------- */
.split__grid { display: grid; gap: var(--space-5); }

.split__card {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--leaf-lg);
}

.split__card--pain {
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow-lift);
}
.split__card--fix {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.split__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(24px, 6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.split__card--pain .split__title { color: #fff; }
.split__card--fix .split__title { color: var(--ink); }
.split__title-mark { color: var(--o); }

.split__list { list-style: none; display: grid; gap: 12px; }
.split__list li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  line-height: 1.5;
}
.split__list li::before {
  position: absolute;
  left: 0; top: 1px;
  width: 21px; height: 21px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.split__list--no li::before {
  content: '✕';
  background: rgba(220, 38, 38, 0.14);
  color: #E24C4C;
}
.split__list--yes li::before {
  content: '✓';
  background: rgba(22, 163, 74, 0.14);
  color: #16A34A;
}
.split__card--pain .split__list li { color: rgba(255, 255, 255, 0.86); }
.split__card--fix .split__list li { color: var(--ink-soft); }

.split__foot {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.split__foot strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--amber);
  margin-bottom: 6px;
}
.split__foot p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }

.split__bridge {
  margin: var(--space-6) 0 var(--space-4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}

.split__cta { margin-top: var(--space-10); display: grid; justify-items: center; }
.split__cta .btn { width: 100%; max-width: 420px; justify-content: center; font-size: 17px; padding-block: 18px; }

/* -----------------------------------------------------------
   PILARES + ACELERADORES
   ----------------------------------------------------------- */
.pillars { display: grid; gap: var(--space-5); }

.pillar {
  position: relative;
  padding: var(--space-8) var(--space-6) var(--space-6);
  border-radius: var(--leaf-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pillar__idx {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--o-soft);
  color: #A63B00;
  font-family: var(--font-label);
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.pillar__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 18px;
  background: var(--o);
  color: #fff;
  font-size: 27px;
  margin-bottom: var(--space-4);
  box-shadow: 0 10px 22px rgba(237, 83, 0, 0.28);
}
.pillar h3 {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 20px; line-height: 1.2;
  color: var(--ink); margin-bottom: 8px;
}
.pillar p { font-size: 15px; line-height: 1.62; color: var(--ink-soft); }

.boosters { display: grid; gap: 12px; margin-top: var(--space-6); }
.booster {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-5);
  border-radius: var(--leaf);
  background: var(--cream);
  border: 1px solid var(--line);
}
.booster__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--o);
  font-size: 23px;
}
.booster h3 {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 16.5px; line-height: 1.25;
  color: var(--ink); margin-bottom: 5px;
}
.booster p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.booster__tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--o);
  color: #fff;
  font-family: var(--font-label);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.booster--bonus { background: #fff; border-color: rgba(237, 83, 0, 0.35); }
.booster--prize { background: linear-gradient(140deg, var(--amber-soft), #FFF8EC); border-color: rgba(255, 180, 77, 0.6); }
.booster--prize .booster__icon { color: #C2410C; }

/* -----------------------------------------------------------
   AGENDA DA NOITE (ref Consulting: passos ligados)
   ----------------------------------------------------------- */
.agenda { list-style: none; display: grid; gap: var(--space-4); counter-reset: passo; }

.agenda__item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-5);
  border-radius: var(--leaf);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.agenda__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

/* linha tracejada ligando os passos */
.agenda__item::before {
  content: '';
  position: absolute;
  left: calc(var(--space-5) + 26px);
  top: calc(var(--space-5) + 52px);
  bottom: -24px;
  border-left: 2px dashed rgba(237, 83, 0, 0.35);
}
.agenda__item:last-child::before { display: none; }

.agenda__dot {
  position: relative;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--o-soft);
  color: var(--o);
  counter-increment: passo;
}
.agenda__dot .material-symbols-rounded { font-size: 24px; }
.agenda__dot::after {
  content: counter(passo, decimal-leading-zero);
  position: absolute;
  bottom: -6px; right: -6px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--o);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 800;
  border: 2px solid #fff;
}

.agenda__body h3 {
  font-family: var(--font-heading);
  font-weight: 800; font-size: clamp(17px, 4.2vw, 21px);
  color: var(--ink); margin-bottom: 6px; line-height: 1.2;
}
.agenda__body p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

.agenda__item--finale {
  background: linear-gradient(135deg, var(--amber-soft), #FFF8EC);
  border-color: rgba(255, 180, 77, 0.6);
}
.agenda__item--finale .agenda__dot { background: #fff; color: #C2410C; }

/* -----------------------------------------------------------
   FAIXA DE NÚMEROS (ref Educture)
   ----------------------------------------------------------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
  padding: var(--space-8) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px dashed rgba(237, 83, 0, 0.30);
}
.numbers__item { text-align: center; display: grid; gap: 4px; }
.numbers__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1;
  color: var(--o);
  letter-spacing: -0.03em;
}
.numbers__label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }

/* -----------------------------------------------------------
   SORTEIO (selo em destaque)
   O selo carrega o peso visual. CSS só dá palco e movimento.
   ----------------------------------------------------------- */
.raffle { position: relative; overflow: hidden; }
.raffle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: min(120%, 900px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(237, 83, 0, 0.16), transparent 62%);
  pointer-events: none;
}
.raffle .container { position: relative; display: grid; gap: var(--space-8); justify-items: center; }

.raffle__figure {
  width: 100%;
  max-width: 520px;
  line-height: 0;
  animation: bob 6s ease-in-out infinite;
}
.raffle__figure img {
  width: 100%; height: auto;
  filter: drop-shadow(0 24px 44px rgba(40, 25, 60, 0.32));
}

.raffle__body { display: grid; gap: var(--space-4); justify-items: center; text-align: center; }
.raffle__text { font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 48ch; }
.raffle__body .btn { width: 100%; max-width: 420px; justify-content: center; font-size: 17px; padding-block: 18px; }
.raffle__bonus {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-4);
  align-items: center;
  width: 100%;
  padding: var(--space-5);
  border-radius: var(--leaf);
  background: linear-gradient(140deg, var(--amber-soft), #FFF8EC);
  border: 1px solid rgba(255, 180, 77, 0.65);
  text-align: left;
}
.raffle__bonus .material-symbols-rounded {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #C2410C;
  font-size: 22px;
}
.raffle__bonus strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800; font-size: 16px; line-height: 1.2;
  color: var(--ink); margin-bottom: 4px;
}
.raffle__bonus span:not(.material-symbols-rounded) {
  font-size: 14px; line-height: 1.5; color: var(--ink-soft);
}


/* -----------------------------------------------------------
   IVAN
   ----------------------------------------------------------- */
.prof { display: grid; gap: var(--space-10); align-items: center; }

/* foto original, sem máscara redonda e sem shape atrás:
   a imagem já traz o próprio fundo tratado. */
.prof__media { position: relative; justify-self: center; width: min(88%, 400px); }
.prof__media img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.prof__body { display: grid; gap: var(--space-3); }
.prof__name {
  font-family: var(--font-heading);
  font-weight: 800; font-size: clamp(26px, 6.5vw, 40px);
  letter-spacing: -0.03em; color: var(--ink); line-height: 1.05;
}
.prof__role { font-size: 14.5px; font-weight: 700; color: var(--o); }
.prof__lead { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.prof__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-2); }

/* -----------------------------------------------------------
   PARA QUEM É
   ----------------------------------------------------------- */
.who { display: grid; gap: var(--space-4); }
.who__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  border-radius: var(--leaf);
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 15.5px; line-height: 1.55; color: var(--ink);
  font-weight: 600;
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}
.who__item:hover { transform: translateX(6px); background: var(--o-soft); }
.who__item .material-symbols-rounded {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--o);
  font-size: 22px;
}
.who__close {
  margin-top: var(--space-10);
  padding: var(--space-6);
  border-radius: var(--leaf);
  background: var(--o-soft);
  text-align: center;
  display: grid; gap: 8px; justify-items: center;
  max-width: 62ch; margin-inline: auto;
}
.who__close p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.4;
  color: var(--ink);
}

/* -----------------------------------------------------------
   FAQ
   ----------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.is-open { box-shadow: var(--shadow-soft); border-color: rgba(237, 83, 0, 0.35); }
.faq-item__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 18px var(--space-5);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15.5px; text-align: left;
  color: var(--ink);
}
.faq-item__trigger .material-symbols-rounded {
  color: var(--o); flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.is-open .faq-item__trigger .material-symbols-rounded { transform: rotate(180deg); }
.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item__body p {
  padding: 0 var(--space-5) 18px;
  font-size: 15px; line-height: 1.65; color: var(--ink-soft);
}

/* -----------------------------------------------------------
   CTA FINAL
   ----------------------------------------------------------- */
.cta-final {
  padding-block: var(--space-20);
  text-align: center;
}
.cta-final .container { display: grid; gap: var(--space-5); justify-items: center; }
.cta-final__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 9vw, 62px);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--ink);
}
.cta-final__mark { color: var(--o); }
.cta-final__body { font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 50ch; }
.cta-final__btn { width: 100%; max-width: 420px; justify-content: center; font-size: 17px; padding-block: 18px; }
.cta-final__support { font-size: 13px; color: var(--ink-faint); font-weight: 600; }

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.footer {
  background: var(--deep);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: var(--space-8);
}
.footer__inner {
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: grid; gap: var(--space-6); justify-items: center; text-align: center;
}
.footer__logo { height: 30px; width: auto; }
.footer__info p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__links { display: flex; gap: var(--space-5); flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.75); border-bottom: 1px solid transparent; }
.footer__links a:hover { color: var(--amber); border-color: var(--amber); }
.footer__copy {
  margin-top: var(--space-8);
  text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* -----------------------------------------------------------
   STICKY
   ----------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 96;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 11px 14px;
  background: rgba(255, 246, 238, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease-out);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__info strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--ink); }
.sticky-cta__info span { font-size: 11.5px; color: var(--ink-faint); font-weight: 600; }
.sticky-cta__btn { font-size: 14px; padding: 12px 20px; }

body.modal-open { overflow: hidden; }

/* -----------------------------------------------------------
   MODAL
   ----------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 16px; }
/* o atributo hidden precisa vencer o display:grid, senão o modal invisível
   cobre a página inteira e engole todos os cliques */
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(27, 20, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.35s ease;
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__dialog {
  position: relative;
  width: 100%; max-width: 460px;
  max-height: 92vh; overflow-y: auto;
  padding: var(--space-8) var(--space-6);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 40px 90px rgba(60, 30, 8, 0.35);
  display: grid; gap: var(--space-4); justify-items: start;
  opacity: 0; transform: translateY(20px) scale(0.97);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-bounce);
}
.modal.is-open .modal__dialog { opacity: 1; transform: none; }

.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: var(--cream);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal__close:hover { background: var(--o-soft); color: var(--o); }

.form-card__title {
  font-family: var(--font-heading);
  font-weight: 800; font-size: clamp(24px, 6vw, 30px);
  letter-spacing: -0.03em; color: var(--ink); line-height: 1.1;
}
.form-card__sub { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

.form { width: 100%; display: grid; gap: var(--space-4); }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 15px; color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--o);
  background: #fff;
}
.field input.invalid, .field select.invalid { border-color: #DC2626; background: #FEF2F2; }

.form__error { font-size: 13px; font-weight: 600; color: #DC2626; }
.form__btn { width: 100%; justify-content: center; font-size: 16px; padding-block: 17px; }
.form__legal {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--ink-faint); line-height: 1.4;
}
.form__legal .material-symbols-rounded { font-size: 15px; }

/* -----------------------------------------------------------
   TABLET
   ----------------------------------------------------------- */
@media (min-width: 640px) {
  .numbers { grid-template-columns: repeat(4, 1fr); }
  .hero__cta { width: auto; }
}

@media (min-width: 768px) {
  .who { grid-template-columns: repeat(2, 1fr); }
  .split__grid { grid-template-columns: 1fr 1fr; align-items: start; gap: var(--space-6); }
  .split__card { padding: var(--space-10) var(--space-8); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .boosters { grid-template-columns: repeat(2, 1fr); }
  .booster { grid-template-columns: 1fr; gap: var(--space-3); }
  .split__cta .btn { width: auto; }
  .footer__inner { grid-template-columns: auto 1fr; align-items: center; text-align: left; justify-items: start; }
  .footer__links { justify-content: flex-end; }
}

/* -----------------------------------------------------------
   DESKTOP
   ----------------------------------------------------------- */
@media (min-width: 1024px) {
  .topbar__cta { display: inline-flex; font-size: 14px; padding: 12px 22px; }

  .hero { padding-top: 132px; padding-bottom: var(--space-16); }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: var(--space-16); }
  .hero__title { font-size: clamp(40px, 3.7vw, 56px); }
  .hero__seal { width: min(52%, 280px); right: -10%; }
  .countdown { max-width: 440px; }
  .hero__actions { grid-auto-flow: column; align-items: center; justify-items: start; width: auto; gap: var(--space-6); }
  .hero__scarcity { max-width: 24ch; }

  .agenda { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .agenda__item::before { display: none; }
  .agenda__item--finale { grid-column: 1 / -1; }

  .prof { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-16); }
  .prof__media { width: 100%; }

  .boosters { grid-template-columns: repeat(4, 1fr); }

  .raffle .container { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-16); }
  .raffle__figure { max-width: 100%; }
  .raffle__body { justify-items: start; text-align: left; }
  .raffle__body .btn { width: auto; }

  .sticky-cta { display: none; }

  .section { padding-block: var(--space-24); }
}

@media (min-width: 1280px) {
  .hero__photo { width: min(72%, 380px); }
  .float-card--date { right: 2%; }
  .float-card--free { left: 0; }
}
