/* =========================================================
   Pequenos Escolhidos · Landing Vol. 1
   Conceito: "a hora da história" — noite teal (hora de dormir)
   com luz dourada de abajur, e páginas de papel creme.
   ========================================================= */

:root {
  --night: #14332F;
  --night-2: #1B433D;
  --night-3: #0F2724;
  --teal: #1F5F58;
  --paper: #FBF4E4;
  --paper-2: #F5EBD3;
  --cream: #F3E4C2;
  --gold: #EFB94A;
  --gold-soft: rgba(239, 185, 74, .18);
  --terra: #D1582F;
  --terra-dark: #B5461F;
  --ink: #1E2A28;
  --ink-soft: #55655F;
  --green-book: #2F4F44;
  --on-night: #F7EEDC;
  --on-night-soft: rgba(247, 238, 220, .74);
  --line-night: rgba(247, 238, 220, .14);
  --line-paper: rgba(30, 42, 40, .12);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-cover: "Lilita One", "Nunito", sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1120px;
  --gutter: clamp(20px, 4vw, 40px);
  --shadow-book: 0 30px 60px -20px rgba(0, 0, 0, .55), 0 12px 24px -12px rgba(0, 0, 0, .4);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--night);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

/* ---------- Grounds ---------- */
.ground-night { background: var(--night); color: var(--on-night); }
.ground-paper { background: var(--paper); color: var(--ink); }
.ground-cream { background: var(--cream); color: var(--ink); }

.section { position: relative; padding: clamp(64px, 9vw, 120px) 0; }
.ground-paper.section, .ground-cream.section {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: calc(-1 * var(--radius-lg));
}
.ground-night.section { border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin-top: calc(-1 * var(--radius-lg)); }
.section-final { padding-bottom: clamp(96px, 12vw, 160px); }

/* ---------- Type ---------- */
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
}
.ground-night .eyebrow { color: var(--gold); }

.h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 72;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.06;
  letter-spacing: -.012em;
  max-width: 18ch;
}
.center .h2 { margin-inline: auto; }
.sub { margin: 0 0 28px; max-width: 58ch; font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); }
.ground-night .sub { color: var(--on-night-soft); }
.hl { font-style: italic; color: var(--terra); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 72; }
.ground-night .hl { color: var(--gold); }
.note { font-size: 14px; color: var(--ink-soft); margin: 18px 0 0; }
.ground-night .note { color: var(--on-night-soft); }
.micro {
  margin: 12px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--on-night-soft);
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.micro .sep { opacity: .5; }
.ground-paper .micro, .ground-cream .micro { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 24px;
  border: 0; border-radius: 14px;
  background: var(--btn-bg); color: #fff;
  font-weight: 800; font-size: 17px; letter-spacing: .01em; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-terra { --btn-bg: var(--terra); box-shadow: 0 10px 24px -10px rgba(209, 88, 47, .7); }
.btn-terra:hover { background: var(--terra-dark); box-shadow: 0 16px 30px -12px rgba(209, 88, 47, .8); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 14.5px; border-radius: 11px; }
.btn-big { min-height: 64px; font-size: 19px; padding: 0 30px; }
.btn-arrow { transition: transform .25s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.cta-name:empty { display: none; }
.cta-name::before { content: " "; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px var(--gutter);
  background: rgba(20, 51, 47, .78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-night);
  color: var(--on-night);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -.01em; font-variation-settings: "SOFT" 50, "opsz" 24; }
.brand-name em { font-style: italic; color: var(--gold); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 24; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.countdown {
  display: none; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--on-night-soft);
}
.countdown strong { color: var(--gold); }
.countdown-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(239, 185, 74, .6); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(239,185,74,.6); } 70% { box-shadow: 0 0 0 9px rgba(239,185,74,0); } 100% { box-shadow: 0 0 0 0 rgba(239,185,74,0); } }
@media (min-width: 640px) { .countdown { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(16px, 5vw, 72px) 0 clamp(48px, 7vw, 96px);
  isolation: isolate;
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 45%, rgba(239, 185, 74, .22), transparent 70%),
    radial-gradient(40% 40% at 20% 20%, rgba(31, 95, 88, .55), transparent 70%),
    radial-gradient(80% 60% at 50% 110%, rgba(209, 88, 47, .16), transparent 70%);
}
.fireflies { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.fireflies span {
  position: absolute; left: var(--x); top: var(--y);
  width: var(--s); height: var(--s); border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(239, 185, 74, .55);
  opacity: 0;
  animation: firefly var(--d) ease-in-out var(--delay) infinite;
}
@keyframes firefly {
  0% { transform: translate3d(0, 0, 0) scale(.6); opacity: 0; }
  20% { opacity: .9; }
  50% { transform: translate3d(var(--dx), var(--dy), 0) scale(1); opacity: .5; }
  80% { opacity: .85; }
  100% { transform: translate3d(calc(var(--dx) * -.6), calc(var(--dy) * 1.4), 0) scale(.5); opacity: 0; }
}

/* Mobile: tudo vira item do grid para o campo do nome colar no livro.
   Ordem: título → livro → campo do nome → resposta → lead */
.hero-grid { display: grid; gap: 18px; align-items: center; justify-items: stretch; }
.hero-copy, .hero-visual { display: contents; }
.hero-copy .eyebrow { display: none; }
.hero-title { order: 2; }
.book-stage { order: 3; justify-self: center; }
.hero-copy .name-form { order: 4; position: relative; z-index: 5; margin-top: -34px; }
.hero-a { order: 5; margin-top: 8px; }
.hero-copy .lead { order: 6; }

/* Entrada do hero: CSS puro, começa no primeiro paint (não espera o GSAP) */
.hero-in { animation: heroRise .8s var(--ease-out) both; animation-delay: var(--d, 0s); }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-q .word > span { animation: wordUp .9s cubic-bezier(.2, .9, .2, 1) both; animation-delay: calc(.15s + var(--i, 0) * .06s); }
.hero-a .word > span { animation: wordUp .8s cubic-bezier(.2, .9, .2, 1) both; animation-delay: calc(.55s + var(--i, 0) * .03s); }
@keyframes wordUp { from { transform: translateY(110%); } to { transform: none; } }
.book-rig { transform-style: preserve-3d; animation: bookIn 1.3s var(--ease-out) .35s both; }
@keyframes bookIn { from { opacity: 0; transform: translateY(60px) rotateY(-28deg) rotateX(8deg); } to { opacity: 1; transform: none; } }
.book-shadow { animation: heroRise 1s var(--ease-out) .6s both; }
.trust-strip li { animation: heroRise .6s var(--ease-out) both; }
.trust-strip li:nth-child(1) { animation-delay: 1.3s; }
.trust-strip li:nth-child(2) { animation-delay: 1.38s; }
.trust-strip li:nth-child(3) { animation-delay: 1.46s; }
.trust-strip li:nth-child(4) { animation-delay: 1.54s; }

.hero-title { margin: 0; }
.hero-q, .hero-a { display: block; }
.hero-q {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-size: clamp(36px, 9.6vw, 74px);
  line-height: 1.02; letter-spacing: -.02em;
  color: var(--on-night);
  text-wrap: balance;
}
.hero-a {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 40, "opsz" 48;
  font-size: clamp(21px, 2.7vw, 31px);
  line-height: 1.22; letter-spacing: -.005em;
  color: var(--on-night-soft);
  max-width: 22ch;
}
.hero-a em { font-style: italic; color: var(--gold); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 48; }
.lead { margin: 0; max-width: 50ch; font-size: clamp(16.5px, 1.5vw, 18.5px); color: var(--on-night-soft); }

/* split words */
.word { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 .08em .1em; margin: 0 -.08em -.1em; }
.word > span { display: inline-block; will-change: transform; }

/* ---------- Name form ---------- */
.name-form { margin: 0; }
.name-label { display: block; margin-bottom: 8px; font-weight: 800; font-size: 14.5px; letter-spacing: .02em; color: var(--gold); }
.name-label .soft { color: var(--on-night-soft); font-weight: 600; }
.name-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 12px; margin-bottom: 8px; }
.name-head .name-label { margin: 0; }
.genero { display: flex; gap: 6px; }
.chip { min-height: 28px; padding: 0 12px; border-radius: 999px; border: 1.5px solid rgba(247, 238, 220, .3); background: transparent; color: var(--on-night-soft); font-size: 12.5px; font-weight: 800; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.chip:hover { transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--gold); color: var(--night); border-color: var(--gold); }
.ground-paper .chip, .ground-cream .chip { border-color: var(--line-paper); color: var(--ink-soft); }
.ground-paper .chip[aria-pressed="true"], .ground-cream .chip[aria-pressed="true"] { background: var(--terra); color: #fff; border-color: var(--terra); }
.name-row { display: flex; flex-direction: column; gap: 10px; }
.name-input {
  width: 100%; min-height: 56px; padding: 0 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(247, 238, 220, .22);
  background: rgba(247, 238, 220, .07);
  color: var(--on-night);
  font-weight: 700; font-size: 18px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.name-input::placeholder { color: rgba(247, 238, 220, .45); font-weight: 600; }
.name-input:focus { outline: none; border-color: var(--gold); background: rgba(247, 238, 220, .1); box-shadow: 0 0 0 4px var(--gold-soft); }
.ground-paper .name-input, .ground-cream .name-input {
  border-color: var(--line-paper); background: #fff; color: var(--ink);
}
.ground-paper .name-input::placeholder, .ground-cream .name-input::placeholder { color: rgba(30, 42, 40, .4); }
.ground-paper .name-input:focus, .ground-cream .name-input:focus { border-color: var(--terra); box-shadow: 0 0 0 4px rgba(209, 88, 47, .15); }
.name-form-inline { max-width: 360px; }
.name-form.shake .name-input { animation: shake .45s; border-color: var(--terra); }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-4px); } }
@media (min-width: 520px) {
  .name-row { flex-direction: row; }
  .name-row .name-input { flex: 1 1 auto; min-width: 0; }
  .name-row .btn { flex: 0 0 auto; }
}

/* ---------- Book ---------- */
.book-stage {
  position: relative;
  width: min(74vw, 440px);
  perspective: 1400px;
  padding: 8px 8px 44px;
}
.book {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px 16px 16px 6px;
  box-shadow: var(--shadow-book);
  transform-style: preserve-3d;
  will-change: transform;
  background: var(--night-2);
  overflow: hidden;
}
.book-cover { width: 100%; height: 100%; object-fit: cover; animation: coverLight 1.5s ease-out .55s both; }
@keyframes coverLight {
  from { filter: saturate(.05) brightness(.4) contrast(1.1); }
  55% { filter: saturate(.7) brightness(.95); }
  to { filter: none; }
}
.book-spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 5%; z-index: 2;
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.08) 40%, rgba(255,255,255,.12) 70%, rgba(0,0,0,.12));
  mix-blend-mode: multiply;
}
.book-gloss {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.14) 48%, rgba(255,255,255,0) 60%);
  transform: translateX(-60%);
  animation: gloss 7s ease-in-out .8s infinite;
}
@keyframes gloss { 0% { transform: translateX(-60%); } 22% { transform: translateX(60%); } 100% { transform: translateX(60%); } }
.book-shadow {
  position: absolute; left: 12%; right: 12%; bottom: 8px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%);
  filter: blur(6px);
}

.book-name { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.book-name text {
  font-family: var(--font-cover);
  font-size: 74px;
  letter-spacing: 2px;
  fill: #1E4B52;
  paint-order: stroke fill;
  stroke: rgba(255, 255, 255, .35);
  stroke-width: 1.5px;
  filter: drop-shadow(0 3px 0 rgba(255, 244, 210, .55)) drop-shadow(0 4px 3px rgba(80, 40, 0, .28));
  transform-box: fill-box; transform-origin: 50% 50%;
}
.book-name text { white-space: pre; }
.book-name text.cover-shine { stroke: none; filter: none; paint-order: normal; pointer-events: none; }

/* silhouette (bbox no arquivo: x 33.5–63.7%, y 30.3–89.8%) */
.silhouette-halo {
  position: absolute; z-index: 1; pointer-events: none;
  left: 31%; top: 27%; width: 35%; height: 66%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 226, 150, .75), rgba(239, 185, 74, .22) 42%, transparent 68%);
  mix-blend-mode: screen;
  animation: halo 3.4s ease-in-out 1.6s infinite both;
  opacity: 0;
}
@keyframes halo { 0%, 100% { opacity: .35; transform: scale(.96); } 50% { opacity: .9; transform: scale(1.05); } }
.silhouette-fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* faíscas que sobem de dentro da silhueta */
.silhouette-sparks { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.silhouette-sparks span {
  position: absolute; left: var(--x); top: var(--y);
  width: 5px; height: 5px; border-radius: 50%;
  background: #FFF1C9;
  box-shadow: 0 0 8px 2px rgba(239, 185, 74, .8), 0 0 2px 0 #fff;
  opacity: 0;
  animation: sparkRise 3.6s ease-out var(--dl) infinite;
}
.silhouette-sparks span:nth-child(odd) { width: 3px; height: 3px; }
@keyframes sparkRise {
  0% { transform: translate(-50%, 0) scale(.3); opacity: 0; }
  15% { opacity: 1; }
  60% { opacity: .9; }
  100% { transform: translate(calc(-50% + 6px), -46px) scale(1); opacity: 0; }
}
/* transformação foto → personagem (roda uma vez; usa CONFIG.DEMO quando houver assets) */
.book-cover-filled { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.silhouette-flash { position: absolute; z-index: 4; left: 31%; top: 27%; width: 35%; height: 66%; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,246,214,.95), rgba(239,185,74,.5) 40%, transparent 70%); mix-blend-mode: screen; opacity: 0; pointer-events: none; }
.demo-photo { position: absolute; z-index: 5; left: calc(48.6% - 14%); top: calc(60% - 17.5%); width: 28%; opacity: 0; padding: 4% 4% 7%; background: #fff; border-radius: 3px; box-shadow: 0 16px 34px -12px rgba(0,0,0,.65); pointer-events: none; }
.demo-photo-frame { position: relative; aspect-ratio: 4 / 5; background: linear-gradient(180deg, #E7EEF0, #D8E3E6); display: grid; place-items: center; overflow: hidden; border-radius: 2px; }
.demo-photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.demo-photo .polaroid-silhouette { width: 70%; height: 80%; fill: none; stroke: var(--teal); stroke-width: 2.5; opacity: .55; }
.demo-photo .polaroid-icon { position: absolute; right: 6%; bottom: 6%; width: 26%; height: auto; aspect-ratio: 1; border-radius: 50%; background: var(--terra); display: grid; place-items: center; }
.demo-photo .polaroid-icon svg { width: 55%; height: 55%; fill: none; stroke: #fff; stroke-width: 2; stroke-linejoin: round; }
/* explosão de faíscas na faixa quando o nome muda */
.burst { position: absolute; left: 50%; top: 25%; width: 6px; height: 6px; border-radius: 50%; background: #FFF1C9; box-shadow: 0 0 10px 2px rgba(239, 185, 74, .9); pointer-events: none; z-index: 6; animation: burst .9s cubic-bezier(.1, .8, .3, 1) forwards; }
@keyframes burst { from { transform: translate(-50%, -50%) scale(1); opacity: 1; } to { transform: translate(calc(-50% + var(--bx)), calc(-50% + var(--by))) scale(.2); opacity: 0; } }
/* no toque (sem mouse), o livro balança devagar em 3D */
@media (hover: none) {
  .book-rig { animation: bookIn 1.3s var(--ease-out) .35s both, bookSway 7s ease-in-out 1.7s infinite; }
}
@keyframes bookSway { 0%, 100% { transform: rotateY(-7deg) rotateX(2deg); } 50% { transform: rotateY(7deg) rotateX(-2deg); } }

/* ---------- Trust strip ---------- */
.trust-strip {
  list-style: none; margin: clamp(36px, 5vw, 56px) auto 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px;
  font-size: 14.5px; font-weight: 700; color: var(--on-night-soft);
}
.trust-strip li { display: flex; align-items: center; gap: 10px; }
.trust-strip svg { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 720px) { .trust-strip { grid-template-columns: repeat(4, auto); justify-content: space-between; } }

/* ---------- Como funciona / transformação ---------- */
.transform {
  display: grid; grid-template-columns: 1fr; gap: 6px;
  align-items: center; justify-items: center;
  margin: 28px 0 44px;
}
.transform-card { position: relative; margin: 0; }
.transform-photo .polaroid {
  background: #fff; padding: 12px 12px 14px; border-radius: 6px;
  box-shadow: 0 18px 40px -18px rgba(30, 42, 40, .45), 0 2px 6px rgba(30,42,40,.08);
  transform: rotate(-4deg); width: 180px;
}
.polaroid-frame { position: relative; aspect-ratio: 4 / 5; background: linear-gradient(180deg, #E7EEF0, #D8E3E6); border-radius: 3px; display: grid; place-items: center; overflow: hidden; }
.polaroid-silhouette { width: 70%; height: 80%; fill: none; stroke: var(--teal); stroke-width: 2; opacity: .55; }
.polaroid-icon { position: absolute; right: 8px; bottom: 8px; width: 34px; height: 34px; border-radius: 50%; background: var(--terra); display: grid; place-items: center; box-shadow: 0 6px 14px -6px rgba(209,88,47,.9); }
.polaroid-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linejoin: round; }
.polaroid figcaption { margin-top: 10px; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--ink-soft); font-variation-settings: "SOFT" 100, "WONK" 1; }
.transform-cover img, .transform-book img { width: 200px; border-radius: 8px; box-shadow: 0 22px 44px -20px rgba(30, 42, 40, .6); }
.transform-cover img { transform: rotate(3deg); border-radius: 4px 10px 10px 4px; }
.transform-book img { border-radius: 14px; }
.transform-badge {
  position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%);
  background: var(--night); color: var(--gold); font-weight: 800; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.5);
}
.transform-link { position: relative; width: 40px; height: 90px; }
.transform-link .link-line { width: 90px; height: 30px; fill: none; stroke: var(--terra); stroke-width: 2.4; stroke-linecap: round; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(90deg); opacity: .8; }
.spark { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 2px rgba(239,185,74,.6); left: 50%; top: 10%; animation: sparkDown 2.4s ease-in-out infinite; }
.spark.s2 { animation-delay: .8s; left: 40%; } .spark.s3 { animation-delay: 1.6s; left: 60%; }
@keyframes sparkDown { 0% { transform: translate(-50%, 0) scale(.4); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%, 70px) scale(1); opacity: 0; } }

@media (min-width: 760px) {
  .transform { grid-template-columns: auto 1fr auto 1fr auto; gap: 8px; margin: 40px 0 56px; }
  .transform-link { width: 100%; height: 60px; }
  .transform-link .link-line { width: 100%; height: 40px; transform: translate(-50%, -50%) rotate(0); }
  .spark { top: 50%; left: 0; animation: sparkAcross 2.4s ease-in-out infinite; }
  .spark.s2 { left: 0; } .spark.s3 { left: 0; }
  @keyframes sparkAcross { 0% { transform: translate(0, -50%) scale(.4); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(calc(var(--w, 220px)), -50%) scale(1); opacity: 0; } }
  .transform-photo .polaroid { width: 210px; }
  .transform-cover img, .transform-book img { width: 240px; }
}

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; counter-reset: step; }
.steps li { position: relative; padding: 22px 22px 22px 68px; background: #fff; border-radius: var(--radius); box-shadow: 0 10px 30px -18px rgba(30,42,40,.35); }
.step-n {
  position: absolute; left: 20px; top: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--terra); border: 2px solid var(--terra);
}
.steps h3 { margin: 4px 0 6px; font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.15; font-variation-settings: "SOFT" 60, "opsz" 36; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Veja por dentro: livro que vira página ---------- */
.section-inside .name-form-inline { margin-bottom: 28px; }
.flipbook-wrap { margin-top: 8px; }
.flipbook {
  position: relative;
  width: min(100%, 860px); margin: 0 auto;
  perspective: 2400px; perspective-origin: 0% 50%;
  touch-action: pan-y;
  cursor: grab;
  border-radius: 10px;
}
.flipbook:focus-visible { outline: 3px solid var(--terra); outline-offset: 8px; }
.flipbook.dragging { cursor: grabbing; }
.flipbook::before { content: ""; position: absolute; left: -7px; top: 3%; bottom: 3%; width: 7px; border-radius: 4px 0 0 4px; background: linear-gradient(90deg, rgba(30,42,40,.05), rgba(30,42,40,.28)); }
.flipbook.measure .spread { position: relative; transform: none !important; visibility: hidden; }
.flipbook .spread {
  position: absolute; inset: 0;
  transform-origin: 0% 50%;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  will-change: transform;
  transition: transform .85s cubic-bezier(.4, 0, .2, 1);
}
.flipbook.has-gsap .spread { transition: none; }
.flipbook .spread.is-turned { transform: rotateY(-180deg); }
.spread {
  display: grid; grid-template-columns: 1fr;
  background: var(--paper-2);
  border-radius: 10px;
  box-shadow: 0 30px 60px -28px rgba(30,42,40,.55), 0 2px 0 rgba(255,255,255,.6) inset;
  overflow: hidden;
  user-select: none; -webkit-user-select: none;
}
.flip-shade { position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.06) 45%, rgba(0,0,0,.28)); }
.flip-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.flip-count { min-width: 44px; text-align: center; font-weight: 800; font-size: 14px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.page-art { aspect-ratio: 1 / 1; overflow: hidden; }
.page-art img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.page-text { position: relative; padding: 26px 24px 44px; background: var(--paper); font-size: 14.5px; line-height: 1.5; }
.page-kicker { margin: 0 0 8px; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); }
.page-text h3 { margin: 0 0 12px; font-family: var(--font-display); font-weight: 600; font-size: 23px; line-height: 1.12; color: var(--green-book); font-variation-settings: "SOFT" 40, "opsz" 36; }
.page-text p { margin: 0 0 9px; }
.page-text b[data-nome] { color: var(--terra); font-weight: 800; }
.page-talk { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line-paper); font-size: 13.5px; color: var(--ink); }
.page-talk span { display: block; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 3px; }
.page-num { position: absolute; right: 22px; bottom: 16px; font-size: 10px; letter-spacing: .12em; color: var(--ink-soft); }
.page-text::before { content: "PEQUENOS ESCOLHIDOS"; position: absolute; left: 24px; bottom: 16px; font-size: 9px; letter-spacing: .16em; color: var(--ink-soft); }
@media (min-width: 700px) {
  .spread { grid-template-columns: 1fr 1fr; }
  .page-text { padding: 36px 34px 48px; font-size: 15.5px; }
  .page-text::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px; background: linear-gradient(90deg, rgba(0,0,0,.14), transparent); pointer-events: none; }
}
.nav-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-paper); background: #fff; color: var(--ink); font-size: 18px; cursor: pointer; transition: background .2s, transform .2s; }
.nav-btn:hover { background: var(--terra); color: #fff; border-color: var(--terra); transform: translateY(-2px); }

/* ---------- Jornada ---------- */
.section-journey .h2 { max-width: 16ch; }
.journey { position: relative; margin: 40px 0 48px; max-width: 680px; }
.journey-path { position: absolute; left: 21px; top: 0; width: 40px; height: 100%; }
.journey-path path { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; vector-effect: non-scaling-stroke; opacity: .9; }
.journey::before { content: ""; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: var(--line-night); }
.journey-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; position: relative; }
.journey-list li { display: grid; grid-template-columns: 42px 1fr 64px; gap: 16px; align-items: center; }
.j-thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; transform: rotate(3deg); box-shadow: 0 12px 24px -10px rgba(0,0,0,.6); border: 2px solid rgba(247,238,220,.18); }
@media (min-width: 700px) { .journey-list li { grid-template-columns: 42px 1fr 84px; gap: 22px; } .j-thumb { width: 84px; height: 84px; border-radius: 14px; } }
.j-n {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--night); border: 2px solid var(--gold);
  color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: 15px;
  box-shadow: 0 0 0 6px var(--night);
}
.journey-list h3 { margin: 6px 0 2px; font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 2.2vw, 23px); line-height: 1.15; font-variation-settings: "SOFT" 60, "opsz" 36; }
.journey-list p { margin: 0; font-size: 14.5px; color: var(--on-night-soft); }

.extras { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.extras li { background: var(--night-2); border: 1px solid var(--line-night); border-radius: var(--radius); padding: 18px 20px; display: grid; gap: 4px; }
.extras strong { color: var(--gold); font-family: var(--font-display); font-weight: 600; font-size: 19px; font-variation-settings: "SOFT" 60, "opsz" 24; }
.extras span { font-size: 15px; color: var(--on-night-soft); }
@media (min-width: 700px) { .extras { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .extras { grid-template-columns: repeat(4, 1fr); } }

/* ---------- No colo ---------- */
.lap-grid { display: grid; gap: 36px; align-items: center; }
.lap-photo { margin: 0; }
.lap-photo img { border-radius: 24px; box-shadow: 0 40px 70px -35px rgba(30,42,40,.6); transform: rotate(-2deg); }
.benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.benefits li { position: relative; padding-left: 34px; font-size: 16.5px; color: var(--ink-soft); }
.benefits li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--terra);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000' stroke='none'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='%23fff'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000' stroke='none'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='%23fff'/%3E%3C/svg%3E") center / contain no-repeat;
}
.benefits li::after {
  content: ""; position: absolute; left: 6px; top: 10px; width: 10px; height: 6px;
  border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg);
}
.benefits strong { color: var(--ink); }
@media (min-width: 900px) { .lap-grid { grid-template-columns: .85fr 1.15fr; gap: 64px; } }

/* ---------- Oferta: 3 planos ---------- */
.section-offer .h2 { max-width: 22ch; }
.offer-top { display: grid; gap: 24px; align-items: center; margin: 8px 0 36px; }
.offer-book { position: relative; width: min(62vw, 250px); margin: 0 auto; }
.offer-book img { width: 100%; border-radius: 4px 12px 12px 4px; box-shadow: var(--shadow-book); }
.offer-common h3 { margin: 0 0 12px; font-family: var(--font-display); font-weight: 600; font-size: 20px; font-variation-settings: "SOFT" 60, "opsz" 36; }
.offer-common .name-form { margin-top: 18px; max-width: 360px; }
.includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 15.5px; color: var(--ink-soft); }
.includes li { position: relative; padding-left: 28px; }
.includes li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); }
.includes li::after { content: ""; position: absolute; left: 5px; top: 7px; width: 8px; height: 5px; border-left: 2.2px solid var(--night); border-bottom: 2.2px solid var(--night); transform: rotate(-45deg); }
@media (min-width: 860px) { .offer-top { grid-template-columns: 250px 1fr; gap: 44px; } }

.plans { display: grid; gap: 18px; }
.plan {
  position: relative;
  display: grid; gap: 14px; align-content: start;
  padding: 26px 22px 24px;
  background: var(--paper);
  border: 1.5px solid var(--line-paper);
  border-radius: var(--radius-lg);
}
.plan-head h3 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.1; font-variation-settings: "SOFT" 60, "opsz" 36; }
.plan-tag { margin: 4px 0 0; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.plan-price { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; letter-spacing: -.02em; color: var(--ink); font-variation-settings: "SOFT" 40, "opsz" 72; }
.plan-price s { display: block; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--ink-soft); text-decoration-color: var(--terra); letter-spacing: 0; }
.plan-inst { margin: -6px 0 0; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.plan-featured .plan-inst { color: var(--on-night-soft); }
.plan-inst[hidden] { display: none; }
.trust-badges { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.trust-badges li { display: flex; align-items: center; gap: 8px; }
.trust-badges svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--teal); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 760px) { .trust-badges { grid-template-columns: repeat(4, auto); justify-content: center; gap: 12px 28px; } }
.sheen { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none; }
.sheen::after, .btn-shine::after { content: ""; position: absolute; top: -30%; bottom: -30%; left: -70%; width: 45%; background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%); transform: skewX(-14deg); animation: sheen 6.5s ease-in-out 2.5s infinite; pointer-events: none; }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after { animation-duration: 7s; animation-delay: 4s; }
@keyframes sheen { 0% { left: -70%; } 22% { left: 140%; } 100% { left: 140%; } }
.plan-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; color: var(--ink-soft); }
.plan-list li { position: relative; padding-left: 22px; }
.plan-list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.plan-bonus { list-style: none; margin: 2px 0 0; padding: 12px 0 0; border-top: 1px dashed var(--line-paper); display: grid; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.plan-bonus small { display: block; margin-top: 2px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.bonus-tag { display: inline-block; margin-right: 7px; padding: 2px 7px; border-radius: 999px; background: var(--gold); color: var(--night); font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; vertical-align: 2px; }
.plan-featured .plan-bonus { border-top-color: var(--line-night); color: var(--on-night); }
.plan-featured .plan-bonus small { color: var(--on-night-soft); }
.plan .btn { width: 100%; margin-top: 6px; }
.plan-featured { background: var(--night); color: var(--on-night); border-color: var(--night); box-shadow: 0 34px 60px -30px rgba(20, 51, 47, .7); }
.plan-featured .plan-price { color: var(--gold); }
.plan-featured .plan-price s { color: var(--on-night-soft); }
.plan-featured .plan-tag { color: var(--gold); }
.plan-featured .plan-list { color: var(--on-night-soft); }
.plan-badge {
  position: absolute; top: -14px; left: 18px;
  background: var(--gold); color: var(--night);
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.btn-teal { --btn-bg: var(--teal); }
.btn-teal:hover { background: #17504a; }
.offer-micro { justify-content: center; margin-top: 18px; }
@media (min-width: 860px) {
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan-featured { transform: translateY(-10px); }
}

.guarantee { display: flex; gap: 14px; align-items: center; margin: 22px auto 0; max-width: 560px; padding: 16px 18px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line-paper); }
.guarantee svg { width: 40px; height: 40px; flex: none; fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.guarantee strong { display: block; font-size: 16px; }
.guarantee span { font-size: 14px; color: var(--ink-soft); }

/* ---------- Depoimentos (oculto até ter relatos reais) ---------- */
.section-proof .h2 { max-width: 16ch; }
.proof-grid { display: grid; gap: 16px; margin-top: 8px; }
.proof { margin: 0; display: grid; gap: 18px; align-content: space-between; padding: 24px 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line-paper); box-shadow: 0 18px 40px -30px rgba(30, 42, 40, .45); }
.proof blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 18px; line-height: 1.4; color: var(--ink); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 24; }
.proof blockquote::before { content: "\201C"; color: var(--terra); font-size: 36px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.proof figcaption { display: flex; align-items: center; gap: 12px; }
.proof-avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--terra); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 16px; }
.proof figcaption strong { display: block; font-size: 15px; }
.proof figcaption div span { font-size: 13.5px; color: var(--ink-soft); }
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- FAQ ---------- */
.faq { margin-top: 12px; border-top: 1px solid var(--line-night); }
.faq details { border-bottom: 1px solid var(--line-night); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-weight: 800; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-night); display: grid; place-items: center; font-weight: 600; font-size: 20px; color: var(--gold); transition: transform .25s var(--ease-out), background .2s; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--gold); color: var(--night); border-color: var(--gold); }
.faq p { margin: -6px 0 20px; color: var(--on-night-soft); font-size: 15.5px; max-width: 62ch; }

/* ---------- Final ---------- */
.section-final { overflow: hidden; }
.final-title { max-width: 20ch; font-size: clamp(32px, 5.4vw, 58px); }
.final-pick { max-width: 640px; margin: 24px auto 0; display: grid; gap: 12px; }
.final-pick .micro { justify-content: center; }
.plan-buttons { display: grid; gap: 10px; }
.plan-buttons .btn { justify-content: space-between; padding: 0 18px; }
.plan-buttons .btn span { font-weight: 800; }
.plan-buttons .btn strong { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.btn-ghost { --btn-bg: transparent; border: 1.5px solid rgba(247, 238, 220, .28); color: var(--on-night); }
.btn-ghost:hover { background: rgba(247, 238, 220, .08); }
@media (min-width: 640px) { .plan-buttons { grid-template-columns: repeat(3, 1fr); } .plan-buttons .btn { flex-direction: column; gap: 2px; padding: 12px 10px; } }
.ps { margin: 40px auto 0; max-width: 56ch; font-size: 15px; color: var(--on-night-soft); font-style: italic; font-family: var(--font-display); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 18; }
.ps strong { font-style: normal; color: var(--gold); font-family: var(--font-body); }

/* ---------- Footer ---------- */
.footer { background: var(--night-3); color: var(--on-night-soft); padding: 40px 0 calc(40px + 90px); font-size: 14px; }
.footer-grid { display: grid; gap: 22px; }
.footer .brand-name { color: var(--on-night); }
.footer p { margin: 8px 0 0; }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer nav a { color: var(--on-night); font-weight: 700; text-decoration: none; }
.footer nav a:hover { color: var(--gold); }
.footer-legal { font-size: 12.5px; max-width: 70ch; }
@media (min-width: 760px) {
  .footer { padding-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-legal { grid-column: 1 / -1; }
}

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 39, 36, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-night);
  color: var(--on-night);
  transform: translateY(110%);
  transition: transform .35s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta.is-hidden { transform: translateY(110%); }
.sticky-cta .btn { min-height: 48px; padding: 0 18px; font-size: 15.5px; }
.sticky-price { display: grid; line-height: 1.15; }
.sticky-price span { font-size: 12px; color: var(--on-night-soft); font-weight: 700; }
.sticky-price strong { font-size: 18px; color: var(--gold); }
@media (min-width: 960px) { .sticky-cta { display: none; } }

/* ---------- Topbar compacto no mobile ---------- */
@media (max-width: 639px) {
  .topbar { padding: 8px var(--gutter); }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 26px; height: 26px; }
}

/* ---------- Desktop hero ---------- */
@media (min-width: 960px) {
  .hero { min-height: calc(100svh - 64px); display: flex; flex-direction: column; justify-content: center; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .hero-copy { display: block; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-copy .eyebrow { display: block; margin-bottom: 22px; }
  .hero-title { margin-bottom: 18px; }
  .hero-a { margin: 0 0 22px; }
  .lead { margin-bottom: 30px; }
  .hero-copy .name-form { margin-top: 0; }
  .book-stage { width: min(42vw, 500px); }
}

/* ---------- Reveal por scroll (só quando JS ativo; fora do hero) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
