/* Milky Cream (MJType) — confirmar licença de uso na web antes de publicar */
@font-face {
  font-family: "Milky Cream";
  src: url("../assets/fonts/milky-cream.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* cores do logo Vivendo a Aula */
  --navy: #12205e;
  --blue: #176df4;
  --sky: #0a62dc;
  --sky-deep: #0053d3;
  --orange: #ff7028;
  --yellow: #ffd23f;
  --yellow-shadow: #d9a91a;
  --teal: #20c8b0;
  --pink: #eb34e7;
  --white: #fff;

  /* tema "app de música" */
  --bg: #0a0e2a;
  --bg-2: #0e1336;
  --surface: #141b44;
  --surface-2: #1c245a;
  --line: rgb(255 255 255 / .09);
  --text: #f4f3ff;
  --muted: #a9b0d8;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-accent: "Milky Cream", "Montserrat", cursive;
  --peach: #ffb36b;
  --gutter: clamp(16px, 4vw, 56px);
  --radius: 22px;
  --player-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-weight: 500;
  line-height: 1.55;
  padding-bottom: calc(var(--player-h) + 24px);
  overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex: none; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.nowrap { white-space: nowrap; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 860px; }

.c-teal { color: var(--teal); }
.c-yellow { color: var(--yellow); }
.c-orange { color: var(--orange); }
.c-pink { color: var(--pink); }
.c-peach { color: var(--peach); }
em { font-style: normal; }

/* ---------- destaque: palavra em Milky Cream + traço manuscrito ---------- */
.hl {
  position: relative;
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
  font-size: 1.18em;
  line-height: .82;
  letter-spacing: -.045em;
  white-space: nowrap;
  padding: 0 .04em;
}
.hl::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -2%;
  bottom: -.12em;
  height: .18em;
  border-top: .07em solid;
  border-radius: 70% 42% 58% 38%;
  rotate: -1.8deg;
  clip-path: inset(0 0 0 0);
  transition: clip-path .9s cubic-bezier(.65, 0, .35, 1) .25s;
}
/* com JS, o traço se desenha quando a palavra aparece (main.js marca .is-drawn) */
.js .hl:not(.is-drawn)::after,

.hl--static::after { content: none; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 1em 1.6em;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font: 600 1.1rem/1.15 var(--font-display);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--yellow-shadow), 0 14px 30px rgb(0 0 0 / .25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--yellow-shadow), 0 18px 34px rgb(0 0 0 / .3); }
.btn:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--yellow-shadow), 0 6px 14px rgb(0 0 0 / .25); }
.btn:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }
.btn--small { padding: .62em 1.05em; font-size: .95rem; box-shadow: 0 4px 0 var(--yellow-shadow); }
.btn--block { width: 100%; }
.btn--ghost { background: rgb(255 255 255 / .12); color: var(--white); box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / .35); backdrop-filter: blur(8px); }
.btn--ghost:hover, .btn--ghost:active { box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / .6); }
.btn--outline { background: transparent; color: var(--text); box-shadow: inset 0 0 0 2px rgb(255 255 255 / .35); }
.btn--outline:hover, .btn--outline:active { box-shadow: inset 0 0 0 2px var(--white); }
.btn--light { background: var(--white); color: var(--navy); box-shadow: 0 5px 0 rgb(0 0 0 / .2), 0 14px 30px rgb(0 0 0 / .2); }
.btn--play { background: var(--white); color: var(--navy); box-shadow: 0 10px 30px rgb(0 0 0 / .35); }
.ico-pause { display: none; }
.is-playing .ico-play { display: none; }
.is-playing .ico-pause { display: block; }
[hidden] { display: none !important; }

.pill__dot {
  display: inline-block;
  width: .55em; height: .55em; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgb(255 210 63 / .7); } 70%, 100% { box-shadow: 0 0 0 .6em rgb(255 210 63 / 0); } }

/* equalizador animado (ícone de "tocando") */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: .9em; }
.eq i { width: 3px; height: 100%; border-radius: 2px; background: currentColor; transform-origin: bottom; animation: eq 1s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -.4s; }
.eq i:nth-child(3) { animation-delay: -.7s; }
@keyframes eq { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }

/* ---------- topo ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px var(--gutter);
  padding-top: max(12px, env(safe-area-inset-top));
  transition: background .3s, box-shadow .3s;
}
.topbar.is-solid { background: none; box-shadow: none; backdrop-filter: none; }
.topbar__logo img { width: clamp(88px, 11vw, 136px); height: auto; filter: drop-shadow(0 4px 10px rgb(0 30 110 / .35)); transition: width .3s; }
.topbar.is-solid .topbar__logo img { width: clamp(76px, 8vw, 104px); }
.topbar__nav { display: none; margin-left: auto; gap: 26px; }
.topbar__nav a { color: rgb(255 255 255 / .85); text-decoration: none; font-weight: 800; font-size: .95rem; }
.topbar__nav a:hover { color: var(--white); }


/* ======================================================
   FAIXA 01 · HERO — scroll controla a dança (hero.js)
   ====================================================== */
.hero {
  --p: 0; /* progresso do scroll 0 → 1 */
  position: relative;
  height: 280vh;
  background: var(--sky);
}
.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 85% 0%, #2a8cf6 0%, transparent 60%),
    linear-gradient(180deg, var(--sky-deep) 0%, #0366e6 55%, #0a67e2 100%);
}
.hero__canvas {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: max(100vw, 100svh * 720 / 1280);
  height: auto;
  aspect-ratio: 720 / 1280;
  background: url("../assets/hero/v9/poster.jpg") center / cover no-repeat;
  /* no desktop o cartaz é o do vídeo horizontal */
}
.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: calc(88px + env(safe-area-inset-top)) var(--gutter) 0;
  max-width: 640px;
  color: var(--white);
}
.hero__title {
  display: grid;
  margin: 0;
  font: 600 clamp(2.04rem, 8.4vw, 4.8rem)/.98 var(--font-display);
  letter-spacing: -.055em;
  text-shadow: 0 4px 24px rgb(0 25 100 / .35);
}

.hero__sub {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgb(0 25 100 / .4);
}
.hero__hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  translate: -50% 0;
  margin: 0;
  padding: .45em 1em;
  border-radius: 999px;
  background: rgb(0 30 110 / .35);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  white-space: nowrap;
  opacity: clamp(0, 1 - var(--p) * 12, 1);
}
.hero__hint-arrow { display: inline-block; animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 50% { translate: 0 4px; } }

@media (min-width: 900px) {
  .hero__stage { display: flex; align-items: center; }
  .hero__canvas {
    background-image: url("../assets/hero/d1/poster.jpg");
    /* vídeo horizontal próprio do desktop: ocupa a tela toda, com as crianças já à direita */
    inset: 0;
    left: 0;
    right: 0;
    translate: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero__copy {
    align-self: center;
    padding: 40px 0 0 max(var(--gutter), 50vw - 590px);
    max-width: calc(max(var(--gutter), 50vw - 590px) + 600px);
    gap: 22px;
  }
  .hero__title { font-size: clamp(3.2rem, 4.6vw, 5.2rem); }
  .hero__sub { font-size: 1.2rem; }
}

/* ======================================================
   SEÇÕES GERAIS
   ====================================================== */
.sec { position: relative; padding: clamp(72px, 11vw, 140px) 0; }
.track {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(.68rem, 2.45vw, .92rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.track__n {
  display: inline-grid;
  place-items: center;
  min-width: 2.6em;
  height: 2.6em;
  padding: 0 .5em;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--yellow);
  letter-spacing: 0;
  font-size: .95em;
}
.track--dark { color: rgb(30 6 40 / .72); }
.track--dark .track__n { background: rgb(30 6 40 / .22); color: var(--white); }
.h2 {
  margin: 0 0 18px;
  font: 600 clamp(2rem, 8.4vw, 3.9rem)/1.02 var(--font-display);
  letter-spacing: -.055em;
  max-width: 18ch;
}
.lead { margin: 0; max-width: 52ch; font-size: clamp(1.05rem, 2.2vw, 1.22rem); color: var(--muted); font-weight: 600; }

.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
  .split .h2 { font-size: clamp(2.4rem, 3.9vw, 3.4rem); }
  .split--rev > :first-child { order: 2; }
}

/* ---------- FAIXA 02 · antes x depois ---------- */
.sec--energia {
  /* seção amarela com topo recortado (mesmo recorte angular dos cards) */
  --text: #12205e;
  --muted: #3d3a4a;
  color: var(--text);
  background: linear-gradient(180deg, #0323e9 0 56px, #ff7028 56px);
  padding-top: clamp(110px, 13vw, 170px);
}
.sec--energia::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 58px;
  background: #ff7028;
  clip-path: polygon(0 58%, 13% 22%, 27% 52%, 45% 8%, 62% 46%, 79% 18%, 100% 50%, 100% 100%, 0 100%);
}
.sec--energia { --text: #2a1430; --muted: #4a2330; }
.sec--energia .track { color: rgb(30 12 40 / .75); }
.sec--energia .track__n { background: var(--navy); color: var(--yellow); }
.sec--energia .h2 { color: var(--navy); }
.sec--energia .h2 .hl { color: #12205e; } /* azul-marinho: contrasta com o laranja */
.sec--energia .lead { color: rgb(30 12 40 / .82); }
.compare { display: grid; gap: 16px; }
.compare__card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.compare__card h3 { margin: 14px 0 6px; font: 600 1.45rem/1.12 var(--font-display); letter-spacing: -.03em; }
.compare__card p { margin: 0; color: var(--muted); }
.compare__tag { margin: 0; font-weight: 800; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.compare__card--depois { background: linear-gradient(135deg, #0f8f7b, var(--teal)); border-color: transparent; color: #04241f; }
.compare__card--depois p, .compare__card--depois .compare__tag { color: rgb(4 36 31 / .8); }
.wave { display: flex; align-items: center; gap: 4px; height: 46px; }
.wave i { flex: 1; height: calc(var(--h) * 1%); border-radius: 3px; background: currentColor; }
.compare__card--antes .wave { color: rgb(255 255 255 / .28); }
.compare__card--depois .wave { color: rgb(4 36 31 / .75); }
.wave--rhythm i { animation: beat 1.1s ease-in-out infinite; animation-delay: calc(var(--i) * -.09s); }
@keyframes beat { 0%, 100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }

/* ---------- FAIXA 03 · fila ---------- */
.need { margin: 22px 0 0; padding: 14px 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); display: inline-block; }
.need strong { color: var(--text); }
.queue { padding: 22px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.queue__head { margin: 0 6px 12px; font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.queue__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.queue__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 14px;
  border-radius: 16px;
  transition: background .2s;
}
.queue__item:hover { background: var(--surface); }
.queue__item.is-now { background: var(--surface-2); }
.queue__item h3 { margin: 0 0 2px; font: 600 1.2rem/1.2 var(--font-display); letter-spacing: -.02em; }
.queue__item.is-now h3 { color: var(--yellow); }
.queue__item p { margin: 0; color: var(--muted); font-size: .95rem; }
.queue__n { display: grid; place-items: center; font: 600 1.3rem var(--font-display); color: var(--muted); }
.queue__item.is-now .queue__n { color: var(--yellow); }
.queue__ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgb(255 255 255 / .06); color: var(--muted); font-size: 1.1rem; }
.queue__item.is-now .queue__ico { background: var(--yellow); color: var(--navy); }

/* ======================================================
   FAIXA 04 · CATÁLOGO ESTILO STREAMING
   ====================================================== */
.sec--catalogo { --accent: #ff7f2f; padding-bottom: 60px; }
.stage {
  position: relative;
  margin-top: 40px;
  min-height: min(62svh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.stage__bgs { position: absolute; inset: 0; z-index: -2; }
.stage__bgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: 0;
  scale: 1.06;
  transition: opacity .7s ease, scale 6s ease-out;
}
.stage__bgs img.is-active { opacity: 1; scale: 1; }
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 55% at 10% 100%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 70%),
    linear-gradient(0deg, var(--bg) 0%, rgb(10 14 42 / .86) 26%, rgb(10 14 42 / .1) 62%, rgb(10 14 42 / .5) 100%);
}
.stage__info { padding-bottom: 32px; }
.stage__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .4em .8em; border-radius: 999px;
  font-weight: 800; font-size: .78rem; letter-spacing: .04em;
  background: rgb(255 255 255 / .14); backdrop-filter: blur(8px);
}
.badge--lock { background: var(--yellow); color: var(--navy); }
.stage__title {
  margin: 0;
  font: 400 clamp(3rem, 11vw, 6.6rem)/.92 var(--font-accent);
  letter-spacing: .01em;
  text-shadow: 0 6px 30px rgb(0 0 0 / .45);
  max-width: 12ch;
}
.stage__tagline { margin: 10px 0 22px; font-size: clamp(1.1rem, 2.6vw, 1.45rem); font-weight: 800; color: var(--accent); text-shadow: 0 2px 16px rgb(0 0 0 / .6); transition: color .4s; }
.stage__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.stage.is-swapping .stage__title,
.stage.is-swapping .stage__tagline { animation: swap .45s ease; }
@keyframes swap { from { opacity: 0; translate: 0 12px; } }

.rail-wrap { position: relative; }
.rail { position: relative; }
.rail {
  list-style: none;
  margin: 0;
  padding: 18px calc(50% - 88px) 22px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.rail::-webkit-scrollbar { display: none; }
.rail li { scroll-snap-align: center; flex: none; }
.card {
  position: relative;
  display: block;
  width: 176px;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  opacity: .55;
  scale: .92;
  transition: opacity .35s, scale .35s, box-shadow .35s;
}
.card img { width: 100%; height: 100%; object-fit: cover; }
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(5 8 30 / .92) 0%, transparent 55%); }
.card.is-active { opacity: 1; scale: 1; box-shadow: 0 0 0 3px var(--yellow), 0 18px 40px rgb(0 0 0 / .45); }
.card:hover { opacity: 1; }
.card__name { position: absolute; z-index: 1; left: 12px; right: 12px; bottom: 12px; font: 600 1.05rem/1.1 var(--font-display); }
.card__lock, .card__prev {
  position: absolute; z-index: 1; top: 10px;
  display: inline-flex; align-items: center; gap: .3em;
  border-radius: 999px; font-weight: 800; font-size: .72rem;
}
.card__lock { right: 10px; width: 28px; height: 28px; justify-content: center; background: var(--yellow); color: var(--navy); }
.card__prev { left: 10px; padding: .3em .6em; background: rgb(0 0 0 / .55); }
.rail__arrow {
  display: none;
  position: absolute; z-index: 2; top: 50%; translate: 0 -50%;
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: rgb(255 255 255 / .92); color: var(--navy); font-size: 1.3rem;
  place-items: center; cursor: pointer; box-shadow: 0 8px 20px rgb(0 0 0 / .35);
}
.rail__arrow--prev { left: max(12px, 50vw - 620px); }
.rail__arrow--prev svg { rotate: 180deg; }
.rail__arrow--next { right: max(12px, 50vw - 620px); }
.rail__note { display: flex; align-items: center; gap: .5em; margin-top: 4px; color: var(--muted); font-weight: 700; font-size: .95rem; }
.rail__note svg { color: var(--yellow); }
@media (min-width: 900px) {
  .rail { padding-inline: calc(50% - 105px); gap: 18px; }
  .card { width: 210px; }
  .rail__arrow { display: grid; }
  .stage { min-height: min(74svh, 640px); }
  .stage__bgs img { object-position: 50% 35%; }
}

/* ======================================================
   FAIXA 05 · TELA DE LETRA
   ====================================================== */
.sec--letra {
  background: #eb34e7; /* rosa da paleta */
  color: var(--white);
}
.sec--letra .h2 { color: var(--white); max-width: 22ch; }
.sec--letra .lead--light { color: rgb(255 255 255 / .92); font-weight: 500; max-width: 46ch; }
.sec--letra .btn--light { margin-top: 32px; }
.paths { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 12px; }
.paths li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 4px 14px;
  padding: 16px 18px;
  background: rgb(255 255 255 / .14);
  border: 1px solid rgb(255 255 255 / .28);
  backdrop-filter: blur(6px);
  clip-path: polygon(0 16%, 7% 2%, 22% 12%, 38% 0, 54% 12%, 70% 2%, 86% 12%, 100% 4%, 98% 48%, 100% 88%, 86% 98%, 70% 88%, 54% 100%, 38% 88%, 22% 99%, 7% 90%, 2% 54%);
}
.paths__ico { grid-row: 1 / span 2; display: grid; place-items: center; width: 46px; height: 46px; font-size: 1.4rem; color: var(--white); }
.paths strong { font: 600 1.25rem/1.1 var(--font-display); font-style: italic; }
.paths span:last-child { font-size: .95rem; font-weight: 500; color: rgb(255 255 255 / .85); }
@media (min-width: 760px) { .paths { grid-template-columns: repeat(3, 1fr); } .paths li { grid-template-columns: 1fr; text-align: center; justify-items: center; } .paths__ico { grid-row: auto; } }

/* ---------- FAIXA 06 · vídeo ---------- */
.vplayer {
  margin: 40px 0 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgb(0 0 0 / .45);
}
.vplayer video { width: 100%; height: auto; aspect-ratio: 16 / 9; background: #000; }
.vplayer__bar { display: flex; align-items: center; gap: 14px; padding: 14px 18px; }
.vplayer__bar strong { display: block; font: 600 1.1rem var(--font-display); }
.vplayer__bar small { color: var(--muted); font-weight: 700; }
.vplayer__cover { width: 46px; height: 46px; border-radius: 10px; overflow: hidden; flex: none; }
.vplayer__cover img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAIXA 07 · depoimentos (espaços reservados) ---------- */
.depo { display: grid; gap: 14px; margin-top: 36px; grid-template-columns: 1fr 1fr; }
.depo__card { margin: 0; padding: 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: grid; gap: 12px; align-content: start; grid-column: span 2; }
.depo__card figcaption strong { display: block; font: 600 1.05rem var(--font-display); }
.depo__card figcaption small { color: var(--muted); font-weight: 700; }
.depo__card blockquote { margin: 0; }
.depo__photo { aspect-ratio: 1; }
.depo__video { aspect-ratio: 9 / 12; }
.placeholder {
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 2px dashed rgb(255 255 255 / .22);
  background: repeating-linear-gradient(135deg, rgb(255 255 255 / .03) 0 12px, transparent 12px 24px);
  color: var(--muted);
  font-weight: 800;
  font-size: .85rem;
  text-align: center;
}
.placeholder--text { place-items: start; text-align: left; font-size: 1.05rem; font-weight: 700; min-height: 150px; }
@media (min-width: 900px) {
  .depo { grid-template-columns: repeat(4, 1fr); }
  .depo__card { grid-column: span 1; }
  .depo__card:has(.depo__video) { grid-row: span 2; }
}

/* ======================================================
   FAIXA 08 · PLANOS
   ====================================================== */
.sec--planos { background: radial-gradient(80% 50% at 50% 0%, #1b2a7a 0%, transparent 70%), var(--bg); }
.sec--planos .h2 { max-width: 20ch; }
.countdown {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px;
  margin: 36px 0 22px; padding: 16px 20px;
  border-radius: 18px; background: var(--surface); border: 1px solid var(--line);
}
.countdown__label { display: flex; align-items: center; gap: .6em; margin: 0; font-weight: 800; }
.countdown__clock { display: flex; gap: 8px; }
.countdown__clock span { display: grid; justify-items: center; min-width: 58px; padding: 6px 8px; border-radius: 12px; background: var(--surface-2); }
.countdown__clock b { font: 600 1.6rem/1 var(--font-display); color: var(--yellow); font-variant-numeric: tabular-nums; }
.countdown__clock small { font-size: .7rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.countdown.is-over { display: none; }

.plans { display: grid; gap: 18px; align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: 1fr 1.12fr; gap: 24px; } }
.plan {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  border: 1px solid var(--line);
}
.plan--completo {
  background: linear-gradient(160deg, #22307a 0%, #151c4a 60%);
  border: 2px solid var(--yellow);
  box-shadow: 0 30px 70px rgb(0 0 0 / .45), 0 0 0 6px rgb(255 210 63 / .08);
}
/* o Plano Essencial vem primeiro, também no celular */
@media (max-width: 899px) { .plan--completo { order: 0; } }
.plan__flag {
  position: absolute; top: -14px; right: 24px; margin: 0;
  padding: .35em .9em; border-radius: 999px;
  background: var(--yellow); color: var(--navy);
  font-weight: 800; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
}
.plan__kicker { margin: 0; font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.plan--completo .plan__kicker { color: var(--yellow); }
.plan__name { margin: 0; font: 600 clamp(1.8rem, 4vw, 2.4rem)/1.05 var(--font-display); letter-spacing: -.04em; }
.plan__desc { margin: 0; color: var(--muted); font-weight: 600; }
.plan__list { list-style: none; margin: 6px 0; padding: 0; display: grid; gap: 10px; }
.plan__list li { display: flex; gap: .65em; align-items: flex-start; font-weight: 700; }
.plan__list svg { margin-top: .15em; padding: 3px; width: 1.25em; height: 1.25em; border-radius: 50%; background: var(--teal); color: #04241f; }
.plan__list li.is-off { color: rgb(255 255 255 / .38); text-decoration: line-through; text-decoration-color: rgb(255 255 255 / .25); }
.plan__list li.is-off svg { background: rgb(255 255 255 / .1); color: rgb(255 255 255 / .45); }
.price { padding: 16px 0 6px; border-top: 1px solid var(--line); }
.price p { margin: 0; }
.price__old { color: var(--muted); font-weight: 700; text-decoration: line-through; font-size: .95rem; }
.price__main { display: flex; align-items: baseline; gap: .3em; font-family: var(--font-display); }
.price__main small { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.price__main span { font-size: 1.3rem; font-weight: 600; }
.price__main b { font-size: clamp(3rem, 8.5vw, 3.9rem); line-height: 1; font-weight: 700; letter-spacing: -.03em; color: var(--yellow); }
.price__cash { color: var(--muted); font-weight: 700; font-size: .95rem; }
.plans__note { margin: 18px 0 0; text-align: center; color: var(--muted); font-weight: 700; font-size: .95rem; }

.guarantee {
  display: flex; align-items: center; gap: 22px;
  margin-top: 40px; padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.guarantee h3 { margin: 0 0 4px; font: 600 1.4rem var(--font-display); }
.guarantee p { margin: 0; color: var(--muted); font-weight: 600; }
.guarantee__seal {
  position: relative; flex: none;
  display: grid; place-items: center; align-content: center;
  width: 92px; height: 92px; border-radius: 50%;
  background: conic-gradient(var(--teal), var(--yellow), var(--orange), var(--pink), var(--teal));
  color: var(--navy);
}
.guarantee__seal::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--white); }
.guarantee__seal > * { position: relative; }
.guarantee__seal svg { display: none; }
.guarantee__seal b { font: 600 2.2rem/.9 var(--font-display); }
.guarantee__seal small { font-weight: 800; font-size: .75rem; text-transform: uppercase; }

/* ---------- FAIXA 09 · FAQ ---------- */
.faq { margin-top: 32px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px;
  font: 600 clamp(1.1rem, 2.4vw, 1.3rem)/1.25 var(--font-display);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-2); color: var(--yellow);
  font-size: 1.4rem; line-height: 1;
  transition: rotate .25s;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { margin: 0 4px 22px; color: var(--muted); font-weight: 600; max-width: 62ch; }

/* ---------- rodapé ---------- */
.footer { padding: 70px 0 40px; background: var(--bg-2); border-top: 1px solid var(--line); text-align: center; }
.footer__in { display: grid; justify-items: center; gap: 12px; }
.footer img { width: 150px; height: auto; }
.footer__motto { margin: 0; font: 600 1.3rem/1.5 var(--font-display); }
.footer__legal { margin: 0; color: var(--muted); font-size: .9rem; }

/* ======================================================
   PLAYER FIXO
   ====================================================== */
.player {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  translate: -50% 140%;
  width: min(100% - 20px, 1080px);
  height: var(--player-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  background: rgb(20 27 68 / .9);
  border: 1px solid rgb(255 255 255 / .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgb(0 0 0 / .5);
  transition: translate .45s cubic-bezier(.2, .8, .2, 1);
}
.player.is-visible { translate: -50% 0; }
.player__progress { position: absolute; left: 18px; right: 18px; top: -1px; height: 3px; border-radius: 3px; background: rgb(255 255 255 / .12); overflow: hidden; }
.player__progress i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--teal), var(--yellow), var(--orange), var(--pink)); transform-origin: left; transform: scaleX(var(--page-p, 0)); }
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  .player__progress i { animation: grow linear both; animation-timeline: scroll(root); }
  @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}
.player__cover {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  overflow: hidden;
}
.player__cover > img { width: 46px; height: auto; }
.player__cover.has-art > img { width: 100%; height: 100%; object-fit: cover; }
.player__cover .eq { position: absolute; right: 5px; bottom: 5px; color: var(--white); height: 12px; opacity: 0; filter: drop-shadow(0 1px 2px rgb(0 0 0 / .6)); }
.player.is-playing .player__cover .eq { opacity: 1; }
.player__meta { min-width: 0; }
.player__title, .player__sub { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__title { font: 600 1rem/1.25 var(--font-display); }
.player__sub { color: var(--muted); font-size: .8rem; font-weight: 700; }
.player__play {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--white); color: var(--navy); font-size: 1.2rem; cursor: pointer;
  transition: scale .15s;
}
.player__play:hover { scale: 1.06; }
.player__cta { white-space: nowrap; }
@media (max-width: 560px) {
  .player { gap: 10px; }
  .player__cover { width: 50px; height: 50px; }
  .player__cover > img { width: 40px; }
  .player__sub { font-size: .72rem; }
  .player__play { width: 42px; height: 42px; }
  .player__cta { padding: .6em .95em; font-size: .9rem; }
  .player__cta .long { display: none; }
}

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { height: auto; }
  .hero__stage { position: relative; }
  .hero__hint { display: none; }
  .hero__copy, .hero__subs, .hero__l2-in { translate: none; opacity: 1; filter: none; transition: none; }
  .hero__copy2 { display: none; }
  .hero__l2 .hl::after { clip-path: none; }
  .pill__dot, .hero__hint-arrow, .eq i, .wave--rhythm i { animation: none; }
  .lyric { animation: none !important; color: var(--white); }
  .stage__bgs img { transition: none; scale: 1; }
  .hl::after { transition: none; }
}

/* ======================================================
   PAPEL RASGADO (vindo do site antigo)
   O papel é desenhado no ::before, então selos e fitas podem sair da borda.
   ====================================================== */
.paper {
  --paper: #f7e6c8;
  --text: #1b2350;
  --muted: #5a5f82;
  --line: rgb(27 35 80 / .14);
  position: relative;
  isolation: isolate;
  color: var(--text);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.paper::before,
.paper::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--tear);
  pointer-events: none;
}
.paper::before {
  z-index: -1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    var(--paper);
}
/* sombra: o mesmo recorte, deslocado, como papel sobre papel */
.paper::after {
  z-index: -2;
  background: rgb(0 0 0 / .35);
  translate: 3px 7px;
}
.paper--teal { --paper: #20c8b0; --text: #06302a; --muted: rgb(6 48 42 / .78); }
.paper--navy { --paper: #0b2a6b; --text: #f4f3ff; --muted: #b8c0ea; --line: rgb(255 255 255 / .12); }
.paper--navy::after { background: rgb(0 0 0 / .45); }
.paper--t1 { --tear: polygon(1% 5%,18% 0,37% 4%,54% 0,72% 5%,98% 1%,100% 28%,98% 52%,100% 78%,97% 98%,76% 95%,58% 100%,39% 96%,20% 100%,1% 96%,3% 72%,0 48%,3% 24%); }
.paper--t2 { --tear: polygon(2% 2%,15% 0,31% 2%,46% 0,62% 2%,80% 0,98% 3%,100% 17%,98% 34%,100% 52%,97% 69%,100% 85%,97% 98%,82% 100%,66% 98%,49% 100%,31% 98%,15% 100%,1% 97%,3% 82%,0 66%,3% 48%,0 31%); }
.paper--t3 { --tear: polygon(2% 3%,15% 0,31% 2%,48% 0,65% 3%,82% 1%,98% 4%,100% 22%,98% 42%,100% 63%,97% 82%,99% 97%,81% 100%,63% 98%,45% 100%,27% 97%,2% 99%,4% 78%,1% 58%,3% 37%); }

/* antes x depois dentro do painel azul rasgado */
.compare.paper { padding: 30px 22px 34px; gap: 0; rotate: .4deg; }
.compare__head { margin: 0 0 18px; font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.compare__card.paper { padding: 26px 24px; color: var(--text); }
.compare__card--antes.paper { rotate: -1deg; }
.compare__card--depois.paper { rotate: .8deg; }
.compare__card.paper .compare__tag { color: var(--orange); }
.compare__card--depois.paper .compare__tag { color: rgb(6 48 42 / .75); }
.compare__card--antes.paper .wave { color: rgb(27 35 80 / .28); }
.compare__card--depois.paper .wave { color: rgb(6 48 42 / .7); }
.compare__arrow {
  position: relative;
  z-index: 2;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -12px 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgb(0 0 0 / .3);
}
.compare__arrow svg { rotate: 90deg; }

/* planos */
.plan.paper { padding: 34px 28px 32px; }
.plan--essencial.paper { rotate: -.6deg; }
.plan--completo.paper { rotate: .5deg; }
.plan--essencial.paper .price__main b { color: var(--orange); }
.plan--essencial.paper .plan__list li.is-off { color: rgb(27 35 80 / .38); text-decoration-color: rgb(27 35 80 / .3); }
.plan--essencial.paper .plan__list li.is-off svg { background: rgb(27 35 80 / .1); color: rgb(27 35 80 / .45); }
.plan--essencial.paper .btn--outline { color: var(--text); box-shadow: inset 0 0 0 2px rgb(27 35 80 / .45); }
.plan--essencial.paper .btn--outline:hover { box-shadow: inset 0 0 0 2px var(--text); }
/* selo "Mais escolhido" vira uma fita adesiva */
.plan--completo .plan__flag {
  top: -16px;
  right: auto;
  left: 50%;
  translate: -50% 0;
  rotate: -3deg;
  border-radius: 2px;
  padding: .45em 1.4em;
  background: rgb(255 210 63 / .92);
  box-shadow: 0 3px 8px rgb(0 0 0 / .25);
}

.plan.paper .plan__name { font-family: var(--font-accent); font-style: normal; font-weight: 400; font-size: clamp(2.4rem, 8vw, 3.6rem); line-height: .95; letter-spacing: -.025em; }
.plan.paper .plan__name .hl { font-size: 1em; }
.plan--completo.paper::after { background: #d49a0c; translate: 0 14px; }
.plan--essencial.paper::after { background: rgb(141 48 13 / .35); translate: 0 14px; }
.price__main { align-items: baseline; }
.price__main small { text-transform: uppercase; letter-spacing: .11em; font-weight: 800; color: var(--teal); }
.plan--essencial.paper .price__main small { color: var(--text); }
.price__main b { font-family: var(--font-accent); font-weight: 400; font-size: clamp(4rem, 14vw, 5.6rem); letter-spacing: -.04em; line-height: .95; }
.plan--completo .plan__flag { clip-path: polygon(3% 7%,20% 0,37% 5%,56% 0,75% 6%,98% 2%,100% 88%,82% 94%,61% 89%,43% 96%,23% 91%,0 97%); background: #f7bd47; color: var(--navy); rotate: -2.5deg; padding: .72rem 1.8rem .78rem; white-space: nowrap; top: -22px; }

/* garantia e depoimentos */
.guarantee.paper { padding: 30px 28px; rotate: -.4deg; }
.depo__card.paper { padding: 22px 20px; rotate: .6deg; }
.depo__card.paper:nth-of-type(odd) { rotate: -.7deg; }
@media (max-width: 560px) {
  .guarantee.paper { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.depo__card.paper .placeholder { border-color: rgb(27 35 80 / .25); color: var(--muted); background: none; }

/* títulos em itálico, como no site antigo (fica no fim para vencer o atalho `font:` de cada título) */
.hero__title, .h2, .lyric, .compare__card h3, .queue__item h3, .plan__name,
.guarantee h3, .faq summary, .footer__motto, .vplayer__bar strong, .depo__card figcaption strong {
  font-style: italic;
}

/* ======================================================
   CELULAR: textos centralizados
   (títulos, rótulos e textos de abertura; listas e cards seguem à esquerda para leitura)
   ====================================================== */
@media (max-width: 899px) {
  .hero__copy { justify-items: center; text-align: center; margin-inline: auto; }
  .hero__sub { margin-inline: auto; }

  .sec .wrap, .split > div:first-child { text-align: center; }
  .sec .h2, .sec .lead { margin-inline: auto; }
  .need { display: block; }

  /* blocos de conteúdo voltam a alinhar à esquerda */
  .compare, .queue, .plans, .faq, .depo, .guarantee, .countdown, .vplayer, .rail__note { text-align: left; }
  .rail__note { justify-content: center; text-align: center; }
  .countdown { justify-content: center; text-align: center; }
  .countdown__label { justify-content: center; }
  .plans__note { text-align: center; }

  /* catálogo */
  .stage__info { text-align: center; }
  .stage__badges, .stage__actions { justify-content: center; }
  .stage__title, .stage__tagline { margin-inline: auto; }

  /* letra */
  .lyrics__chip { margin-inline: auto; }
  .lyric--icon { justify-content: center; }
  .sec--letra .btn { margin-inline: auto; }
  .sec--letra .wrap { display: grid; justify-items: center; }
}

/* ======================================================
   HERO v3 (mockup): título fixo, texto que vira botão, azul profundo
   ====================================================== */
:root { --hero-blue: #000cd9; --hero-blue-2: #0021ee; --mustard: #f2ad25; }
/* O degradê do palco termina em #12205e. No Safari a tela fica mais alta que o palco
   (100svh) quando a barra do endereço some, e a faixa que sobra embaixo precisa ser
   exatamente essa mesma cor — senão aparece um degrau. */
.hero { background: #1c2382; }
.hero__stage {
  background:
    radial-gradient(120% 60% at 82% 2%, #2f6ff0 0%, transparent 58%),
    linear-gradient(180deg,
      #1749c3 0%, #143fbe 24%, #0e31ae 42%, #0a2699 56%, #061d8c 64%,
      #041985 70.0%,
      #091b84 72.1%,
      #0d1d84 74.3%,
      #101e83 76.4%,
      #131f83 78.6%,
      #162083 80.7%,
      #182183 82.9%,
      #192282 85.0%,
      #1a2282 87.1%,
      #1b2382 89.3%,
      #1b2382 91.4%,
      #1c2382 93.6%,
      #1c2382 95.7%,
      #1c2382 97.9%,
      #1c2382 100.0%);
}
.hero__copy { gap: 14px; padding-top: calc(118px + env(safe-area-inset-top)); }
/* celular: a imagem desce um pouco (o chão de baixo é só azul), abrindo espaço para o texto */
/* celular: o vídeo ocupa a largura exata da tela (sem cortar pandeiro e harpa nas bordas),
   ancorado embaixo; o topo se funde com o azul do fundo */
@media (max-width: 899px) {
  .hero__canvas {
    width: 100vw;
    translate: -50% calc(-1 * var(--kids-shift, 0px));
    scale: var(--kids-zoom, 1);
    transform-origin: bottom center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 80%, rgba(0, 0, 0, .5) 89%, rgba(0, 0, 0, .12) 94%, transparent 97%);
            mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 80%, rgba(0, 0, 0, .5) 89%, rgba(0, 0, 0, .12) 94%, transparent 97%);
  }
}
@media (min-width: 900px) { .hero__copy { padding-top: 40px; } }
.hero__title { display: block; font-size: clamp(1.6rem, 8.3vw, 3rem); line-height: 1.08; }
.hero__title .hl { font-size: 1.2em; }
.hero__l1, .hero__l2 { display: block; white-space: nowrap; } /* cada frase do título sempre numa linha só */

/* ---------- hero: 2º momento em estilo "line reveal" ----------
   A linha sobe de trás de uma máscara (overflow), com desaceleração longa (expo-out),
   e a copy nova chega de baixo com um leve desfoque que some (blur-in). */
.hero { --reveal: cubic-bezier(.16, 1, .3, 1); }
.hero__copy {
}

.hero__l2 {
  overflow: hidden;
  padding: .06em .12em .26em;   /* espaço para o "movimento" em Milky e o traço não serem cortados */
  margin: -.06em -.12em -.26em;
}
.hero__l2-in { display: block; }

/* as duas copys ocupam o mesmo lugar */
.hero__subs { display: grid; }
.hero__sub {
  grid-area: 1 / 1;
  font-style: italic;
  font-weight: 600;
  max-width: 24em;
  margin-inline: auto;
  font-size: clamp(.98rem, 4.35vw, 1.2rem);
  line-height: 1.4;
  transition: translate .9s var(--reveal), opacity .6s ease, filter .7s ease;
}
.hero__sub--1 { translate: 0 0; opacity: 1; }

/* ---------- 3º momento: sai o 1º bloco, entra "Apenas dê o Play!" ---------- */
.hero__copy2 {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: calc(118px + env(safe-area-inset-top));
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 var(--gutter);
  color: var(--white);
  text-align: center;
  pointer-events: none;
  translate: 0 var(--y2, 0px);
  opacity: var(--o2, 0);
}
.hero__t3 { margin: 0; overflow: hidden; padding: .06em .12em .26em; margin: -.06em -.12em -.26em; white-space: nowrap; }
.hero__t3-in { display: block; }
.hero__sub3 { grid-area: auto; margin: 0; }
.hero__t3 .hl::after { clip-path: inset(0 0 0 0); }
@media (min-width: 900px) {
  .hero__copy2 { top: 50%; translate: 0 calc(-50% + var(--y2, 0px)); right: auto; left: max(var(--gutter), 50vw - 590px); justify-items: start; text-align: left; padding: 0; }
}
@media (max-width: 899px) and (max-height: 720px) {
  .hero__copy2 { top: calc(100px + env(safe-area-inset-top)); gap: 8px; }
}

/* ---------- 4º momento: quando a dança termina, "Conheça o" + logo grande ---------- */
.hero__copy { translate: 0 var(--y1, 0px); opacity: var(--o1, 1); transition: none; }

.hero__brand {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: calc(96px + env(safe-area-inset-top));
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 0 var(--gutter);
  pointer-events: none;
  translate: 0 var(--y3, 0px);
  opacity: var(--o3, 0);
}
.hero__brand-kicker {
  margin: 0;
  color: var(--white);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(.95rem, 4.2vw, 1.2rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  translate: 0 calc((1 - var(--kicker-in, 0)) * 14px);
  opacity: var(--kicker-in, 0);
  letter-spacing: calc(.24em + (1 - var(--kicker-in, 0)) * .1em);
}
.hero__brand-logo {
  height: var(--logo-h, 180px);
  width: auto;
  max-width: 70vw;
  /* sem filter (blur/drop-shadow): no Safari do iPhone isso vira um retângulo branco */
  opacity: min(1, calc(var(--logo-in, 0) * 1.8));
  scale: calc(.86 + var(--logo-in, 0) * .14);
  translate: 0 calc((1 - var(--logo-in, 0)) * 40px);
}
@media (min-width: 900px) {
  .hero__brand {
    top: 50%;
    translate: 0 calc(-50% + var(--y3, 0px));
    right: auto;
    left: max(var(--gutter), 50vw - 590px);
    justify-items: start;
    padding: 0;
  }
  .hero__brand-logo { height: min(40vh, 300px); max-width: 520px; }
}
@media (max-width: 899px) and (max-height: 720px) {
  .hero__brand { top: calc(84px + env(safe-area-inset-top)); gap: 4px; }
}
.topbar__logo { transition: opacity .5s ease, translate .6s var(--reveal, ease); }
.topbar__cta { transition: opacity .5s ease, translate .6s ease; }
@media (prefers-reduced-motion: reduce) {
  .hero__brand { display: none; }
}

/* o traço de "movimento" se desenha depois que a linha chega */
.hero__l2 .hl::after { clip-path: inset(0 0 0 0); transition-delay: .4s; }
@media (min-width: 900px) {
  .hero__sub { margin-inline: 0; font-size: 1.15rem; max-width: 30em; }
}

/* ---------- topo: logo colorido + menu ---------- */
.topbar__logo img { width: clamp(84px, 22vw, 116px); filter: none; }
.topbar.is-solid .topbar__logo img { width: clamp(70px, 18vw, 100px); }
.topbar__nav { display: none; }
/* botão fixo no topo: no celular só "Quero", no desktop o texto completo */
.topbar__cta {
  margin-left: auto;
  padding: .62em 1.25em;
  background: var(--mustard);
  color: var(--navy);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 0 #b77b0e;
}
.topbar__cta .long { display: none; }
@media (min-width: 1000px) {
  .topbar__nav { display: flex; gap: 26px; margin-left: auto; }
  .topbar__nav a { color: rgb(255 255 255 / .85); text-decoration: none; font-weight: 800; font-size: .95rem; }
  .topbar__nav a:hover { color: var(--white); }
  .topbar__cta { margin-left: 8px; }
  .topbar__cta .long { display: inline; }
}
}

/* celulares baixos (ex.: iPhone SE): texto mais compacto para não cobrir as crianças */
@media (max-width: 899px) and (max-height: 720px) {
  .hero__copy { padding-top: calc(100px + env(safe-area-inset-top)); gap: 8px; }
  .hero__title { font-size: min(1.9rem, 8.3vw); }
  .hero__sub { font-size: .95rem; line-height: 1.36; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy, .hero__subs, .hero__l2-in { translate: none; opacity: 1; filter: none; transition: none; }
  .hero__copy2 { display: none; }
  .hero__l2 .hl::after { clip-path: none; }
}

/* ---------- speed lines (sensação de rolagem) ---------- */
.hero__speed { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; opacity: calc(var(--speed, 0) * .6); }
.hero__speed i {
  position: absolute;
  top: 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / .9), transparent);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .hero__speed { display: none; } }

/* ---------- seções: conteúdo surge de baixo para cima acompanhando a rolagem ---------- */
@keyframes rv-up {
  from { opacity: 0; translate: 0 56px; }
  to { opacity: 1; translate: 0 0; }
}
@supports ((animation-timeline: view()) and (animation-range: 0% 100%)) {
  .rv {
    animation: rv-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 85%;
  }
}
.rv-fallback .rv { opacity: 0; translate: 0 40px; transition: opacity .7s ease, translate .9s cubic-bezier(.16, 1, .3, 1); }
.rv-fallback .rv.is-in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .rv { animation: none !important; opacity: 1 !important; translate: none !important; }
}

/* texto de apoio do hero: leve e sem itálico, como na referência */
.hero__sub, .hero__sub3 {
  font-style: normal;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.5;
  color: rgb(255 255 255 / .92);
}

/* ======================================================
   FAIXA 02 · antes x depois com chave (Aula comum / Com o Vivendo a Aula)
   ====================================================== */
.shift { display: grid; gap: 18px; justify-items: center; }
.shift__switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 430px);
  padding: 6px;
  background: var(--navy);
  clip-path: polygon(0 26%, 6% 6%, 18% 18%, 31% 2%, 45% 16%, 58% 2%, 72% 16%, 86% 4%, 100% 20%, 98% 52%, 100% 80%, 88% 96%, 74% 84%, 60% 98%, 45% 86%, 30% 100%, 16% 84%, 4% 96%, 2% 60%);
  filter: drop-shadow(0 10px 18px rgb(18 32 94 / .3));
}
.shift__opt {
  position: relative;
  z-index: 1;
  padding: .95em .6em;
  border: 0;
  background: none;
  color: rgb(255 255 255 / .7);
  font: 700 .9rem/1.1 var(--font-body);
  cursor: pointer;
  transition: color .3s;
}
.shift__opt[aria-selected="true"] { color: var(--navy); }
.shift__thumb {
  position: absolute;
  top: 8px; bottom: 8px; left: 8px;
  width: calc(50% - 8px);
  background: #fff;
  clip-path: polygon(0 18%, 8% 4%, 22% 14%, 38% 2%, 54% 14%, 70% 3%, 85% 15%, 100% 6%, 98% 44%, 100% 82%, 86% 96%, 70% 86%, 54% 98%, 38% 87%, 22% 99%, 8% 88%, 2% 56%);
  transition: translate .55s cubic-bezier(.16, 1, .3, 1), background .4s;
}
.shift[data-state="depois"] .shift__thumb { translate: 100% 0; background: var(--teal); }

.shift__card.paper {
  width: 100%;
  padding: 26px 22px 24px;
  rotate: -.6deg;
  --paper: #fff8ec;
  transition: rotate .6s cubic-bezier(.16, 1, .3, 1);
}
.shift__card.paper::before { transition: background .5s ease; }
.shift[data-state="depois"] .shift__card.paper { --paper: #20c8b0; --text: #06302a; --muted: rgb(6 48 42 / .85); rotate: .6deg; }
.shift__card.paper::after { background: rgb(120 80 0 / .28); }

.shift__label { margin: 0 0 10px; font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #d4462b; }
.shift[data-state="depois"] .shift__label { color: #06302a; }
.shift__wave { height: 44px; color: rgb(27 35 80 / .3); }
.shift__wave i { transition: height .8s cubic-bezier(.16, 1, .3, 1); }
.shift[data-state="depois"] .shift__wave { color: rgb(6 48 42 / .75); }
.shift[data-state="depois"] .shift__wave i { height: calc(var(--h2) * 1%); animation: beat 1.1s ease-in-out infinite; animation-delay: calc(var(--i) * -.09s); }

.shift__steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; text-align: left; }
.shift__steps li { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: baseline; padding-top: 12px; border-top: 1px dashed rgb(27 35 80 / .2); }
.shift__time { font-weight: 800; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text); opacity: .75; }
.shift__steps p { margin: 0; font-weight: 600; font-size: .95rem; line-height: 1.4; color: var(--text); }

/* troca de texto entre os estados */
.shift [data-shift-depois] { display: none; }
.shift[data-state="depois"] [data-shift-antes] { display: none; }
.shift[data-state="depois"] [data-shift-depois] { display: block; animation: shift-in .6s cubic-bezier(.16, 1, .3, 1) both; }
.shift[data-state="antes"] [data-shift-antes] { animation: shift-in .6s cubic-bezier(.16, 1, .3, 1) both; }
.shift__label span { display: inline; }
.shift__steps li:nth-child(2) p { animation-delay: .06s; }
.shift__steps li:nth-child(3) p { animation-delay: .12s; }
.shift__steps li:nth-child(4) p { animation-delay: .18s; }
@keyframes shift-in { from { opacity: 0; translate: 0 10px; } }
@media (max-width: 400px) { .shift__steps li { grid-template-columns: 1fr; gap: 2px; } }
@media (prefers-reduced-motion: reduce) { .shift * { animation: none !important; transition: none !important; } }

/* ======================================================
   TEMA CLARO (v31): fundos claros e coloridos da paleta,
   texto azul-marinho e destaques nas palavras-chave
   ====================================================== */
:root { --cream: #fff8ec; --cream-2: #fdf1de; --ink: #12205e; --ink-soft: #4a5480; }
body { background: var(--cream); color: var(--ink); }

.sec { --text: var(--ink); --muted: var(--ink-soft); --line: rgb(18 32 94 / .14); --surface: #fff; --surface-2: rgb(18 32 94 / .07); color: var(--text); }
.sec .h2 { color: var(--ink); }
.sec .lead { color: var(--ink-soft); }
.sec .track { color: rgb(18 32 94 / .6); }
.sec .track__n { background: var(--ink); color: var(--yellow); }

.sec--video, .sec--recebe, .sec--faq { background: var(--cream); }
.sec--depo { background: var(--cream-2); }
.sec--passos { background: #d3f3ec; }
.sec--planos { background: var(--yellow); }
.sec--catalogo { background: #0022dd; --text: #fff; --muted: rgb(255 255 255 / .8); --line: rgb(255 255 255 / .18); }
.sec--catalogo .h2 { color: #fff; }
.sec--catalogo .track { color: rgb(255 255 255 / .75); }
.sec--catalogo .track__n { background: rgb(255 255 255 / .16); color: var(--yellow); }
.sec--catalogo .lead { color: rgb(255 255 255 / .85); }
.sec--letra { --text: #fff; --muted: rgb(255 255 255 / .9); }
.sec--letra .track { color: rgb(40 8 40 / .7); }
.sec--letra .track__n { background: rgb(40 8 40 / .25); color: #fff; }

/* o palco do catálogo funde com o azul da seção */
.stage::after {
  background:
    radial-gradient(80% 55% at 10% 100%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 70%),
    linear-gradient(0deg, #0022dd 0%, rgb(0 34 221 / .85) 26%, rgb(0 34 221 / .1) 62%, rgb(0 34 221 / .5) 100%);
}
.card { background: rgb(255 255 255 / .12); }
.rail__note { color: rgb(255 255 255 / .85); }

/* componentes que vieram do tema escuro */
.vplayer { background: #fff; border-color: rgb(18 32 94 / .12); box-shadow: 0 24px 50px rgb(18 32 94 / .14); }
.vplayer__bar small { color: var(--ink-soft); }
.countdown { background: #fff; border-color: rgb(18 32 94 / .12); box-shadow: 0 12px 30px rgb(18 32 94 / .12); }
.countdown__clock span { background: var(--ink); }
.countdown__label { color: var(--ink); }
.placeholder { border-color: rgb(18 32 94 / .28); color: var(--ink-soft); background: repeating-linear-gradient(135deg, rgb(18 32 94 / .04) 0 12px, transparent 12px 24px); }
.faq { border-top-color: rgb(18 32 94 / .18); }
.faq details { border-bottom-color: rgb(18 32 94 / .18); }
.faq summary { color: var(--ink); }
.faq summary::after { background: var(--ink); color: var(--yellow); }
.faq details p { color: var(--ink-soft); }
.plans__note, .gets__note { color: rgb(18 32 94 / .7); }
.sec--planos .track { color: rgb(18 32 94 / .7); }
.footer { background: var(--ink); color: #fff; }
.footer__legal { color: rgb(255 255 255 / .7); }

/* ---------- FAIXA 05 - passos (sem papel rasgado) ---------- */
.steps { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 14px; }
.steps__item {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 20px 20px 14px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 30px rgb(18 32 94 / .1);
}
.steps__item::after {
  content: "";
  position: absolute;
  left: 45px;
  bottom: -14px;
  width: 2px;
  height: 14px;
  background: repeating-linear-gradient(180deg, rgb(18 32 94 / .35) 0 4px, transparent 4px 8px);
}
.steps__item:last-child::after { content: none; }
.steps__n {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font: 400 2.2rem/1 var(--font-accent);
  color: #fff;
}
.steps__item:nth-child(1) .steps__n { background: var(--orange); }
.steps__item:nth-child(2) .steps__n { background: var(--blue); }
.steps__item:nth-child(3) .steps__n { background: var(--pink); }
.steps__item h3 { margin: 0 0 2px; font: 600 1.2rem/1.15 var(--font-display); font-style: italic; color: var(--ink); }
.steps__item p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.sec--passos .need { background: rgb(255 255 255 / .7); border-color: rgb(18 32 94 / .15); color: var(--ink-soft); }
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps__item { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 10px; padding: 26px 20px; }
  .steps__item::after { left: auto; right: -14px; top: 50%; bottom: auto; width: 14px; height: 2px; background: repeating-linear-gradient(90deg, rgb(18 32 94 / .35) 0 4px, transparent 4px 8px); }
}

/* ---------- FAIXA 06 - o que você recebe ---------- */
.gets { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 14px; }
.gets li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgb(18 32 94 / .09);
}
.gets__ico { grid-row: 1 / span 2; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; font-size: 1.5rem; color: #fff; background: var(--teal); }
.gets li:nth-child(2) .gets__ico { background: var(--orange); }
.gets li:nth-child(3) .gets__ico { background: var(--pink); }
.gets li:nth-child(4) .gets__ico { background: var(--blue); }
.gets strong { font: 600 1.15rem/1.15 var(--font-display); font-style: italic; color: var(--ink); }
.gets span:last-child { font-size: .95rem; color: var(--ink-soft); }
.gets__note { margin: 16px 0 0; font-size: .9rem; font-weight: 700; }
@media (min-width: 860px) { .gets { grid-template-columns: repeat(2, 1fr); } }

/* ---------- player com a cara do projeto ---------- */
.player { background: #fff; border: 0; box-shadow: 0 16px 40px rgb(18 32 94 / .28); }
.player__progress { background: rgb(18 32 94 / .12); left: 16px; right: 16px; top: 0; }
.player__cover { background: linear-gradient(140deg, #0022dd, #4b8bff); }
.player__title { color: var(--ink); font-style: italic; }
.player__sub { color: var(--ink-soft); }
.player__play { background: var(--orange); color: #fff; box-shadow: 0 6px 14px rgb(255 112 40 / .45); }
.player__cta { background: var(--yellow); color: var(--ink); font-style: italic; box-shadow: 0 4px 0 var(--yellow-shadow); }

/* ======================================================
   PALETA DAS SEÇÕES (v33)
   Ritmo: azul forte só no hero; depois fundos claros que alternam
   entre creme, verde-água claro, pêssego claro e branco, com o
   amarelo reservado para os planos. Cor forte só nos detalhes.
   ====================================================== */
:root {
  --cream: #fff8ec;      /* creme base */
  --sand: #ffeedd;       /* pêssego claro */
  --mint: #e2f6f1;       /* verde-água claro */
  --paper-white: #fffdf9;
  --ink: #12205e;
  --ink-soft: #4a5480;
}

.sec--catalogo { background: #12205e; --text: #fff; --muted: rgb(255 255 255 / .9); --line: rgb(255 255 255 / .18); }
.sec--catalogo .h2 { color: #fff; }
.sec--catalogo .track { color: rgb(255 255 255 / .7); }
.sec--catalogo .track__n { background: rgb(255 255 255 / .14); color: var(--yellow); }
.sec--catalogo .lead { color: rgb(255 255 255 / .82); }
.stage::after {
  background:
    radial-gradient(80% 55% at 10% 100%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 70%),
    linear-gradient(0deg, #12205e 0%, rgb(18 32 94 / .88) 26%, rgb(18 32 94 / .1) 62%, rgb(18 32 94 / .5) 100%);
}

.sec--video { background: var(--cream); }
.sec--letra { background: var(--sand); --text: var(--ink); --muted: var(--ink-soft); }
.sec--letra .h2 { color: var(--ink); }
.sec--letra .h2 .hl { color: var(--pink); }
.sec--letra .lead--light { color: var(--ink-soft); }
.sec--letra .track { color: rgb(18 32 94 / .6); }
.sec--letra .track__n { background: var(--ink); color: var(--yellow); }
.sec--passos { background: var(--mint); }
.sec--recebe { background: var(--paper-white); }
.sec--depo { background: var(--cream); }
.sec--planos { background: var(--yellow); }
.sec--faq { background: var(--paper-white); }

/* cartões da seção "por que funciona" no pêssego claro */
.paths li {
  background: #fff;
  border: 0;
  backdrop-filter: none;
  box-shadow: 0 12px 26px rgb(18 32 94 / .1);
  clip-path: none;
  border-radius: 22px;
  color: var(--ink);
}
.paths__ico { color: #fff; border-radius: 16px; background: var(--pink); }
.paths li:nth-child(2) .paths__ico { background: var(--orange); }
.paths li:nth-child(3) .paths__ico { background: var(--teal); }
.paths strong { color: var(--ink); }
.paths span:last-child { color: var(--ink-soft); }

/* o antes/depois dentro da seção clara */
.shift__card.paper { --paper: #fffdf9; }
.shift[data-state="depois"] .shift__card.paper { --paper: #bff0e6; --text: #06302a; --muted: rgb(6 48 42 / .85); }
.shift__label { color: #c8371f; }

/* nada de botão branco: chamada sempre no amarelo da marca */
.btn--light {
  background: var(--yellow);
  color: var(--ink);
  font-style: italic;
  box-shadow: 0 5px 0 var(--yellow-shadow), 0 14px 30px rgb(18 32 94 / .18);
}
.sec--letra .btn--light { margin-top: 30px; }

/* vídeo e cartões sobre fundo claro */
.vplayer { background: var(--paper-white); }
.steps__item, .gets li { background: var(--paper-white); }
.sec--recebe .gets li { background: var(--cream); }

/* ---------- destaques legíveis em cada fundo (nada de cor sobre a mesma cor) ---------- */
.sec--planos .hl { color: var(--ink); }
.sec--planos .hl.c-teal, .sec--planos .h2 .hl:last-of-type { color: #b0165f; } /* rosa escuro sobre o amarelo */
.sec--video .hl, .sec--passos .hl { color: #0e9078; }   /* verde-água escurecido para fundo claro */
.sec--recebe .hl, .sec--depo .hl { color: var(--pink); }
.sec--faq .hl { color: #d8541a; }                        /* laranja escurecido */
.sec--letra .hl { color: #c8248f; }
.sec--catalogo .hl { color: var(--orange); }
.guarantee .hl { color: #0e9078; }
.sec--planos .plan--completo .hl { color: var(--yellow); }   /* card azul-marinho */
.sec--planos .plan--essencial .hl { color: var(--orange); }  /* card creme */
.sec--planos .guarantee .hl { color: #d8541a; }


/* ======================================================
   MINI PLAYER NO CABEÇALHO (v37)
   Só aparece depois que a pessoa toca o play do hero.
   ====================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.mini {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgb(255 255 255 / .28);
  border-radius: 999px;
  background: rgb(4 25 133 / .42);
  backdrop-filter: blur(10px);
  animation: mini-in .45s cubic-bezier(.16, 1, .3, 1) both;
}
.mini[hidden] { display: none; }
@keyframes mini-in { from { opacity: 0; translate: 0 -8px; scale: .94; } }

.mini__cover {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(255 255 255 / .12);
  flex: none;
}
.mini__cover img { width: 100%; height: 100%; object-fit: cover; }
.mini__cover:not(.has-art) img { width: 76%; height: auto; object-fit: contain; }

.mini__btn {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  padding: 0; border: 0; border-radius: 999px;
  background: none; color: #fff;
  cursor: pointer;
  transition: background .2s, scale .2s;
}
.mini__btn:hover { background: rgb(255 255 255 / .16); }
.mini__btn:active { scale: .9; }
.mini__btn svg { width: 19px; height: 19px; }
.mini .ico-pause, .mini.is-playing .ico-play { display: none; }
.mini.is-playing .ico-pause { display: block; }

.mini__bar {
  width: 34px; height: 3px;
  margin-left: 2px;
  border-radius: 999px;
  background: rgb(255 255 255 / .22);
  overflow: hidden;
}
.mini__bar i {
  display: block; height: 100%; width: var(--a-p, 0%);
  border-radius: 999px;
  background: var(--yellow);
  transition: width .2s linear;
}
@media (max-width: 400px) { .mini__bar { display: none; } }

/* ---------- play dentro do hero (2º momento) ---------- */
.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 9px 20px 9px 9px;
  border: 1px solid rgb(255 255 255 / .34);
  border-radius: 999px;
  background: rgb(255 255 255 / .1);
  backdrop-filter: blur(8px);
  color: #fff;
  font: italic 800 .95rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: background .25s, scale .2s, border-color .25s;
}
.hero__play:hover { background: rgb(255 255 255 / .18); border-color: rgb(255 255 255 / .5); }
.hero__play:active { scale: .96; }
.hero__play-ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #12205e;
  flex: none;
}
.hero__play-ico svg { width: 16px; height: 16px; margin-left: 2px; }
.hero__play.is-on .hero__play-ico { background: #fff; }

/* o bloco ignora cliques, mas o play responde quando está na tela */
.hero__copy2.is-live .hero__play { pointer-events: auto; }

/* celulares baixos: o play do hero encolhe para não apertar as crianças */
@media (max-width: 899px) and (max-height: 720px) {
  .hero__play { margin-top: 8px; padding: 6px 16px 6px 6px; font-size: .88rem; gap: 8px; }
  .hero__play-ico { width: 26px; height: 26px; }
  .hero__play-ico svg { width: 13px; height: 13px; }
}

/* ======================================================
   HERO: CTA e céu (nuvens + estrelas) — referências "HERO ... (demo)"
   ====================================================== */
.hero__cta {
  margin-top: 4px;
  align-self: center;
  background: var(--orange);
  color: #fff;
  font-style: italic;
  box-shadow: 0 5px 0 #c8501a, 0 16px 34px rgb(4 25 133 / .45);
  pointer-events: auto;
}
.hero__cta:hover { filter: brightness(1.05); }

/* No celular o texto ocupa quase toda a largura: nuvens e estrelas não cabem
   sem encostar nele, então só aparecem a partir do desktop. */
.hero__sky { display: none; }
@media (min-width: 900px) {
  .hero__sky { display: block; position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
}
.hero__cloud, .hero__star { position: absolute; opacity: .9; }
.hero__cloud { width: clamp(72px, 22vw, 140px); height: auto; filter: drop-shadow(0 10px 22px rgb(2 12 70 / .35)); }
.hero__cloud--1 { top: 40%; left: -14%; }
.hero__cloud--2 { top: 26%; right: -19%; width: clamp(60px, 18vw, 120px); opacity: .7; }
.hero__star { width: clamp(16px, 4.4vw, 26px); height: auto; }
.hero__star--1 { top: 40%; left: 7%; }
.hero__star--2 { top: 30%; left: 3%; }
.hero__star--3 { top: 44%; right: 4%; }
/* o céu some junto com o 1º momento, para não competir com o logo */
.hero__sky { opacity: var(--o1, 1); transition: none; }
@media (max-width: 899px) and (max-height: 720px) {
  .hero__cta { margin-top: 0; padding: .6em 1.2em; font-size: .92rem; }
}

/* desktop: a copy fica à esquerda, então o céu ocupa a metade direita, acima das crianças */
@media (min-width: 900px) {
  .hero__cloud--1 { top: 9%; left: auto; right: -3%; width: clamp(110px, 12vw, 180px); }
  .hero__cloud--2 { top: 24%; right: 13%; width: clamp(80px, 9vw, 130px); }
  .hero__star { width: clamp(22px, 2.2vw, 32px); }
  .hero__star--1 { top: 16%; left: auto; right: 26%; }
  .hero__star--2 { top: 30%; left: auto; right: 4%; }
  .hero__star--3 { top: 8%; right: 33%; }
}

/* ======================================================
   HERO v39 — "Conheça o" e "Descubra mais" no traço fino e espaçado
   da referência; seta desenhada em vez de caractere.
   ====================================================== */
.hero__brand-kicker {
  font-weight: 300;
  font-size: clamp(.8rem, 3.4vw, 1rem);
  letter-spacing: .42em;
  text-indent: .42em;          /* compensa o espaço extra da última letra */
  opacity: .95;
}

.hero__hint {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  background: none;
  font-weight: 300;
  font-size: clamp(.7rem, 3vw, .82rem);
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  opacity: clamp(0, 1 - var(--p) * 12, .92);
}
.hero__hint-arrow { display: block; width: 26px; height: 26px; text-indent: 0; }
.hero__hint-arrow svg { width: 100%; height: 100%; display: block; }
.hero__hint-txt { display: block; }

/* desktop: o "Conheça o" fica centralizado sobre o logo */
@media (min-width: 900px) {
  .hero__brand { justify-items: center; text-align: center; }
  .hero__brand-kicker { text-align: center; }
}

/* celulares baixos: as copys novas são mais longas (3 linhas), então o bloco encolhe
   para não encostar nas crianças */
@media (max-width: 899px) and (max-height: 720px) {
  .hero__copy { padding-top: calc(92px + env(safe-area-inset-top)); gap: 6px; }
  .hero__copy2 { top: calc(92px + env(safe-area-inset-top)); gap: 6px; }
  .hero__sub { font-size: .86rem; line-height: 1.3; }
  .hero__title { font-size: min(1.78rem, 7.8vw); }
}

/* ======================================================
   FAIXA 02 · CATÁLOGO — a seção veste a cor da história (v41)
   O --accent é animável porque está registrado como cor; assim a
   troca de personagem tinge o fundo aos poucos, sem piscar.
   ====================================================== */
@property --accent {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff7f2f;
}
.sec--catalogo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: --accent 900ms cubic-bezier(.4, 0, .2, 1);
}
.sec--catalogo > * { position: relative; z-index: 1; }

/* o céu da seção, como na referência: começa exatamente no azul em que o hero
   termina e vai virando a cor do personagem que estiver na tela. Estrelas amarelas
   em cima, nuvens brancas onde a cena começa. */

.cat-sun {
  position: absolute;
  top: 6%;
  left: 50%;
  translate: -50% 0;
  width: min(70vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, #fff) 0%, color-mix(in srgb, var(--accent) 30%, transparent) 48%, transparent 72%);
  opacity: .5;
  filter: blur(8px);
  animation: cat-sun 9s ease-in-out infinite;
}
@keyframes cat-sun { 50% { scale: 1.07; opacity: .38; } }

/* nuvens brancas e cheias, como no PNG da pasta */
.cat-cloud {
  position: absolute;
  height: auto;
  opacity: .92;
  filter: drop-shadow(0 8px 18px rgb(4 25 133 / .22));
}
.cat-cloud--a { top: 46%; width: clamp(80px, 24vw, 170px); animation: cat-drift 52s linear infinite; }
.cat-cloud--b { top: 56%; width: clamp(64px, 18vw, 130px); opacity: .8;  animation: cat-drift 72s linear infinite reverse; }
.cat-cloud--c { top: 38%; width: clamp(54px, 14vw, 105px); opacity: .62; animation: cat-drift 92s linear infinite; }
@keyframes cat-drift {
  from { left: -28%; }
  to   { left: 114%; }
}

/* estrelas amarelas na parte azul */
.cat-star {
  position: absolute;
  width: clamp(15px, 3.6vw, 24px);
  height: auto;
  opacity: .92;
  filter: drop-shadow(0 3px 8px rgb(4 25 133 / .35));
  animation: cat-twinkle 4.5s ease-in-out infinite;
}
.cat-star--a { top: 4%;  left: 13%; animation-delay: -.4s; }
.cat-star--b { top: 10%; right: 10%; animation-delay: -1.8s; }
.cat-star--c { top: 20%; left: 7%;  animation-delay: -3.1s; }
.cat-star--d { top: 6%;  left: 63%; animation-delay: -2.3s; }
@keyframes cat-twinkle {
  0%, 100% { opacity: .6; scale: .88; }
  50%      { opacity: 1;  scale: 1; }
}

/* aviso de deslizar — some assim que a pessoa desliza */
.rail__swipe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 10px;
  color: rgb(255 255 255 / .74);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: opacity .45s ease, translate .45s ease;
}
.rail__swipe[hidden] { display: none; }
.rail__swipe.is-gone { opacity: 0; translate: 0 -6px; pointer-events: none; }
.rail__swipe-hand { display: block; width: 22px; height: 22px; color: var(--yellow); animation: cat-swipe 2.4s ease-in-out infinite; }
.rail__swipe-hand svg { width: 100%; height: 100%; display: block; }
@keyframes cat-swipe {
  0%, 100% { translate: -7px 0; }
  50%      { translate: 7px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cat-sun, .cat-cloud, .cat-star, .rail__swipe-hand { animation: none; }
  .sec--catalogo { transition: none; }
}

/* ======================================================
   FAIXA 04 · os dois blocos lado a lado (por que / como) — v42
   ====================================================== */
.why-how {
  display: grid;
  gap: 18px;
  margin: 26px 0 34px;
}
@media (min-width: 720px) {
  .why-how { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.why-how__card {
  --paper: var(--paper-white, #fffdf9);
  padding: 26px 24px 28px;
  text-align: left;
}
.why-how__kicker {
  margin: 0 0 10px;
  color: var(--teal-ink, #0e9078);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.why-how__card:nth-child(2) .why-how__kicker { color: var(--orange-ink, #d8541a); }
.why-how__card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

/* ======================================================
   FAIXA 03 · fundo claro com textura leve
   ====================================================== */
.sec--video {
  position: relative;
  isolation: isolate;
  background: var(--cream);
}
.sec--video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image:
    radial-gradient(circle at 50% 50%, rgb(18 32 94 / .055) 1px, transparent 1.6px),
    radial-gradient(circle at 50% 50%, rgb(255 112 40 / .05) 1px, transparent 1.6px);
  background-size: 22px 22px, 34px 34px;
  background-position: 0 0, 11px 17px;
}

/* ======================================================
   Padrão de texto (v42)
   Os textos das seções estavam em semibold (600) enquanto a copy do hero
   é regular (400) com um leve espaçamento. Agora seguem o mesmo padrão.
   ====================================================== */
.lead,
.why-how__card p,
.steps__item p,
.gets li,
.faq p,
.need {
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.5;
}
.need strong, .steps__item h3 { font-weight: 700; }

/* destaque branco (referência da seção 2) */
.c-white { color: #fff; }
.c-white::after { background: #fff; }

/* FAIXA 02 · nome e frase da história, como na referência */
.stage__title {
  font-size: clamp(2.1rem, 9vw, 3.4rem);
  line-height: .98;
}
.stage__tagline {
  color: #fff;
  font-size: clamp(.78rem, 3.2vw, .95rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgb(0 0 0 / .45);
}

/* a cena da história se apoia na cor do personagem, não mais no azul-marinho */
.sec--catalogo .hl { color: #fff; }
.sec--catalogo .hl::after { background: #fff; }
.stage::after {
  background:
    radial-gradient(90% 50% at 50% 100%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 72%),
    linear-gradient(0deg,
      var(--accent) 0%,
      color-mix(in srgb, var(--accent) 88%, transparent) 18%,
      color-mix(in srgb, var(--accent) 30%, transparent) 46%,
      transparent 66%,
      color-mix(in srgb, var(--accent) 30%, transparent) 100%);
}
.sec--catalogo { background: #1c2382; }

/* a arte da história nasce dissolvida no céu, sem borda de corte no topo */
.stage__bgs img {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 8%, rgba(0,0,0,.8) 18%, #000 30%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 8%, rgba(0,0,0,.8) 18%, #000 30%);
}
/* o céu muda de azul para a cor do personagem ao longo de toda a seção */


/* ======================================================
   FAIXA 02 · personagem recortado sobre a cor da história (v44)
   Sem cena de fundo: quem dá o clima é a cor, como na referência.
   ====================================================== */
.stage { position: relative; }
.stage__chars {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.stage__chars img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 96%;
  max-width: none;
  object-fit: contain;
  translate: -50% 0;
  opacity: 0;
  scale: 1.04;
  transition: opacity .6s ease, scale 5s ease-out, translate .6s ease;
  filter: drop-shadow(0 18px 34px rgb(0 0 0 / .28));
}
.stage__chars img.is-active { opacity: 1; scale: 1; }

/* a cor da história enche a cena inteira; o degradê só assenta o texto embaixo */
.stage::after {
  background: linear-gradient(0deg,
    color-mix(in srgb, var(--accent) 82%, #06213f) 0%,
    color-mix(in srgb, var(--accent) 52%, transparent) 26%,
    transparent 52%);
}
.stage__info { position: relative; }

/* o nome e a frase ficam sobre a cor, não sobre a arte */
.stage__title { text-shadow: 0 3px 18px rgb(0 0 0 / .35); }

@media (min-width: 900px) {
  .stage__chars img { height: 104%; }
}

/* o recorte cabe inteiro, seja o alto (José) ou o largo (Davi/Noé) */
.stage__chars img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 84%;
}
@media (min-width: 900px) {
  .stage__chars img { max-width: 44%; max-height: 90%; }
}
/* estrelas longe do rótulo e do título */
.cat-star--d { top: 3%; left: 78%; }
.cat-star--a { top: 3%; left: 8%; }

/* base mais firme sob o nome da história: o recorte pode ser alto (José) e
   a arte não pode disputar com o texto */
.stage::after {
  background: linear-gradient(0deg,
    color-mix(in srgb, var(--accent) 72%, #05182e) 0%,
    color-mix(in srgb, var(--accent) 66%, #05182e) 18%,
    color-mix(in srgb, var(--accent) 40%, transparent) 38%,
    color-mix(in srgb, var(--accent) 14%, transparent) 52%,
    transparent 64%);
}

/* Três histórias já têm recorte do personagem (Davi, Noé, José): entram sobre a cor.
   As outras sete seguem com a cena antiga até os recortes ficarem prontos. */
.stage__chars img:not([data-char]) {
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  translate: 0;
  object-fit: cover;
  object-position: 50% 30%;
  filter: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 8%, rgba(0,0,0,.8) 18%, #000 30%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 8%, rgba(0,0,0,.8) 18%, #000 30%);
}

.cat-sky {
  /* em pixels, não em porcentagem: a virada do azul para a cor da história
     acontece sempre na mesma distância, independente do tamanho da seção */
  background: linear-gradient(180deg,
    var(--sky-a) 0px,
    color-mix(in srgb, var(--sky-a) 55%, var(--accent)) 150px,
    color-mix(in srgb, var(--sky-a) 18%, var(--accent)) 260px,
    var(--accent) 380px,
    var(--accent) 100%);
}

.cat-sky { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

:root { --sky-a: #1c2382; }
@property --sky-a { syntax: '<color>'; inherits: true; initial-value: #1c2382; }


/* ======================================================
   CABEÇALHO SEM FAIXA (v46)
   O topo veste a cor que estiver embaixo dele, e a barra do navegador
   no celular (theme-color) acompanha a mesma cor. Tudo gradual.
   ====================================================== */
.topbar {
  background: var(--top-color, transparent);
  transition: none;                 /* a cor já vem interpolada pelo JS */
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--top-color, transparent);
}
/* sobre fundo claro, o texto do topo escurece */
.topbar--light .topbar__nav a { color: rgb(18 32 94 / .78); }
.topbar--light .topbar__nav a:hover { color: var(--ink); }
.topbar--light .mini { border-color: rgb(18 32 94 / .22); background: rgb(18 32 94 / .06); }
.topbar--light .mini__btn { color: var(--ink); }
.topbar--light .mini__cover { background: rgb(18 32 94 / .1); }
.topbar--light .mini__bar { background: rgb(18 32 94 / .18); }

/* ======================================================
   FAIXA 02 · O PALCO DA HISTÓRIA (v47) — segue as referências
   Personagem grande ocupando a tela, frase manuscrita no alto,
   nome enorme, uma única chamada. Sem divisão de cor até as miniaturas.
   ====================================================== */
.sec--catalogo { padding-bottom: 0; }
.stage {
  min-height: min(96svh, 760px);
  margin-top: 0;
  padding-top: 8px;
  overflow: visible;
  touch-action: pan-y;              /* deslizar na horizontal troca a história */
}
.stage__chars { inset: 0 0 -2px 0; overflow: visible; }

/* o personagem ocupa a largura toda e apaga a partir da cintura */
.stage__chars img[data-char] {
  left: 50%;
  bottom: auto;
  top: 0;
  width: 116%;
  height: auto;
  max-width: none;
  max-height: none;
  translate: -50% 0;
  -webkit-mask-image: linear-gradient(180deg, #000 52%, rgba(0,0,0,.72) 68%, rgba(0,0,0,.25) 82%, transparent 92%);
          mask-image: linear-gradient(180deg, #000 52%, rgba(0,0,0,.72) 68%, rgba(0,0,0,.25) 82%, transparent 92%);
  filter: drop-shadow(0 22px 40px rgb(0 0 0 / .22));
}
/* José é um desenho mais alto: mostra da cintura para cima */
.stage__chars img[data-bg="jose"] { width: 104%; top: -4%; }
.stage__chars img[data-bg="noe"]  { width: 124%; top: -2%; }
.stage__chars img[data-bg="davi"] { width: 120%; top: -1%; }

/* frase manuscrita no canto de cima, como nas referências */
.stage__quote {
  position: absolute;
  z-index: 3;
  top: clamp(84px, 15vw, 120px);
  left: var(--gutter);
  max-width: 7.5em;
  margin: 0;
  color: #fff;
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 5.4vw, 1.6rem);
  line-height: 1.12;
  rotate: -5deg;
  text-shadow: 0 2px 12px rgb(0 0 0 / .32);
}
.stage__quote::after {
  content: '';
  display: block;
  width: 3.1em;
  height: .13em;
  margin-top: .18em;
  border-radius: 999px;
  background: var(--yellow);
}

/* o bloco de texto fica embaixo, sem caixa e sem etiquetas soltas */
.stage__info {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 2px;
  padding-bottom: 18px;
  margin-top: auto;
}
.stage__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(.78rem, 3.3vw, .92rem);
  font-weight: 600;
  text-shadow: 0 2px 10px rgb(0 0 0 / .4);
}
.stage__kicker i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.stage__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2.6rem, 13vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.03em;
  text-shadow: 0 4px 20px rgb(0 0 0 / .34);
}
.stage__tagline {
  margin: 2px 0 14px;
  color: #fff;
  font-size: clamp(.98rem, 4.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 12px rgb(0 0 0 / .4);
}
/* uma única chamada, no amarelo da marca */
.btn--story {
  background: var(--yellow);
  color: #12205e;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 5px 0 var(--yellow-shadow), 0 14px 30px rgb(0 0 0 / .2);
}
.btn--story[hidden] { display: none; }

/* a cor não se divide: o degradê só assenta o texto */
.stage::after {
  background: linear-gradient(0deg,
    color-mix(in srgb, var(--accent) 74%, #061a2e) 0%,
    color-mix(in srgb, var(--accent) 34%, transparent) 26%,
    transparent 52%);
}
.rail-wrap { margin-top: -6px; }

@media (min-width: 900px) {
  .stage { min-height: min(88svh, 720px); }
  .stage__chars img[data-char] { width: auto; height: 96%; top: 2%; }
  .stage__quote { top: 22%; left: max(var(--gutter), 50vw - 600px); font-size: 1.9rem; }
}

/* ======================================================
   CÉU DA FAIXA 02 (v47): nuvens paradas nas laterais, estrelas só no alto
   ====================================================== */
.cat-cloud {
  animation: cat-float 7s ease-in-out infinite;
  opacity: .9;
}
.cat-cloud--a { top: 30%; left: -7%;  width: clamp(86px, 26vw, 180px); animation-delay: -.6s; }
.cat-cloud--b { top: 44%; right: -8%; left: auto; width: clamp(72px, 22vw, 150px); animation-delay: -2.8s; }
.cat-cloud--c { top: 58%; left: -11%; width: clamp(64px, 18vw, 124px); opacity: .72; animation-delay: -4.4s; }
@keyframes cat-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}
/* estrelas presas ao trecho azul do céu, longe do texto e do personagem */
.cat-star--a { top: 2.5%; left: 6%;  }
.cat-star--b { top: 5.5%; right: 7%; left: auto; }
.cat-star--c { top: 11%;  left: 15%; }
.cat-star--d { top: 9%;   right: 18%; left: auto; }

/* a frase manuscrita entra logo abaixo do texto de abertura */
.stage__quote { top: clamp(150px, 26vw, 220px); }
@media (min-width: 900px) { .stage__quote { top: 26%; } }

/* a saída do catálogo se dissolve na seção seguinte, sem linha de corte */
.sec--catalogo { position: relative; }
.sec--catalogo > .rail-wrap { position: relative; z-index: 1; }
.cat-sky::after { content: none; }

/* a dissolução para a próxima seção fica abaixo do aviso, não por cima dele */
.sec--catalogo { padding-bottom: 34px; }
.cat-sky::after { content: none; }
.sec--catalogo .rail__note { margin-bottom: 4px; }

/* ======================================================
   FAIXA 02 (v48) — uma cor só, e ar entre o texto e o personagem
   ====================================================== */
/* a base do palco termina exatamente na cor da história: sem degrau para as miniaturas */
.stage::after {
  background: linear-gradient(0deg,
    var(--accent) 0%,
    var(--accent) 14%,
    color-mix(in srgb, var(--accent) 62%, transparent) 30%,
    color-mix(in srgb, var(--accent) 22%, transparent) 42%,
    transparent 54%);
}

/* o título de abertura respira sozinho; o personagem começa bem abaixo dele */
.sec--catalogo .wrap:first-of-type { padding-bottom: clamp(28px, 9vw, 64px); }
.stage {
  margin-top: clamp(46px, 14vw, 110px);
  min-height: min(104svh, 840px);
}
.stage__chars img[data-char] { top: 4%; }
.stage__chars img[data-bg="jose"] { top: 0; }
.stage__chars img[data-bg="noe"]  { top: 2%; }
.stage__chars img[data-bg="davi"] { top: 3%; }
.stage__quote { top: clamp(60px, 14vw, 110px); }

@media (min-width: 900px) {
  .stage { margin-top: 70px; min-height: min(92svh, 760px); }
  .stage__chars img[data-char] { top: 4%; }
  .stage__quote { top: 24%; }
}

/* o título de abertura lê como um bloco à parte; o personagem desce e a
   seção cresce para baixo para acomodar isso */
.sec--catalogo .wrap:first-of-type { padding-bottom: clamp(40px, 13vw, 90px); }
.stage {
  margin-top: clamp(72px, 22vw, 150px);
  min-height: min(112svh, 900px);
}
.stage__chars img[data-bg="davi"] { top: 7%; }
.stage__chars img[data-bg="noe"]  { top: 6%; }
.stage__chars img[data-bg="jose"] { top: 4%; }
.stage__chars img:not([data-char]) { top: 6%; height: 94%; }
.stage__quote { top: clamp(74px, 17vw, 130px); }
@media (min-width: 900px) {
  .stage { margin-top: 90px; min-height: min(94svh, 780px); }
  .stage__chars img[data-char] { top: 5%; }
}

/* rosto e nome têm que caber na mesma tela, como nas referências */
.stage { min-height: min(86svh, 720px); }
.stage__chars img[data-char] { width: 104%; }
.stage__chars img[data-bg="noe"]  { width: 112%; top: 4%; }
.stage__chars img[data-bg="davi"] { width: 108%; top: 5%; }
.stage__chars img[data-bg="jose"] { width: 92%;  top: 2%; }
@media (min-width: 900px) { .stage { min-height: min(90svh, 760px); } }

/* o nome da história começa exatamente onde a cor de baixo começa a tomar conta */
.stage__chars img[data-char] {
  -webkit-mask-image: linear-gradient(180deg, #000 46%, rgba(0,0,0,.78) 58%, rgba(0,0,0,.34) 70%, rgba(0,0,0,.08) 80%, transparent 88%);
          mask-image: linear-gradient(180deg, #000 46%, rgba(0,0,0,.78) 58%, rgba(0,0,0,.34) 70%, rgba(0,0,0,.08) 80%, transparent 88%);
}
.stage::after {
  background: linear-gradient(0deg,
    var(--accent) 0%,
    var(--accent) 18%,
    color-mix(in srgb, var(--accent) 68%, transparent) 34%,
    color-mix(in srgb, var(--accent) 26%, transparent) 46%,
    transparent 58%);
}
.stage__info { padding-bottom: clamp(30px, 9vw, 64px); }

/* proporção das referências: nome por volta de 55% do palco, miniaturas logo abaixo */
.stage { min-height: min(76svh, 660px); }
.stage__info { padding-bottom: clamp(22px, 6vw, 44px); }
.stage::after {
  background: linear-gradient(0deg,
    var(--accent) 0%,
    var(--accent) 22%,
    color-mix(in srgb, var(--accent) 70%, transparent) 36%,
    color-mix(in srgb, var(--accent) 28%, transparent) 46%,
    transparent 56%);
}
.stage__chars img[data-char] {
  -webkit-mask-image: linear-gradient(180deg, #000 42%, rgba(0,0,0,.78) 54%, rgba(0,0,0,.32) 66%, rgba(0,0,0,.08) 76%, transparent 84%);
          mask-image: linear-gradient(180deg, #000 42%, rgba(0,0,0,.78) 54%, rgba(0,0,0,.32) 66%, rgba(0,0,0,.08) 76%, transparent 84%);
}
@media (min-width: 900px) { .stage { min-height: min(84svh, 720px); } }

/* ======================================================
   Super Starfish — fonte dos nomes das histórias
   ====================================================== */
@font-face {
  font-family: "Super Starfish";
  src: url("../assets/fonts/super-starfish.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.stage__title {
  font-family: "Super Starfish", var(--font-display), system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  font-size: clamp(2.8rem, 14vw, 5rem);
}

/* ======================================================
   A frase manuscrita nunca encosta no personagem (v50)
   Ela vive na faixa de cor entre o texto de abertura e o personagem,
   que é o único vazio que existe em todas as dez histórias.
   ====================================================== */
.stage { margin-top: clamp(120px, 32vw, 210px); }
.stage__quote {
  position: absolute;
  top: auto;
  bottom: 100%;
  left: var(--gutter);
  margin: 0 0 clamp(16px, 5vw, 34px);
  max-width: 9em;
  font-size: clamp(.98rem, 4.3vw, 1.3rem);
  line-height: 1.16;
  font-weight: 400;
  opacity: .92;
  text-shadow: 0 1px 8px rgb(0 0 0 / .18);
  rotate: -4deg;
}
.stage__quote::after {
  width: 2.6em;
  height: .09em;
  margin-top: .22em;
  opacity: .9;
}
@media (min-width: 900px) {
  .stage { margin-top: 130px; }
  .stage__quote { left: max(var(--gutter), 50vw - 600px); font-size: 1.5rem; max-width: 10em; }
}


/* ======================================================
   CABEÇALHO SEM NADA (v51)
   Nem tarja, nem camada, nem desfoque: só o logo sobre a cena.
   A barra do navegador no celular continua acompanhando a cor.
   ====================================================== */
.topbar,
.topbar.is-solid {
  background: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.topbar::before { content: none; }

/* ======================================================
   FAIXA 02 (v51) — frase colada no personagem, céu por história
   ====================================================== */
/* a frase fica logo acima da cabeça, em duas linhas */
.stage { margin-top: clamp(84px, 24vw, 160px); }
.stage__quote {
  margin-bottom: clamp(6px, 2vw, 14px);
  max-width: 7.4em;
  text-wrap: balance;
}

/* nuvens só onde o céu é azul (José e Noé); nas outras, sol */
.cat-sky[data-ceu="sol"] .cat-cloud { display: none; }
.cat-sky[data-ceu="sol"] .cat-sun { opacity: .62; }
.cat-sky[data-ceu="nuvem"] .cat-sun { opacity: .3; }

/* o sol ganha raios discretos quando é ele que decora a cena */
.cat-sun::after {
  content: '';
  position: absolute;
  inset: -34%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 0deg 6deg, transparent 6deg 30deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 30deg 36deg, transparent 36deg 60deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 60deg 66deg, transparent 66deg 90deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 90deg 96deg, transparent 96deg 120deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 120deg 126deg, transparent 126deg 150deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 150deg 156deg, transparent 156deg 180deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 180deg 186deg, transparent 186deg 210deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 210deg 216deg, transparent 216deg 240deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 240deg 246deg, transparent 246deg 270deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 270deg 276deg, transparent 276deg 300deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 300deg 306deg, transparent 306deg 330deg,
    color-mix(in srgb, var(--accent) 34%, #fff) 330deg 336deg, transparent 336deg 360deg);
  -webkit-mask-image: radial-gradient(circle, transparent 38%, #000 52%, transparent 78%);
          mask-image: radial-gradient(circle, transparent 38%, #000 52%, transparent 78%);
  opacity: .5;
  animation: cat-raios 44s linear infinite;
}
.cat-sky[data-ceu="nuvem"] .cat-sun::after { opacity: 0; }
@keyframes cat-raios { to { rotate: 360deg; } }
@media (prefers-reduced-motion: reduce) { .cat-sun::after { animation: none; } }

/* as frases cabem em duas linhas */
.stage__quote { max-width: min(12em, calc(100vw - var(--gutter) * 2 - 40px)); }

/* ======================================================
   PALETA DAS SEÇÕES (v51)
   4 rosa · 5 branco · 6 amarelo da paleta · 7 azul da paleta
   ====================================================== */
:root { --blue: #0022dd; --pink-soft: #ffe2f5; --pink-ink: #a7157f; }

/* 04 · Pronto para usar — fundo rosa */
.sec--passos { background: var(--pink-soft); --text: var(--ink); --muted: var(--ink-soft); }
.sec--passos .h2 { color: var(--ink); }
.sec--passos .hl { color: var(--pink-ink); }
.sec--passos .track { color: rgb(18 32 94 / .62); }
.sec--passos .track__n { background: var(--pink-ink); color: #fff; }
.sec--passos .why-how__card { --paper: #fffdfa; }
.sec--passos .why-how__kicker { color: var(--pink-ink); }
.sec--passos .why-how__card:nth-child(2) .why-how__kicker { color: #d8541a; }
.sec--passos .steps__item { background: #fffdfa; }
.sec--passos .steps__n { background: var(--pink-ink); color: #fff; }
.sec--passos .steps__item:nth-child(2) .steps__n { background: var(--blue); }
.sec--passos .steps__item:nth-child(3) .steps__n { background: var(--orange); }
.sec--passos .need { background: rgb(255 255 255 / .8); border-color: rgb(167 21 127 / .2); color: var(--ink-soft); }

/* 06 · Depoimentos — amarelo da paleta */
.sec--depo { background: var(--yellow); --text: var(--ink); --muted: rgb(18 32 94 / .72); }
.sec--depo .h2 { color: var(--ink); }
.sec--depo .hl { color: var(--pink-ink); }
.sec--depo .track { color: rgb(18 32 94 / .68); }
.sec--depo .track__n { background: var(--ink); color: var(--yellow); }
.sec--depo .depo article, .sec--depo .depo li { background: #fffdf6; border-color: rgb(18 32 94 / .12); }

/* 07 · Planos — azul da paleta */
.sec--planos { background: var(--blue); --text: #fff; --muted: rgb(255 255 255 / .86); --line: rgb(255 255 255 / .2); }
.sec--planos .h2 { color: #fff; }
.sec--planos .hl { color: var(--yellow); }
.sec--planos .h2 .hl:last-of-type { color: var(--yellow); }
.sec--planos .lead { color: rgb(255 255 255 / .9); }
.sec--planos .track { color: rgb(255 255 255 / .78); }
.sec--planos .track__n { background: rgb(255 255 255 / .18); color: var(--yellow); }
.sec--planos .plans__note { color: rgb(255 255 255 / .82); }
.sec--planos .countdown { color: #fff; }
.sec--planos .countdown__label { color: rgb(255 255 255 / .84); }
/* os dois cards continuam legíveis sobre o azul */
.sec--planos .plan--essencial.paper { --paper: #fffaf0; --text: var(--ink); --muted: var(--ink-soft); }
.sec--planos .plan--completo.paper { --paper: #0b1a5c; --text: #f4f3ff; --muted: #c2c9ee; }
.sec--planos .plan--essencial .hl { color: var(--orange); }
.sec--planos .plan--completo .hl { color: var(--yellow); }
.sec--planos .guarantee { background: rgb(255 255 255 / .1); border-color: rgb(255 255 255 / .22); color: #fff; }
.sec--planos .guarantee .hl { color: var(--yellow); }

/* ======================================================
   O LOGO SEM TARJA (v53)
   Branco sobre as seções escuras, azul-marinho sobre as claras.
   E ele se recolhe ao descer, para não ficar por cima do conteúdo.
   ====================================================== */
.topbar__logo { position: relative; display: block; }
.topbar__mark { display: block; }
.topbar__mark--escuro { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; }
.topbar--light .topbar__mark--claro { opacity: 0; }
.topbar--light .topbar__mark--escuro { opacity: 1; }
.topbar__mark--claro { transition: opacity .35s ease; filter: drop-shadow(0 2px 8px rgb(4 12 60 / .28)); }
.topbar--light .topbar__mark--escuro { filter: none; }

/* recolhe ao descer, reaparece ao subir */
.topbar {
  transition: translate .32s ease, opacity .32s ease;
}
.topbar.is-away {
  translate: 0 -130%;
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .topbar { transition: none; } }

/* ======================================================
   FAIXA 06 · amarelo exato do logo (círculo do "a" do Vivendo a Aula)
   ====================================================== */
:root { --yellow-logo: #f2ad25; }
.sec--depo { background: var(--yellow-logo); }
.sec--depo .depo article, .sec--depo .depo li { background: #fffcf3; }

/* ======================================================
   FAIXA 02 · sol flutuando + nuvens brancas, só em Davi e Golias (teste)
   ====================================================== */
.cat-sun {
  position: absolute;
  top: 12%;
  left: auto;
  right: 8%;
  translate: none;
  width: clamp(76px, 22vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fff6c9 0%, var(--yellow) 52%, #f0a41f 100%);
  box-shadow: 0 0 0 clamp(8px, 2.4vw, 16px) rgb(255 210 63 / .22),
              0 0 0 clamp(18px, 5vw, 34px) rgb(255 210 63 / .1);
  opacity: 0;
  filter: none;
  animation: cat-sol 7s ease-in-out infinite;
  transition: opacity .6s ease;
}
.cat-sun::after { content: none; }
.cat-sun i {
  position: absolute;
  inset: -46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 214 74 / .3) 0%, transparent 62%);
}
@keyframes cat-sol {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
/* por ora o sol aparece só no Davi */
.cat-sky[data-ceu="sol-davi"] .cat-sun { opacity: 1; }
.cat-sky[data-ceu="sol-davi"] .cat-cloud { display: block; }
.cat-sky[data-ceu="sol"] .cat-sun { opacity: 0; }
.cat-sky[data-ceu="sol"] .cat-cloud { display: none; }
.cat-sky[data-ceu="nuvem"] .cat-sun { opacity: 0; }
.cat-sky[data-ceu="nuvem"] .cat-cloud { display: block; }

/* nuvens brancas nas laterais, nunca sobre os nomes */
.cat-cloud { opacity: .96; filter: drop-shadow(0 6px 14px rgb(0 0 0 / .1)); }
.cat-cloud--a { top: 26%; left: -8%;  width: clamp(82px, 24vw, 165px); }
.cat-cloud--b { top: 40%; right: -9%; left: auto; width: clamp(68px, 20vw, 140px); }
.cat-cloud--c { top: 54%; left: -12%; width: clamp(58px, 16vw, 112px); opacity: .8; }

/* ======================================================
   FAIXA 02 · troca de personagem em carrossel (v54)
   O que sai vai para o lado e encolhe; o que entra vem do outro lado.
   Nada de simplesmente apagar e acender.
   ====================================================== */
.stage__chars img {
  --slide: 0%;
  --gira: 0deg;
  translate: calc(-50% + var(--slide)) 0;
  rotate: var(--gira);
  transform-origin: 50% 120%;
  transition:
    translate .58s cubic-bezier(.22, .64, .3, 1),
    rotate    .58s cubic-bezier(.22, .64, .3, 1),
    scale     .58s cubic-bezier(.22, .64, .3, 1),
    opacity   .34s ease;
  will-change: translate, scale, opacity;
}
.stage__chars img:not([data-char]) { translate: var(--slide) 0; }
/* fora de cena: encostado na lateral, menor e girado (dá a sensação circular) */
.stage__chars img:not(.is-active) {
  opacity: 0;
  scale: .8;
  --slide: 0%;
  --gira: 0deg;
}
.stage__chars img.is-active { opacity: 1; scale: 1; --slide: 0%; --gira: 0deg; }
.stage__chars img.vai-esquerda  { --slide: -74%; --gira: -9deg; }
.stage__chars img.vai-direita   { --slide:  74%; --gira:  9deg; }
.stage__chars img.vem-da-direita { --slide:  74%; --gira:  9deg; }
.stage__chars img.vem-da-esquerda { --slide: -74%; --gira: -9deg; }

@media (prefers-reduced-motion: reduce) {
  .stage__chars img { transition: opacity .3s ease; }
  .stage__chars img.vai-esquerda, .stage__chars img.vai-direita,
  .stage__chars img.vem-da-direita, .stage__chars img.vem-da-esquerda { --slide: 0%; --gira: 0deg; }
}

/* ======================================================
   Carrossel (v55): quem sai continua visível enquanto desliza
   ====================================================== */
.stage__chars img { opacity: 0; }
.stage__chars img.is-active,
.stage__chars img.vem-da-direita,
.stage__chars img.vem-da-esquerda { opacity: 1; }
/* sai deslizando e só apaga no fim do percurso */
.stage__chars img.vai-esquerda,
.stage__chars img.vai-direita {
  opacity: 0;
  scale: .82;
  transition:
    translate .6s cubic-bezier(.3, .7, .3, 1),
    rotate    .6s cubic-bezier(.3, .7, .3, 1),
    scale     .6s cubic-bezier(.3, .7, .3, 1),
    opacity   .22s ease .36s;
}
.stage__chars img.vem-da-direita,
.stage__chars img.vem-da-esquerda { scale: .82; }
/* posicionamento instantâneo antes de entrar */
.stage__chars img.sem-transicao { transition: none !important; }

/* ======================================================
   FAIXA 02 · miniaturas pequenas e quadradas (v55)
   Sem sombra pesada: a rolagem lateral já se anuncia sozinha.
   ====================================================== */
.card {
  width: clamp(64px, 19vw, 84px);
  aspect-ratio: 1;
  border-radius: 14px;
  opacity: .62;
  scale: .96;
  transition: opacity .3s, scale .3s, box-shadow .3s;
}
.card.is-active {
  opacity: 1;
  scale: 1;
  box-shadow: 0 0 0 2.5px var(--yellow);
}
.card::after { background: linear-gradient(0deg, rgb(5 8 30 / .72) 0%, transparent 58%); }
.card__name {
  left: 6px; right: 6px; bottom: 5px;
  font: 700 .58rem/1.06 var(--font-body);
  letter-spacing: -.01em;
}
.card__lock, .card__prev { scale: .74; transform-origin: top right; }
.card__prev { display: none; }
.rail { gap: 10px; }
.rail li { scroll-snap-align: center; }

/* ======================================================
   FAIXA 02 · José maior, tronco centralizado
   (a mão levantada pode sair um pouco do quadro)
   ====================================================== */
.stage__chars img[data-bg="jose"] { width: 128%; top: -10%; }
@media (min-width: 900px) { .stage__chars img[data-bg="jose"] { width: auto; height: 118%; top: -8%; } }

/* ======================================================
   FAIXA 02 · a mãozinha logo acima do nome (v56)
   ====================================================== */
.stage__swipe {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: rgb(255 255 255 / .82);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgb(0 0 0 / .35);
  transition: opacity .45s ease, translate .45s ease;
}
.stage__swipe[hidden] { display: none; }
.stage__swipe.is-gone { opacity: 0; translate: 0 -6px; pointer-events: none; }
.stage__swipe-hand {
  display: block; width: 20px; height: 20px;
  color: var(--yellow);
  animation: mao-arrasta 2.2s cubic-bezier(.4, 0, .3, 1) infinite;
}
.stage__swipe-hand svg { width: 100%; height: 100%; display: block; }
@keyframes mao-arrasta {
  0%, 100% { translate: -9px 0; rotate: -6deg; }
  45%      { translate:  9px 0; rotate:  6deg; }
  70%      { translate:  9px 0; rotate:  6deg; }
}
@media (prefers-reduced-motion: reduce) { .stage__swipe-hand { animation: none; } }

/* o sol flutua na área do personagem, nunca sobre os nomes */
.cat-sun { top: 46%; right: 5%; }
@media (min-width: 900px) { .cat-sun { top: 40%; right: 12%; } }

/* ======================================================
   CÉU DA FAIXA 02 (v56) — preso à faixa sem texto
   O JS mede onde a frase acaba e onde o nome começa; tudo fica entre os dois.
   ====================================================== */
.cat-sky { --ceu-a: 40%; --ceu-h: 26%; }
.cat-sun {
  top: calc(var(--ceu-a) + var(--ceu-h) * .06);
  right: 4%;
  width: clamp(64px, 18vw, 122px);
}
.cat-cloud--a { top: calc(var(--ceu-a) + var(--ceu-h) * .30); left: -9%;  right: auto; width: clamp(74px, 21vw, 150px); }
.cat-cloud--b { top: calc(var(--ceu-a) + var(--ceu-h) * .58); right: -10%; left: auto; width: clamp(62px, 18vw, 126px); }
.cat-cloud--c { top: calc(var(--ceu-a) + var(--ceu-h) * .80); left: -12%; right: auto; width: clamp(54px, 15vw, 104px); opacity: .82; }
.cat-star--a { top: calc(var(--ceu-a) + var(--ceu-h) * .04); left: 5%;  right: auto; }
.cat-star--b { top: calc(var(--ceu-a) + var(--ceu-h) * .20); left: 13%; right: auto; }
.cat-star--c { top: calc(var(--ceu-a) + var(--ceu-h) * .46); left: 4%;  right: auto; }
.cat-star--d { top: calc(var(--ceu-a) + var(--ceu-h) * .70); right: 6%; left: auto; }

/* ======================================================
   FAIXA 02 · carrossel em trilho (v58)
   Cada personagem tem o seu espaço no trilho, com uma folga entre eles.
   Deslizar move o trilho inteiro — eles nunca se sobrepõem.
   ====================================================== */
.stage__chars {
  --i: 0;
  --folga: 46%;                     /* espaço entre um personagem e o outro */
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: flex-start;
  gap: var(--folga);
  overflow: hidden;
  pointer-events: none;
  translate: calc(var(--i) * (-100% - var(--folga))) 0;
  transition: translate .62s cubic-bezier(.25, .7, .3, 1);
  will-change: translate;
}
.stage__slot {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
/* dentro do seu espaço, cada um volta a ter o enquadramento próprio */
.stage__chars img {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: auto;
  width: 104%;
  height: auto;
  max-width: none;
  max-height: none;
  translate: calc(-50% + var(--nudge-x, 0%)) 0;
  rotate: 0deg;
  scale: 1;
  opacity: 1;
  transition: none;
  filter: drop-shadow(0 22px 40px rgb(0 0 0 / .22));
}
.stage__chars img:not([data-char]) {
  left: 0;
  top: 6%;
  width: 100%;
  height: 94%;
  object-fit: cover;
  object-position: 50% 30%;
  translate: 0 0;
  filter: none;
}
@media (prefers-reduced-motion: reduce) { .stage__chars { transition: none; } }

/* enquadramento por história */
.stage__chars img[data-bg="davi"]   { width: 108%; top: 5%; }
.stage__chars img[data-bg="noe"]    { width: 112%; top: 4%; }
.stage__chars img[data-bg="daniel"] { width: 104%; top: 4%; }
.stage__chars img[data-bg="paes"]   { width: 104%; top: 4%; }
/* José: um pouco menor e deslocado para a direita, para centralizar o rosto */
.stage__chars img[data-bg="jose"]   { width: 100%; top: -2%; --nudge-x: 9%; }
@media (min-width: 900px) {
  .stage__chars img[data-char] { width: auto; height: 96%; top: 4%; }
  .stage__chars img[data-bg="jose"] { width: auto; height: 104%; top: 0; --nudge-x: 7%; }
}

/* ======================================================
   Carrossel (v61): a moldura recorta, o trilho desliza por dentro
   ====================================================== */
.stage__chars {
  display: block;
  gap: 0;
  translate: none;
  transition: none;
}
.stage__track {
  --i: 0;
  --folga: 46%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--folga);
  translate: calc(var(--i) * (-100% - var(--folga))) 0;
  transition: translate .62s cubic-bezier(.25, .7, .3, 1);
  will-change: translate;
}
@media (prefers-reduced-motion: reduce) { .stage__track { transition: none; } }

/* José: cabeça na mesma escala da do Daniel, e deslocado para a direita
   para o rosto ficar centralizado */
.stage__chars img[data-bg="jose"] { width: 84%; top: 1%; --nudge-x: 11%; }
@media (min-width: 900px) {
  .stage__chars img[data-bg="jose"] { width: auto; height: 88%; top: 6%; --nudge-x: 8%; }
}
