/* =========================================================
   Estrelas e Abismos — Landing Page
   Paleta extraída da capa: brasa, bordô, preto profundo, esmeralda mágico
   ========================================================= */

:root {
  /* Tons de fundo */
  --ink-0:        #050302;   /* preto da abissal */
  --ink-1:        #0a0604;   /* preto quente */
  --ink-2:        #14090a;   /* preto-vinho */
  --ink-3:        #1d0e0e;   /* vinho escuro */

  /* Quentes (do céu da capa) */
  --ember:        #c4501e;   /* brasa */
  --ember-glow:   #ff7a3c;   /* brasa luminosa */
  --bordo:        #6b1f1a;   /* bordô do manto */
  --rust:         #8a3322;   /* ferrugem */

  /* Frio mágico (do livro/olhos) */
  --emerald:      #2dbf85;   /* verde mágico */
  --emerald-glow: #5fffba;   /* esmeralda neon */
  --emerald-deep: #0e3a2a;   /* esmeralda profundo */

  /* Neutros */
  --bone:         #ecddc4;   /* osso/pergaminho */
  --bone-dim:     #c8b69a;   /* pergaminho desbotado */
  --gold:         #c9a85b;   /* ouro velho */

  /* Tipografia */
  --font-display: 'Pirata One', 'Cinzel', serif;
  --font-title:   'Cinzel', 'Cormorant Garamond', serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;

  /* Espaçamento */
  --container:    1240px;
  --radius:       4px;
  --tap:          44px;        /* tap target mínimo (Apple HIG / WCAG) */
  --safe-x:       max(28px, env(safe-area-inset-left));
  --safe-r:       max(28px, env(safe-area-inset-right));

  /* Sombras */
  --shadow-deep:  0 30px 60px -20px rgba(0,0,0,.85);
  --glow-emerald: 0 0 24px rgba(95, 255, 186, .35);
  --glow-ember:   0 0 28px rgba(255, 122, 60, .35);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;          /* evita boost de fonte iOS landscape */
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--bone);
  background: var(--ink-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent; /* sem flash azul iOS */
  overscroll-behavior-y: none;              /* sem bounce branco no Android */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: rgba(95,255,186,.15); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; color: var(--emerald-glow); }
strong { font-weight: 600; color: var(--bone); }
::selection { background: var(--emerald); color: var(--ink-0); }

/* =========================================================
   BACKGROUND FX
   ========================================================= */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(196, 80, 30, .25), transparent 55%),
    radial-gradient(ellipse at 110% 110%, rgba(45, 191, 133, .12), transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--ink-1), var(--ink-0) 70%);
}
#ember-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.bg-mist {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(107, 31, 26, .35), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(20, 9, 10, .8), transparent 60%);
  mix-blend-mode: screen; opacity: .6;
}
.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.7) 100%);
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.section { padding: clamp(80px, 12vw, 160px) 24px; position: relative; }
.section__head { max-width: var(--container); margin: 0 auto 64px; text-align: center; }
.section__kicker {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ember-glow);
  margin-bottom: 20px;
  font-weight: 600;
}
.section__title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--bone);
}
.section__title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--emerald-glow);
  text-shadow: 0 0 22px rgba(95, 255, 186, .35);
  letter-spacing: 0;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(5,3,2,.92) 0%, rgba(5,3,2,.55) 80%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding .3s ease, background .3s ease;
}
.nav.is-scrolled { padding: 12px 32px; background: rgba(5,3,2,.96); }
.nav__brand { display: flex; align-items: baseline; gap: 12px; }
.nav__brand-mark {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--ember-glow);
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bone);
  letter-spacing: .02em;
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color .2s ease;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--emerald-glow); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.nav__links a:hover { color: var(--emerald-glow); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--emerald);
  color: var(--emerald-glow);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.nav__cta svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav__cta:hover { background: var(--emerald); color: var(--ink-0); box-shadow: var(--glow-emerald); }
.nav__cta:hover svg { transform: translateX(3px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100dvh;                          /* dvh = altura real considerando URL bar */
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-title);
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--bone-dim); margin-bottom: 28px;
}
.eyebrow__diamond { color: var(--ember-glow); font-size: 10px; }

.hero__title { display: flex; flex-direction: column; line-height: .9; margin-bottom: 24px; }
.hero__title-pre {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  color: var(--bone);
  letter-spacing: 0;
  margin-bottom: -12px;
  text-shadow: 0 2px 30px rgba(0,0,0,.8);
}
.hero__title-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 9rem);
  background: linear-gradient(180deg, var(--bone) 0%, var(--ember) 60%, var(--bordo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .01em;
  text-shadow:
    0 0 40px rgba(196, 80, 30, .25);
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.6));
}

.hero__sub {
  font-family: var(--font-title);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  padding-left: 4px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--bone);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--emerald);
}

.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(236, 221, 196, .2);
  color: var(--bone-dim);
  border-radius: 100px;
  background: rgba(20, 9, 10, .4);
}
.chip--warn { color: var(--ember-glow); border-color: rgba(255, 122, 60, .4); background: rgba(196, 80, 30, .12); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-title);
  font-size: 13px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: all .25s ease;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: var(--ink-0);
  box-shadow: var(--glow-emerald), 0 8px 24px rgba(0,0,0,.4);
  border: 1px solid var(--emerald-glow);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--emerald-glow), var(--emerald));
  opacity: 0; transition: opacity .25s ease;
}
.btn--primary span, .btn--primary svg { position: relative; z-index: 1; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(95, 255, 186, .6), 0 12px 30px rgba(0,0,0,.5); }
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  border: 1px solid rgba(236, 221, 196, .25);
  color: var(--bone);
  background: rgba(20, 9, 10, .4);
}
.btn--ghost:hover { border-color: var(--emerald-glow); color: var(--emerald-glow); background: rgba(45, 191, 133, .08); }

.btn--lg { padding: 20px 38px; font-size: 14px; }
.btn--sm { padding: 12px 20px; font-size: 11px; }

/* IG do hero */
.hero__ig {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-title);
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--bone-dim); transition: color .2s ease;
}
.hero__ig svg { width: 18px; height: 18px; }
.hero__ig:hover { color: var(--emerald-glow); }

/* HERO VISUAL */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__cover-wrap {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 2 / 3.2;
  border-radius: 6px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
.hero__cover-wrap:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg) translateY(-8px); }

.hero__cover-glow {
  position: absolute; inset: -30px;
  background:
    radial-gradient(ellipse at center, rgba(95, 255, 186, .25), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 122, 60, .35), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}

.hero__cover {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 0 1px rgba(255, 122, 60, .15),
    inset 0 0 0 1px rgba(0,0,0,.3);
}

.hero__cover-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.1) 50%, transparent 70%);
  border-radius: 4px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-title);
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--bone-dim);
  opacity: .7;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--emerald-glow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.4); transform-origin: top; }
  50%      { transform: scaleY(1);  transform-origin: top; }
}

/* =========================================================
   SINOPSE
   ========================================================= */
.section--sinopse { background: linear-gradient(180deg, transparent 0%, rgba(20, 9, 10, .6) 50%, transparent 100%); }
.sinopse__grid {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
  text-align: left;
}
.sinopse__lead {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.55;
  color: var(--bone);
  font-weight: 500;
  text-align: center;
  padding: 0 0 16px;
  position: relative;
}
.sinopse__lead::after {
  content: '◆'; display: block;
  color: var(--ember-glow);
  font-size: 12px;
  margin-top: 28px;
  letter-spacing: .8em;
}
.sinopse__body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--bone-dim);
}
.sinopse__body .hl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3em;
  color: var(--emerald-glow);
  text-shadow: 0 0 18px rgba(95, 255, 186, .3);
}
.sinopse__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-top: 32px;
  padding: 32px;
  background: rgba(20, 9, 10, .5);
  border: 1px solid rgba(236, 221, 196, .08);
  border-radius: var(--radius);
}
.sinopse__features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem;
  color: var(--bone-dim);
}
.sinopse__features .diamond { color: var(--emerald-glow); font-size: 12px; line-height: 1.6; flex-shrink: 0; }

.sinopse__premissa {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--bone);
  font-weight: 500;
  padding: 8px 0 20px;
  position: relative;
}
.sinopse__premissa li {
  position: relative;
  padding: 0;
}
.sinopse__premissa li + li::before {
  content: '◆';
  display: block;
  color: var(--ember-glow);
  font-size: 9px;
  margin: 4px auto 8px;
  opacity: .55;
}
.sinopse__premissa::after {
  content: '◆'; display: block;
  color: var(--ember-glow);
  font-size: 12px;
  margin-top: 24px;
  letter-spacing: .8em;
}
.sinopse__kicker {
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--emerald-glow);
  font-weight: 500;
  margin-top: 8px;
  padding: 20px 24px;
  border-top: 1px solid rgba(95, 255, 186, .18);
  border-bottom: 1px solid rgba(95, 255, 186, .18);
  text-shadow: 0 0 16px rgba(95, 255, 186, .15);
}

/* =========================================================
   PERSONAGENS
   ========================================================= */
.chars {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.char {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(29, 14, 14, .9) 0%, rgba(20, 9, 10, .7) 100%);
  border: 1px solid rgba(236, 221, 196, .1);
  border-radius: var(--radius);
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  overflow: hidden;
}
.char::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.char:hover {
  border-color: rgba(95, 255, 186, .3);
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.7), 0 0 30px rgba(45, 191, 133, .15);
}
.char:hover::before { transform: scaleX(1); }

.char__rune {
  font-size: 32px;
  color: var(--emerald-glow);
  text-shadow: var(--glow-emerald);
  margin-bottom: 20px;
}
.char__name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 6px;
  line-height: 1;
}
.char__role {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ember-glow);
  margin-bottom: 18px;
}
.char__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bone-dim);
}

/* =========================================================
   TRECHO
   ========================================================= */
.section--trecho { background: linear-gradient(180deg, transparent 0%, rgba(14, 58, 42, .12) 100%); }
.trecho {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px clamp(28px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(20, 9, 10, .85), rgba(5, 3, 2, .9)),
    radial-gradient(circle at 50% 0%, rgba(45, 191, 133, .15), transparent 60%);
  border: 1px solid rgba(95, 255, 186, .15);
  border-radius: var(--radius);
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.85;
  color: var(--bone);
  font-style: italic;
}
.trecho::before {
  content: '◆';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink-1);
  padding: 0 16px;
  color: var(--emerald-glow);
  font-size: 14px;
  letter-spacing: .5em;
  font-style: normal;
}
.trecho p { margin-bottom: 20px; }
.trecho p:last-of-type { margin-bottom: 32px; }
.trecho__open, .trecho__close {
  position: absolute;
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--emerald);
  opacity: .25;
  line-height: 1;
  font-style: normal;
}
.trecho__open { top: 8px; left: 16px; }
.trecho__close { bottom: -32px; right: 16px; }
.trecho__cite {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ember-glow);
  font-style: normal;
  text-align: right;
  padding-top: 24px;
  border-top: 1px solid rgba(236, 221, 196, .1);
}
.trecho__cite cite { font-style: normal; color: var(--bone); }

.trecho__meta {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ember-glow);
  margin-top: 12px;
  opacity: .85;
}

.trecho__resto {
  animation: trechoFade .5s ease both;
}
@keyframes trechoFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.trecho__actions {
  display: flex; justify-content: center;
  margin-top: 28px;
}
.trecho__toggle {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-family: var(--font-title);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trecho__toggle svg {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.trecho__toggle.is-open svg { transform: rotate(180deg); }

/* =========================================================
   AUTORA
   ========================================================= */
.autora {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.autora__visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  aspect-ratio: 1 / 1;
}
.autora__avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 122, 60, .18),
    0 0 0 1px rgba(255, 122, 60, .15),
    var(--glow-ember);
}
.autora__avatar::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(236, 221, 196, .14);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.autora__img {
  width: 100%; height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.autora__sigil {
  position: absolute; bottom: -12px; right: 12%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-1);
  border: 1px solid var(--emerald);
  border-radius: 50%;
  color: var(--emerald-glow);
  font-size: 18px;
  box-shadow: var(--glow-emerald);
}
.autora__copy { display: flex; flex-direction: column; gap: 18px; }
.autora__copy .section__kicker { text-align: left; margin-bottom: 0; }
.autora__copy .section__title { text-align: left; font-family: var(--font-display); font-weight: 400; }
.autora__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--bone);
  font-weight: 500;
}
.autora__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-dim);
}
.autora__copy .btn { align-self: flex-start; margin-top: 10px; }

/* =========================================================
   AVISO +18
   ========================================================= */
.warn {
  padding: 60px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(107, 31, 26, .25) 50%, transparent 100%);
}
.warn__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 32px;
  background: rgba(20, 9, 10, .6);
  border: 1px solid rgba(255, 122, 60, .3);
  border-left: 3px solid var(--ember-glow);
  border-radius: var(--radius);
}
.warn__badge {
  flex-shrink: 0;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ember-glow);
  border: 2px solid var(--ember-glow);
  border-radius: 50%;
  background: rgba(196, 80, 30, .12);
  box-shadow: var(--glow-ember);
}
.warn__title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ember-glow);
  margin-bottom: 8px;
}
.warn__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bone-dim);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 24px;
  text-align: center;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(45, 191, 133, .18), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(196, 80, 30, .25), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(14, 58, 42, .15) 100%);
}
.cta-final__inner { position: relative; max-width: 780px; margin: 0 auto; }
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--bone);
  margin: 24px 0 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.cta-final__title em {
  background: linear-gradient(180deg, var(--emerald-glow), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  text-shadow: 0 0 30px rgba(95, 255, 186, .35);
}
.cta-final__sub {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--bone-dim);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__note {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 40px;
  opacity: .7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  padding: 80px 24px 40px;
  background: var(--ink-0);
  border-top: 1px solid rgba(236, 221, 196, .08);
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot__brand { display: flex; flex-direction: column; gap: 6px; }
.foot__mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bone);
  letter-spacing: .05em;
}
.foot__sub {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.foot__nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.foot__nav a {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color .2s ease;
}
.foot__nav a:hover { color: var(--emerald-glow); }
.foot__copy {
  text-align: right;
  font-size: .85rem;
  color: var(--bone-dim);
  line-height: 1.6;
}
.foot__small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: .9rem;
  color: var(--gold);
  opacity: .7;
}

/* =========================================================
   ANIMAÇÕES DE REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVO — TABLET (≤ 960px)
   ========================================================= */
@media (max-width: 960px) {
  .nav { padding: 14px 20px; padding-left: var(--safe-x); padding-right: var(--safe-r); }
  .nav__links { display: none; }
  .nav__brand-name { display: none; }

  .hero { padding: 100px 20px 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; order: 2; }   /* texto/CTAs depois */
  .hero__visual { order: 1; }                                                              /* capa primeiro */
  .hero__tagline { border-left: 0; border-top: 1px solid var(--emerald); padding: 16px 0 0; padding-left: 0; }
  .hero__cover-wrap { width: min(100%, 280px); transform: none; }
  .hero__cover-wrap:hover { transform: translateY(-4px); }

  .autora { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .autora__visual { width: min(70%, 220px); margin: 0 auto; }
  .autora__copy .section__kicker,
  .autora__copy .section__title { text-align: center; }
  .autora__copy .btn { align-self: center; }

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

  .warn__inner { flex-direction: column; text-align: center; gap: 20px; padding: 28px 24px; }

  .foot__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .foot__copy { text-align: center; }
  .foot__nav { justify-content: center; }
}

/* =========================================================
   RESPONSIVO — MOBILE (≤ 720px)
   Hero compactado: capa em cima + tudo na primeira tela
   ========================================================= */
@media (max-width: 720px) {
  /* Container & padding com safe-areas */
  .section { padding: 72px var(--safe-x); padding-left: var(--safe-x); padding-right: var(--safe-r); }
  .section__head { margin-bottom: 40px; }
  .section__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* NAV — só CTA visível, tap target adequado */
  .nav { padding: 10px 16px; padding-left: var(--safe-x); padding-right: var(--safe-r); }
  .nav__brand-mark { font-size: 11px; letter-spacing: .25em; }
  .nav__cta { padding: 9px 14px; font-size: 10px; min-height: var(--tap); }
  .nav__cta span { display: inline; }

  /* HERO — comprimido para caber em 100dvh */
  .hero {
    padding: 72px 16px 20px;                  /* nav curto + base mínima */
    padding-left: var(--safe-x);
    padding-right: var(--safe-r);
    min-height: 100dvh;
    justify-content: flex-start;              /* alinha do topo, sem espaços ociosos */
  }
  .hero__inner {
    gap: 14px;
    align-content: start;
  }
  .hero__copy { gap: 0; }

  .eyebrow { margin-bottom: 6px; font-size: 9.5px; letter-spacing: .28em; }
  .hero__title { margin-bottom: 4px; }
  .hero__title-pre { font-size: 1.5rem; margin-bottom: -4px; }
  .hero__title-main { font-size: 3.2rem; line-height: .95; }
  .hero__sub { font-size: .72rem; letter-spacing: .22em; margin-bottom: 10px; }
  .hero__tagline {
    font-size: .95rem;
    margin-bottom: 12px;
    padding-top: 8px;
    line-height: 1.35;
  }
  .hero__tagline br { display: none; }

  /* Esconde elementos não-essenciais para caber em 1 tela */
  .hero__meta { display: none; }              /* chips → migram para o nav/contexto */
  .hero__ig { display: none; }                /* IG já está no nav; reduz altura */
  .hero__scroll { display: none; }            /* ganha ~70px críticos */

  /* CTAs compactos — botões menores, hierarquia clara */
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-bottom: 0;
    max-width: 320px;                         /* não esticam até a borda */
    margin-left: auto;
    margin-right: auto;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .btn { padding: 11px 20px; font-size: 11px; min-height: 42px; letter-spacing: .18em; }
  .btn--ghost { padding: 9px 20px; font-size: 10.5px; }   /* secundário ainda menor */

  /* CAPA mobile — protagonista absoluta */
  .hero__cover-wrap {
    width: auto;
    height: clamp(340px, 56dvh, 520px);       /* dobrei o tamanho */
    aspect-ratio: auto;
    margin: 0 auto;
  }
  .hero__cover {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    box-shadow:
      0 30px 60px rgba(0,0,0,.7),
      0 0 0 1px rgba(255, 122, 60, .2);
  }
  .hero__cover-glow {
    inset: -24px;
    filter: blur(36px);
    opacity: .9;
  }
  .hero__cover-shine { display: none; }       /* shine não aparece bem em capa "contain" */

  /* SINOPSE — fontes maiores + respiro */
  .sinopse__lead {
    font-size: 1.25rem;
    line-height: 1.55;
    padding: 0 4px 16px;
  }
  .sinopse__body {
    font-size: 1.12rem;
    line-height: 1.78;
  }
  .sinopse__features {
    padding: 28px 22px;
    gap: 14px;
  }
  .sinopse__features li { font-size: 1.05rem; line-height: 1.5; }

  /* PERSONAGENS */
  .chars { gap: 18px; }
  .char { padding: 32px 26px; }
  .char__name { font-size: 1.4rem; }
  .char__role { font-size: 11px; }
  .char__desc { font-size: 1.08rem; line-height: 1.7; }

  /* TRECHO — aspas grandes ficavam saindo da caixa */
  .trecho {
    padding: 44px 26px 32px;
    font-size: 1.15rem;
    line-height: 1.85;
  }
  .trecho__open, .trecho__close { font-size: 3.5rem; opacity: .18; }
  .trecho__open { top: 4px; left: 10px; }
  .trecho__close { bottom: -16px; right: 10px; }
  .trecho__cite { font-size: 10px; padding-top: 20px; }

  /* AUTORA */
  .autora__visual { width: min(100%, 200px); }
  .autora__sigil { width: 44px; height: 44px; font-size: 14px; bottom: -8px; }
  .autora__lead { font-size: 1.2rem; line-height: 1.6; }
  .autora__body { font-size: 1.08rem; line-height: 1.75; }

  /* WARN */
  .warn { padding: 44px var(--safe-x); }
  .warn__inner { padding: 32px 28px; }
  .warn__badge { width: 68px; height: 68px; font-size: 1.7rem; }
  .warn__title { font-size: 1.1rem; }
  .warn__text { font-size: 1.05rem; line-height: 1.7; }

  /* CTA FINAL */
  .cta-final { padding: 90px var(--safe-x); }
  .cta-final__title { font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1.15; }
  .cta-final__sub { font-size: 1.15rem; line-height: 1.6; margin-bottom: 36px; }
  .cta-final__inner .btn--lg { padding: 16px 28px; font-size: 13px; width: 100%; justify-content: center; }

  /* FOOTER */
  .foot { padding: 60px var(--safe-x) 36px; }
  .foot__inner { gap: 24px; }
  .foot__nav { gap: 14px 22px; }
  .foot__copy { font-size: .9rem; }
}

/* =========================================================
   RESPONSIVO — MOBILE COMPACTO (≤ 380px ou altura curta)
   iPhone SE 1ª/2ª geração, telas baixas em landscape
   ========================================================= */
@media (max-width: 380px) {
  .hero__title-main { font-size: 2.7rem; }
  .hero__title-pre { font-size: 1.3rem; }
  .hero__cover-wrap { height: clamp(280px, 50dvh, 420px); }
  .hero__tagline { font-size: .9rem; }
  .btn { padding: 10px 18px; font-size: 10.5px; min-height: 40px; }
}

/* Telas curtas: prioriza CTAs, encolhe a capa */
@media (max-height: 720px) and (max-width: 720px) {
  .hero { padding-top: 64px; padding-bottom: 14px; }
  .hero__cover-wrap { height: clamp(220px, 42dvh, 340px); }
  .hero__title-main { font-size: 2.6rem; }
  .hero__title-pre { font-size: 1.2rem; }
  .hero__tagline { display: none; }            /* sacrifício consciente em telas baixinhas */
  .hero__sub { margin-bottom: 6px; }
}

/* Inputs / botões: evita zoom automático no iOS quando font < 16px */
@media (hover: none) and (pointer: coarse) {
  /* Substitui hover por active em touch (evita botão "grudado") */
  .btn--primary:hover { transform: none; box-shadow: var(--glow-emerald), 0 8px 24px rgba(0,0,0,.4); }
  .btn--primary:hover::before { opacity: 0; }
  .btn--primary:active { transform: scale(.98); box-shadow: 0 0 30px rgba(95, 255, 186, .5); }
  .btn--primary:active::before { opacity: 1; }

  .btn--ghost:hover { border-color: rgba(236, 221, 196, .25); color: var(--bone); background: rgba(20, 9, 10, .4); }
  .btn--ghost:active { border-color: var(--emerald-glow); color: var(--emerald-glow); background: rgba(45, 191, 133, .12); }

  .nav__cta:hover { background: transparent; color: var(--emerald-glow); box-shadow: none; }
  .nav__cta:active { background: var(--emerald); color: var(--ink-0); }

  .char:hover { transform: none; box-shadow: none; border-color: rgba(236, 221, 196, .1); }
  .char:hover::before { transform: scaleX(0); }
  .char:active { border-color: rgba(95, 255, 186, .3); }
  .char:active::before { transform: scaleX(1); }

  .hero__cover-wrap:hover { transform: none; }
}

/* =========================================================
   ACESSIBILIDADE
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--emerald-glow);
  outline-offset: 3px;
  border-radius: 2px;
}
