/* ─────────────────────────────────────────────────────────────
   LÉO CASTRO · PROJETO OABEIROS · 28 PASSOS
   Identidade visual: HQ / cinema / pop, papel-creme + amarelo
   ───────────────────────────────────────────────────────────── */

:root {
  --paper:        #F2EAD8;
  --paper-deep:   #E8DEC6;
  --ink:          #1A1A1A;
  --ink-soft:     #2E2E2E;
  --muted:        #555060;     /* WCAG AA — 5.04:1 sobre #FFF */
  --muted-on-cream: #555060;   /* sobre #F2EAD8 → 4.56:1 ✅ */
  --line:         rgba(26, 26, 26, 0.12);
  --line-strong:  rgba(26, 26, 26, 0.22);

  --yellow:       #FFD93D;
  --yellow-deep:  #F1B900;
  --red:          #E63946;
  --red-deep:     #A41F2A;  /* AA — 5.7:1 sobre #FFF, 5.5:1 sobre #FFD93D, 5.9:1 sobre #E8DEC6 */
  --blue:         #1479FF;
  --green:        #29AA6D;
  --purple:       #5B3FAD;
  --navy:         #0B1840;
  --cream-warm:   #FFF1CC;

  --shadow-hard:  4px 4px 0 var(--ink);
  --shadow-hard-lg: 8px 8px 0 var(--ink);
  --shadow-soft:  0 18px 38px rgba(26, 26, 26, 0.10);

  --radius:       18px;
  --radius-sm:    12px;
  --maxw:         1240px;

  --font-display: "Anton", "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-ui:      "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-hand:    "Caveat", "Comic Sans MS", cursive;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 212, 59, 0.18), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(230, 57, 70, 0.10), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(20, 121, 255, 0.06), transparent 48%);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip {
  position: absolute; top: -100px; left: 16px; z-index: 100;
  padding: 10px 14px; background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 700;
}
.skip:focus { top: 14px; }

/* ───── Helpers ───── */
.hl       { background: linear-gradient(180deg, transparent 55%, var(--yellow) 55%); padding: 0 4px; }
.hl-yellow{ background: var(--yellow); color: var(--ink); padding: 2px 12px; border-radius: 8px; display: inline-block; transform: rotate(-1.5deg); }

.kicker {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.kicker-on-dark { color: var(--yellow); }

/* ───── Ticker ───── */
.ticker {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--yellow);
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 10px 0;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: ticker 38s linear infinite;
}
.ticker-track strong { color: var(--yellow); }
.ticker-track > span { padding: 0 4px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  /* mantém o ticker rolando, só MUITO mais lento (alguns iPhones têm
     "Reduzir Movimento" ligado por padrão e ficaria parado) */
  .ticker-track { animation-duration: 140s; }
}

/* ───── Nav ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(242, 234, 216, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-hard);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  transform: rotate(-3deg);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-links {
  display: inline-flex; gap: 22px; justify-self: end;
  font-weight: 700; font-size: 0.92rem; color: var(--ink-soft);
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--red); }

/* ───── Botões ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.96rem; font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn-primary {
  background: var(--red-deep); color: #fff;
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--red); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn-cta {
  background: var(--yellow); color: var(--ink);
  box-shadow: var(--shadow-hard);
  min-height: 42px; padding: 0 18px; font-size: 0.86rem;
}
.btn-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-dark {
  background: transparent; color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost-dark:hover { background: var(--paper); color: var(--ink); }

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: clamp(34px, 6vw, 70px) clamp(16px, 4vw, 48px) 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 2; }

.bubble {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 18px 10px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-hard);
  transform: rotate(-1deg);
  line-height: 1.2;
}
.bubble::after { display: none; }

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.hero-title .line { display: block; }
.hero-title .line-accent {
  color: var(--red);
}
.hero-title .hl-counter {
  display: inline-block;
  padding: 0 14px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 10px;
  transform: rotate(-1deg);
  margin: 4px 0 6px;
  line-height: 1.05;
  font-style: normal;
}

.hero-sub {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.hero-sub strong { color: var(--ink); background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 4px; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  max-width: 560px;
}
.hero-meta div {
  padding: 16px 14px 14px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
}
.hero-meta span {
  display: block; margin-top: 4px;
  font-size: 0.74rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em;
}

/* Poster */
.hero-poster {
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px 18px;
}
.poster-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-hard-lg);
  aspect-ratio: 3 / 4;
  transform: rotate(-1.5deg);
  /* overflow NÃO vai aqui — os badges precisam vazar pra fora do frame.
     A foto é clipada no <picture> interno, que herda o border-radius. */
}
.poster-frame > picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.poster-badge {
  position: absolute;
  display: grid; place-items: center;
  font-family: var(--font-display);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  text-align: center; line-height: 0.92;
  z-index: 2;
}
.poster-badge-1 {
  top: 18px; left: -18px;
  width: 100px; height: 100px;
  font-size: 2.05rem;
  transform: rotate(-12deg);
  background: var(--red-deep); color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}
.poster-badge-1 small {
  font-size: 0.7rem; font-family: var(--font-ui); font-weight: 900;
  letter-spacing: 0.14em; display: block; margin-top: 3px;
  color: #fff;
}
.poster-badge-2 {
  top: -18px; right: 22px;
  width: 78px; height: 78px;
  font-size: 0.92rem; font-family: var(--font-ui); font-weight: 900;
  letter-spacing: 0.04em;
  background: var(--yellow); color: var(--ink);
  transform: rotate(8deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.poster-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 8px 12px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.95rem; line-height: 1.05; letter-spacing: 0.06em;
  border-radius: 8px;
  border: 2px solid var(--yellow);
  z-index: 2;
}

/* Stripe rolando embaixo do hero */
.hero-stripe {
  margin-top: clamp(28px, 4vw, 50px);
  background: var(--ink);
  color: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  padding: 12px 0;
}
.hero-stripe span {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding-right: 32px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-stripe span { animation-duration: 140s; }
}

/* ───── Section heads ───── */
.section-head {
  max-width: 820px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 0.96;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--red); }
.section-head .lead {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.section-head-dark h2 { color: var(--paper); }
.section-head-dark .lead { color: rgba(242, 234, 216, 0.78); }
.section-head-dark .kicker { color: var(--yellow); }

/* ───── Cast (antes) ───── */
.cast {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 110px) clamp(16px, 4vw, 32px);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cast-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 22px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-hard-lg);
  align-items: center;
}
.cast-portrait {
  position: relative;
  width: 180px; height: 200px;
  background: var(--paper-deep);
  background-image: radial-gradient(circle at center, rgba(26,26,26,0.06) 1px, transparent 1px);
  background-size: 7px 7px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
}
.cast-portrait img {
  position: absolute;
  width: 75%; height: 75%;
  object-fit: cover; object-position: center top;
}
.cast-portrait img:first-child { left: 0; bottom: 0; z-index: 1; transform: rotate(-3deg) scale(1.05); }
.cast-portrait-second { right: 0; top: 0; transform: rotate(4deg) scale(1.05); z-index: 2; filter: drop-shadow(-4px 0 8px rgba(0,0,0,0.18)); }

.cast-body { padding: 4px 6px; }
.cast-tag {
  margin: 0 0 6px;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--red-deep);
}
.cast-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}
.cast-body p { margin: 0 0 10px; color: var(--ink-soft); font-size: 0.98rem; }
.cast-body strong { color: var(--ink); }
.cast-brand { margin-top: 14px; }
.cast-brand img {
  height: 32px; width: auto; max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(26,26,26,0.08));
}

/* ───── Audience (Pra quem é) ───── */
.audience {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 110px) clamp(16px, 4vw, 32px);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1040px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .audience-grid { grid-template-columns: 1fr; } }
.aud-card {
  padding: 26px 24px 28px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column;
  min-height: 240px;
}
.aud-card:nth-child(3n+1) { transform: rotate(-0.4deg); }
.aud-card:nth-child(3n+2) { transform: rotate(0.3deg); }
.aud-meta {
  display: inline-block;
  align-self: start;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.aud-card blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.aud-fix {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1.5px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.aud-fix strong { color: var(--ink); background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 4px; }
.audience-fine {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
}

/* ───── Turn (a virada) ───── */
.turn {
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.turn::before, .turn::after {
  content: "★";
  position: absolute;
  font-family: var(--font-display);
  color: var(--yellow);
  opacity: 0.12;
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 1;
  pointer-events: none;
}
.turn::before { top: -30px; left: -20px; }
.turn::after  { bottom: -80px; right: -20px; transform: rotate(18deg); }
.turn-inner { position: relative; max-width: 860px; margin: 0 auto; }
.turn-eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 0.84rem;
}
.turn-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.94;
}
.turn-title .hl {
  background: var(--yellow); color: var(--ink);
  padding: 0 14px; border-radius: 10px;
  display: inline-block; transform: rotate(-1deg);
}
.turn-text {
  margin: 26px auto 0;
  max-width: 720px;
  font-size: 1.14rem;
  color: rgba(242, 234, 216, 0.86);
}
.turn-text strong { color: var(--yellow); }
.turn-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }

/* ───── Método (4 pilares) ───── */
.method {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 110px) clamp(16px, 4vw, 32px);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.method-card {
  padding: 26px 22px 28px;
  background: var(--cream-warm);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  position: relative;
}
.method-card:nth-child(2) { background: #FFF; }
.method-card:nth-child(3) { background: var(--cream-warm); }
.method-card:nth-child(4) { background: #FFF; }

.method-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1; margin-bottom: 8px;
}
.method-card h3 {
  margin: 4px 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--ink);
}
.method-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.badge-alpha {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 8px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-ui); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 6px;
  vertical-align: middle;
}

/* ───── Cronograma ───── */
.schedule {
  background: linear-gradient(170deg, var(--ink) 0%, #1A1822 100%);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) clamp(16px, 4vw, 32px);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.t-item {
  padding: 22px;
  background: rgba(255, 246, 217, 0.06);
  border: 1.5px solid rgba(255, 212, 59, 0.30);
  border-radius: 16px;
  min-height: 200px;
  display: flex; flex-direction: column;
}
.t-item-strong {
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--yellow);
  box-shadow: 6px 6px 0 rgba(255, 212, 59, 0.18);
}
.t-date {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.t-item-strong .t-date { color: var(--red-deep); }
.t-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.05;
}
.t-item p {
  margin: auto 0 0;
  font-size: 0.92rem;
  color: rgba(242, 234, 216, 0.78);
}
.t-item-strong p { color: var(--ink-soft); }

/* ───── Planos ───── */
.plans {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) clamp(16px, 4vw, 32px);
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}
.plans-grid-single {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}
.plan-only {
  text-align: left;
}
.plan-only .plan-flag {
  left: 24px; right: auto;
}
.plan {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px clamp(24px, 3vw, 38px) 32px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow-hard-lg);
}
.plan-alpha {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  color: var(--paper);
  border-color: var(--ink);
}
.plan-flag {
  position: absolute;
  top: -16px; right: 24px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 0.76rem;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(3deg);
  box-shadow: var(--shadow-hard);
}
.plan-head { margin-bottom: 18px; }
.plan-tag {
  margin: 0 0 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.plan-alpha .plan-tag { color: var(--yellow); }
.plan-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: inherit;
}
.plan-price {
  margin: 4px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  line-height: 0.96;
  color: inherit;
}
.plan-price .cur {
  font-size: 0.4em; vertical-align: top;
  margin-right: 6px; opacity: 0.7;
}
.plan-alpha .plan-price { color: var(--yellow); }
.plan-note {
  margin: 6px 0 22px;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.plan-alpha .plan-note { color: rgba(242, 234, 216, 0.82); }

.plan-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.plan-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.plan-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  border-radius: 50%;
  font-size: 0.78rem; font-weight: 900;
  line-height: 1;
}
.plan-alpha .plan-list li { color: rgba(242, 234, 216, 0.92); }
.plan-alpha .plan-list li::before { background: var(--yellow); color: var(--ink); }

.plan-cta {
  width: 100%;
  margin-top: auto;
  font-size: 1.04rem;
  min-height: 58px;
}
.plan-alpha .plan-cta { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.plan-alpha .plan-cta:hover { box-shadow: 6px 6px 0 var(--paper); }

.plans-fine {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

/* ───── Depoimentos ───── */
.proof {
  background: var(--paper-deep);
  padding: clamp(72px, 9vw, 120px) clamp(16px, 4vw, 32px);
}
.proof-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.quote {
  margin: 0;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column;
  min-height: 240px;
  transform: rotate(0);
}
.quote:nth-child(3n+1) { transform: rotate(-0.6deg); }
.quote:nth-child(3n+2) { transform: rotate(0.5deg); }
.quote:nth-child(3n+3) { transform: rotate(-0.3deg); }
.q-yellow { background: var(--yellow); }
.q-paper  { background: #fff; }
.q-red    { background: var(--red-deep); color: #fff; }
.quote blockquote {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.45;
  color: inherit;
}
.quote blockquote strong { color: var(--ink); background: transparent; }
.q-yellow blockquote strong { color: var(--red-deep); }
.q-red strong,
.q-red blockquote strong { color: var(--yellow); background: transparent; }
.quote figcaption {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1.5px solid rgba(26, 26, 26, 0.15);
  display: grid; gap: 2px;
  font-size: 0.88rem;
}
.q-red figcaption { border-top-color: rgba(255, 255, 255, 0.35); }
.quote figcaption strong { font-size: 0.96rem; }
.quote figcaption span {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted);
}
.q-red figcaption span { color: rgba(255, 255, 255, 0.96); }

.proof-fine {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
}

/* ───── Signatures (LION etc) ───── */
.signatures {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 110px) clamp(16px, 4vw, 32px);
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sig-card {
  padding: 28px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-hard);
}
.sig-tag {
  margin: 0 0 4px;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--red-deep);
}
.sig-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.6rem; line-height: 1;
  color: var(--ink);
}
.sig-card p { margin: 0; color: var(--ink-soft); }
.sig-card strong { color: var(--ink); background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 4px; }

/* ───── Jogos (PWAs gratuitos) ───── */
.games {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(16px, 4vw, 32px);
  border-top: 2px solid var(--ink);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 0 auto 18px;
}
.game-card {
  position: relative;
  display: block;
  padding: 32px clamp(22px, 3vw, 34px);
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-hard-lg);
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.game-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 0 var(--ink);
}
.game-card:active { transform: translate(0,0); box-shadow: var(--shadow-hard); }
.game-emoji {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 6px;
}
.game-tag {
  margin: 0 0 4px;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--red-deep);
}
.game-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.4rem; line-height: 1;
  color: var(--ink);
}
.game-card p { margin: 0 0 18px; color: var(--ink-soft); }
.game-card strong { color: var(--ink); background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 4px; }
.game-cta {
  display: inline-block;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
}
.games-fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .games-grid { grid-template-columns: 1fr; }
}

/* ───── Professor ───── */
.prof {
  background: var(--cream-warm);
  padding: clamp(72px, 9vw, 120px) clamp(16px, 4vw, 32px);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.prof-card {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow-hard-lg);
  padding: clamp(28px, 4vw, 52px);
}
.prof-mug {
  position: relative;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--yellow);
  background-image: radial-gradient(circle at center, rgba(26,26,26,0.06) 1px, transparent 1px);
  background-size: 6px 6px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard-lg);
  overflow: hidden;
}
.prof-mug img {
  position: absolute;
  width: 105%; height: 105%; left: -2.5%; top: -2.5%;
  object-fit: cover; object-position: center top;
}
.prof-body h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
}
.prof-body p {
  margin: 0 0 12px;
  font-size: 1.04rem;
  color: var(--ink-soft);
}
.prof-body strong { color: var(--ink); }
.prof-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.prof-pills span {
  padding: 7px 14px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.04em;
}

/* ───── FAQ ───── */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 110px) clamp(16px, 4vw, 32px);
}
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--shadow-hard);
  transition: transform 160ms ease;
}
.faq-list details:hover { transform: translate(-1px, -1px); }
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
  font-size: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  font-family: var(--font-display);
  font-size: 1.6rem; line-height: 1; color: var(--red);
  transition: transform 200ms ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-list strong { color: var(--ink); }

/* ───── CTA final ───── */
.cta {
  background: var(--red);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 59, 0.18), transparent 35%),
    radial-gradient(circle at 88% 82%, rgba(26, 26, 26, 0.18), transparent 40%);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) clamp(16px, 4vw, 32px);
  text-align: center;
}
.cta-inner { max-width: 820px; margin: 0 auto; }
.cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.96;
}
.cta h2 em { font-style: italic; }
.cta-sub {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}
.cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 36px;
}
.cta .btn-primary { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
.cta .btn-primary:hover { box-shadow: 6px 6px 0 var(--ink); }

.publish-warning {
  max-width: 720px; margin: 22px auto;
  padding: 14px 18px;
  background: var(--yellow);
  border: 2px dashed var(--ink);
  border-radius: 12px;
  font-size: 0.9rem;
}
.publish-warning code { font-family: ui-monospace, Menlo, monospace; background: rgba(26,26,26,0.08); padding: 1px 6px; border-radius: 4px; }

/* ───── Footer ───── */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px clamp(16px, 4vw, 32px) 36px;
}
.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}
.foot-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.foot-brand span { color: var(--yellow); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer .foot-head {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.25;
}
.site-footer nav a, .site-footer div a {
  display: block;
  padding: 4px 0;
  color: rgba(242, 234, 216, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}
.site-footer nav a:hover, .site-footer div a:hover { color: var(--yellow); }
.foot-fine {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 234, 216, 0.14);
  font-size: 0.78rem;
  color: rgba(242, 234, 216, 0.56);
}

/* ───── Toast ───── */
.toast {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 100;
  max-width: 340px;
  padding: 14px 18px;
  background: var(--ink); color: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-hard);
}

/* ───── Responsivo ───── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-meta { margin-left: auto; margin-right: auto; }
  .hero-poster { min-height: auto; margin-top: 28px; }
  .cast-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .signature-grid { grid-template-columns: 1fr; }
  .prof-card { grid-template-columns: 1fr; text-align: center; }
  .prof-mug { margin: 0 auto; }
  .prof-pills { justify-content: center; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 16px; }
  .brand-text em { display: none; }
  .hero { padding-top: 26px; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .bubble { font-size: 1.3rem; }
  .hero-meta { grid-template-columns: 1fr; gap: 10px; }
  .hero-meta div { display: flex; align-items: baseline; gap: 12px; padding: 12px 14px; }
  .hero-meta strong { font-size: 1.5rem; }
  .hero-meta span { margin: 0; }
  .cast-card { grid-template-columns: 1fr; }
  .cast-portrait { width: 100%; height: 220px; margin: 0 auto; }
  .method-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .nav-cta { width: auto; }
  .hero-cta .btn, .cta-buttons .btn, .turn-cta .btn, .hero-actions .btn { min-width: 0; }
}
@media (max-width: 380px) {
  .ticker-track { font-size: 0.74rem; }
  .hero-stripe { font-size: 1.05rem; }
  .poster-badge-1 { width: 80px; height: 80px; font-size: 1.5rem; }
  .poster-badge-2 { width: 64px; height: 64px; font-size: 0.86rem; }
}

@media (prefers-reduced-motion: reduce) {
  /* desliga hover/transition decorativas mas PRESERVA tickers/marquees
     (são informacionais decorativos, não distraem mais do que outdoor). */
  a, button, details, summary, .btn, .nav-links a, .header-cta {
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto !important; }
}
