/* ======================================================
   CAÇADORES DOS SONS — DESIGN SYSTEM
   Instituto Educar com Evidências
   Versão profissional
   ====================================================== */

/* ===== TOKENS ===== */
:root {
  --primary:  #2b28d6;
  --yellow:   #fabc15;
  --navy:     #1f2868;
  --mint:     #00f4ba;
  --orange:   #ff571d;
  --leaf:     #2f9e44;
  --leaf-dark: #256e35;

  /* Verde, marrom e bege: os tons que dominam o material ilustrado deles.
     Entram como AMBIENTE (chão, madeira, divisórias); azul e amarelo seguem
     carregando marca e ação, para a identidade não se descaracterizar. */
  --green-deep: #234d33;   /* chão de floresta: base do rodapé */
  --green-mid:  #3f8f47;
  --brown:      #8b5e34;   /* madeira: filetes, nós e bordas */
  --brown-dark: #5a3a1e;
  --beige:      #f0e2c4;

  --primary-light: #eeeefe;
  --mint-light:    #e2fff9;
  --yellow-light:  #fff6e0;
  --orange-light:  #fff0eb;
  --navy-light:    #efeade;   /* pedra quente: o tom neutro acompanha o pergaminho, não o cinza-azulado */
  --leaf-light:    #eaf9ed;

  /* Ambiente: o mundo do Caçadores (pergaminho do Mapa do Guia), nunca branco clínico.
     A cor de marca fica para estrutura e ação; o fundo carrega o clima do produto. */
  --bg:       #fffaf0;   /* marfim quente: tela base */
  --bg-tint:  #fbeed4;   /* areia/pergaminho: faixa alternada com contraste real */
  --surface:  #fffdf7;   /* cards sobre as faixas */
  --text:     #1f2868;
  --text-soft: #4a527a;
  --text-muted: #5d6588;  /* escurecido para passar em AA sobre o fundo quente */
  --border:   #ece0c8;   /* borda quente, não cinza-azulada */

  --font-display: 'Baloo 2', 'Bebas Neue', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(31,40,104,.08);
  --shadow-md:  0 4px 20px rgba(31,40,104,.12);
  --shadow-lg:  0 12px 40px rgba(31,40,104,.14);

  --max-w: 1200px;
  --max-w-narrow: 780px;

  --transition: .22s ease;
  --transition-md: .35s ease;
}

/* ===== TELA DE CARREGAMENTO =====
   Pergaminho do mundo do Caçadores com a trilha pontilhada do mapa avançando. */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, #fffaf0 0%, transparent 70%),
    var(--bg-tint);
  transition: opacity .45s ease, visibility .45s ease;
}

.preloader.is-done { opacity: 0; visibility: hidden; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.preloader-inner img { width: 210px; height: auto; }

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--navy);
}

/* A trilha do Mapa do Guia saindo do ponto de partida e chegando no X do tesouro:
   os pontos acendem em sequência e o baú responde quando a trilha chega nele. */
.preloader-mapa {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 2px dashed rgba(139,94,52,.3);
}

.pl-partida {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 0 5px rgba(139,94,52,.16);
  flex: 0 0 auto;
}

.preloader-trilha { display: flex; align-items: center; gap: .5rem; }

.preloader-trilha i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(139,94,52,.28);
  animation: trilha-anda 2.2s ease-in-out infinite;
}

.preloader-trilha i:nth-child(1) { animation-delay: 0s; }
.preloader-trilha i:nth-child(2) { animation-delay: .12s; }
.preloader-trilha i:nth-child(3) { animation-delay: .24s; }
.preloader-trilha i:nth-child(4) { animation-delay: .36s; }
.preloader-trilha i:nth-child(5) { animation-delay: .48s; }
.preloader-trilha i:nth-child(6) { animation-delay: .60s; }
.preloader-trilha i:nth-child(7) { animation-delay: .72s; }
.preloader-trilha i:nth-child(8) { animation-delay: .84s; }

@keyframes trilha-anda {
  0%, 45%, 100% { background: rgba(139,94,52,.28); transform: translateY(0) scale(1); }
  14%           { background: var(--yellow); transform: translateY(-6px) scale(1.4); }
}

/* X do tesouro no fim da trilha */
.pl-tesouro {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: radial-gradient(circle at 35% 30%, #ffd75e 0%, var(--yellow) 45%, #e09b06 100%);
  box-shadow: 0 4px 10px rgba(224,155,6,.35);
  animation: tesouro-acha 2.2s ease-in-out infinite;
}

.pl-tesouro b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 4px;
  border-radius: 2px;
  background: var(--brown-dark);
}

.pl-tesouro b:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.pl-tesouro b:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

@keyframes tesouro-acha {
  0%, 40%, 100% { transform: scale(1)    rotate(0deg); box-shadow: 0 4px 10px rgba(224,155,6,.35); }
  55%           { transform: scale(1.22) rotate(-8deg); box-shadow: 0 6px 22px rgba(250,188,21,.7); }
  70%           { transform: scale(1.05) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { transition: none; }
  .preloader-trilha i { animation: none; background: rgba(139,94,52,.45); }
  .pl-tesouro { animation: none; }
}

/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* prevents horizontal scroll even with position:fixed elements on iOS */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .875rem;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
.display-hero  { font-size: clamp(3.4rem, 7vw, 6.6rem); }
.display-xl    { font-size: clamp(1.9rem, 3.2vw, 3rem); }
.display-lg    { font-size: clamp(1.85rem, 3.1vw, 2.85rem); }
.display-md    { font-size: clamp(1.5rem, 2.3vw, 2.15rem); }

.display em { font-style: normal; color: var(--primary); display: block; }

.lead {
  font-size: clamp(.95rem, 1.3vw, 1.05rem);
  color: var(--text-soft);
  max-width: 65ch;
}

.text-support {
  font-size: 1rem;
  color: var(--text-soft);
}

.text-strong { font-weight: 700; }

.text-primary { color: var(--primary); }

.label-caps {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.fineprint {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2rem;
}

/* ===== STATEMENTS ===== */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
}

.statement-primary {
  background: var(--primary-light);
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

.statement-navy {
  background: var(--navy-light);
  color: var(--navy);
  border-left: 4px solid var(--navy);
}

.statement-onDark {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: rgba(255,255,255,.85);
}

.statement-accent {
  color: var(--mint);
  display: block;
}

.statement-navy .statement-accent {
  color: var(--primary);
}

/* ===== LAYOUT ===== */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .cta-row { justify-content: center; }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding-block: 6rem 5rem;
  overflow: hidden;
}

.section-tint { background: var(--bg-tint); }

/* Divisor de seção: filete que esmaece nas pontas com um nó central em losango,
   ecoando os pontos de parada da trilha do Mapa do Guia. */
.section:not(.section-offer)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(460px, 62%);
  height: 1px;
  /* filete em madeira, não em cinza: o divisor passa a ser do mesmo mundo do mapa */
  background: linear-gradient(90deg, transparent, rgba(139,94,52,.34) 22%, rgba(139,94,52,.34) 78%, transparent);
  pointer-events: none;
}

.section:not(.section-offer)::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--yellow);
  border-radius: 2px;
  pointer-events: none;
}

/* Página sem seção anterior (política de privacidade): o divisor viraria
   um losango solto logo abaixo do header. */
.section-plain::before,
.section-plain::after { display: none; }

/* Depois de um bloco escuro a própria troca de fundo já é a transição:
   o filete e o nó ali virariam sujeira sobre o navy. */
.stats-bar + .section::before,
.stats-bar + .section::after,
.section-lenda + .section::before,
.section-lenda + .section::after,
.section-offer + .section::before,
.section-offer + .section::after { display: none; }

#problema {
  background:
    radial-gradient(ellipse 55% 50% at 92% 6%, var(--yellow-light) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 4% 95%, var(--leaf-light) 0%, transparent 70%),
    var(--bg-tint);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-offer {
  background: linear-gradient(135deg, var(--navy) 0%, #2b28d6 100%);
  color: #fff;
}

.section-head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-head .section-sub,
.section-head .lead {
  max-width: 72ch;
  margin-inline: auto;
}

.section-sub {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  max-width: 65ch;
}

.section-dark .section-sub,
.section-offer .section-sub {
  color: rgba(255,255,255,.7);
}

/* ===== EYEBROW ===== */
.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}

.eyebrow-sep { opacity: .4; margin-inline: .3em; }

.eyebrow-primary { color: var(--primary); }
.eyebrow-mint    { color: #00b88b; }
.eyebrow-yellow  { color: var(--yellow); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: .85em 1.8em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg { font-size: 1rem; padding: 1em 2.2em; border-radius: var(--radius-md); }

.btn-block { width: 100%; text-align: center; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #1e1cb2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,40,214,.35);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}
.btn-yellow:hover, .btn-yellow:focus-visible {
  background: #e49e10;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,172,21,.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--primary);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--primary-light);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,240,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 96px;
}

.logo { height: 84px; width: auto; }

.logo-link { flex-shrink: 0; }

.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: .5em .75em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--primary);
  background: var(--primary-light);
}

.header-cta { flex-shrink: 0; font-size: .83rem; padding: .7em 1.4em; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:hover { background: var(--bg-tint); }

.nav-cta-mobile { display: none; padding: .5rem .75rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-block: 5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 88% 12%, var(--mint-light) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 8% 92%, var(--yellow-light) 0%, transparent 70%);
}

/* ===== FOLHAS DECORATIVAS ===== */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

/* Deriva lenta da camada decorativa: tira o ar de página congelada.
   A animação vai no <svg> interno porque o contêiner .leaf-* já usa
   transform para orientar a folha em cada canto. */
.leaf-deco svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: leaf-drift 18s ease-in-out infinite alternate;
  transform-origin: 50% 80%;
}

@keyframes leaf-drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(0, -12px, 0) rotate(4deg); }
}

.leaf-br svg { animation-duration: 22s; animation-delay: -6s; }
.leaf-tr svg { animation-duration: 20s; animation-delay: -3s; }
.leaf-bl svg { animation-duration: 24s; animation-delay: -9s; }

@media (prefers-reduced-motion: reduce) {
  .leaf-deco svg { animation: none; }
}

.leaf-fill-1 { fill: var(--leaf); }
.leaf-fill-2 { fill: #4cb463; }
.leaf-vein { stroke: var(--leaf-dark); stroke-width: 2; fill: none; opacity: .55; stroke-linecap: round; }

/* O conteúdo sempre acima da decoração: a folha é fundo, nunca disputa com texto. */
.hero > .container,
.section > .container { position: relative; z-index: 1; }

.leaf-tl { top: -1.5rem; left: -1.5rem; width: 110px; height: 110px; }
.leaf-br { bottom: -1.5rem; right: -1.5rem; width: 130px; height: 130px; transform: rotate(180deg); }
.leaf-tr { top: -1rem; right: -1rem; width: 90px; height: 90px; transform: scaleX(-1); }
.leaf-bl { bottom: -1rem; left: -1rem; width: 90px; height: 90px; transform: rotate(180deg) scaleX(-1); }

@media (max-width: 768px) {
  .leaf-deco { transform: scale(.65); }
  .leaf-tl { top: -1rem; left: -1rem; }
  .leaf-br { bottom: -1rem; right: -1rem; transform: rotate(180deg) scale(.65); }
  .leaf-tr { transform: scaleX(-1) scale(.65); }
  .leaf-bl { transform: rotate(180deg) scaleX(-1) scale(.65); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 4rem;
}

.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }

/* Entrada do hero no load (não depende de scroll) */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero-copy > *,
.hero-visual {
  animation: hero-in .7s cubic-bezier(.22,.61,.36,1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero-visual { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-visual { animation: none; }
}

.hero-copy .display-xl { margin-top: .5rem; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.chip {
  font-size: .78rem;
  font-weight: 700;
  padding: .35em .9em;
  border-radius: 100px;
  white-space: nowrap;
}

.chip-primary { background: var(--primary-light); color: var(--primary); }
.chip-mint    { background: var(--mint-light);    color: #008c69; }
.chip-yellow  { background: var(--yellow-light);  color: #7a5500; }
.chip-orange  { background: var(--orange-light);  color: var(--orange); }
.chip-navy    { background: var(--navy-light);    color: var(--navy); }

.hero-actions { display: flex; flex-direction: column; gap: .75rem; }

.price-note {
  font-size: .9rem;
  color: var(--text-muted);
}

.price-note strong { color: var(--text); }

.hero-actions .price-note {
  /* inline-block, não inline-flex: o flex descarta o espaço entre "por" e
     <strong>R$ 270,00</strong> e o preço colava na palavra anterior. */
  display: inline-block;
  background: rgba(251,172,21,.13);
  border: 1.5px solid var(--yellow);
  border-radius: 2rem;
  padding: .55rem 1.35rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
}

.hero-actions .price-note strong {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;   /* âncora do mascote */
}

.hero-visual img,
.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 50px rgba(31,40,104,.15));
}

/* Menino explorador saindo do mapa, no canto inferior direito */
.hero-visual .hero-mascote {
  position: absolute;
  right: 2%;
  bottom: -7%;
  width: 27%;
  max-width: 190px;
  border-radius: 0;
  filter: drop-shadow(0 10px 18px rgba(31,40,104,.28));
  pointer-events: none;
  z-index: 2;
}

/* ===== PROBLEMA ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-block: 2rem;
}

.problem-text { font-size: 1.1rem; }
.problem-text p + p { margin-top: 1rem; }

.problem-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
  color: var(--text-soft);
}

.problem-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: .55rem;
}

/* ===== MÉTODO + AVENTURA ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.split-divider {
  background: var(--border);
  width: 2px;
}

.split-side { display: flex; flex-direction: column; gap: 1rem; }

.split-compact { margin-bottom: 2.5rem; }
.split-compact .text-strong { font-size: 1.15rem; color: var(--navy); }

.verbs-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
}

.verbs-block .label-caps { color: rgba(255,255,255,.6); }

.verbs {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.verbs li {
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: .3em .8em;
  color: var(--mint);
}

.missions-teaser {
  margin-bottom: 2rem;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.mission-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.mission-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.section-tint .mission-card { background: var(--surface); }

.mission-index {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  opacity: .45;
  line-height: 1;
}

/* ===== PROGRESSÃO ===== */
.figure-graphic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.figure-crop-03 img,
.figure-crop-04 img,
.figure-crop-05 img,
.figure-crop-06 img { width: 100%; }

.weeks {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  counter-reset: week;
}

.weeks::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 3px dashed var(--primary-light);
  z-index: 0;
}

.weeks .week { position: relative; z-index: 1; }

.week {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-soft);
}

.week-badge {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: .35rem;
}

.week-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.week-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.25;
}

.week-1 .week-num { color: var(--yellow); }
.week-2 .week-num { color: var(--primary); }
.week-3 .week-num { color: var(--orange); }
.week-4 .week-num { color: var(--mint); }
.week-5 .week-num { color: #e01070; }
.week-6 .week-num { color: #cc2222; }

/* ===== CARDS ===== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-block: 2rem;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-block: 2rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.section-tint .card { background: var(--surface); }

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
}

.card p { font-size: .92rem; color: var(--text-soft); }

.card-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .88rem;
  color: var(--text-soft);
}

.card-list li::before {
  content: '·  ';
  color: var(--text-muted);
}

.card-index {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .25rem;
}

.card-accent-primary { border-top: 4px solid var(--primary); }
.card-accent-mint    { border-top: 4px solid var(--mint); }
.card-accent-yellow  { border-top: 4px solid var(--yellow); }
.card-accent-orange  { border-top: 4px solid var(--orange); }

.card-accent-primary .card-index { color: var(--primary); }
.card-accent-mint    .card-index { color: #00b88b; }
.card-accent-yellow  .card-index { color: #b07800; }
.card-accent-orange  .card-index { color: var(--orange); }

/* ===== ENTRY CARDS ===== */
.card-entry { border-top: none; border-left: 4px solid; }
.card-accent-mint.card-entry  { border-left-color: var(--mint); }
.card-accent-orange.card-entry { border-left-color: var(--orange); }

/* ===== PREVIEW EDITORIAL ===== */
.preview-editorial {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.preview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.preview img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  /* Máscara de proteção de conteúdo */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,.15) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,.15) 100%);
}

.preview-lg img {
  aspect-ratio: 3/4;
}

.preview figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .8rem;
  background: linear-gradient(transparent, rgba(31,40,104,.7));
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.preview-missions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.preview-tilt-a { transform: rotate(-1.5deg); }
.preview-tilt-b { transform: rotate(1.5deg); }
.preview-tilt-a:hover,
.preview-tilt-b:hover { transform: rotate(0) translateY(-4px); }

.preview-missions .preview img {
  aspect-ratio: 3/4;
}

/* ===== PLACEHOLDER (se arquivo ausente) ===== */
.preview img[src$=".webp"]::after,
.preview img[src$=".png"]::after {
  /* fallback em CSS não funciona em todos browsers,
     placeholder via JS/onerror se necessário */
}

/* ===== EVOLUTION TRACK ===== */
.evolution { margin-block: 3rem; }

.evolution-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 1rem;
}

.evo-step {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: .88rem;
}

.evo-step:not(:last-child)::after {
  content: '→';
  display: inline-block;
  margin-inline: .8rem;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.evo-1 { color: var(--yellow); }
.evo-2 { color: var(--primary); }
.evo-3 { color: var(--orange); }
.evo-4 { color: var(--orange); }
.evo-5 { color: var(--mint); }
.evo-6 { color: #cc2222; }

/* ===== PERSONAGENS ===== */
#personagens {
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 55% at 8% 15%, var(--primary-light) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 96% 90%, var(--yellow-light) 0%, transparent 70%),
    var(--bg);
}

.personagens-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.personagens-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.personagens-destaque {
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.personagens-nome {
  color: var(--primary);
  margin-bottom: .5rem;
}

.personagens-virada {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.personagens-virada em { font-style: italic; }

.personagens-virada strong {
  color: var(--text);
  font-style: normal;
  display: block;
  margin-top: .4rem;
}

.personagens-visual {
  align-self: center;
}

.personagens-visual img {
  width: 100%;
  height: auto;
  max-width: 560px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 16px 32px rgba(31,40,104,.16));
}

/* ===== CONQUISTAS ===== */
.badges-wrap {
  max-width: 680px;
  margin-inline: auto;
  margin-block: 2rem;
}


/* ===== BADGES VISUAIS (emblemas oficiais ilustrados) ===== */
.badges-visual-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.badges-visual-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  padding: 1.25rem .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.badges-visual-grid li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.badges-visual-grid img {
  width: 100%;
  max-width: 100px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(31,40,104,.14));
}

.badges-visual-grid span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.badges-visual-grid .badge-final-item {
  background: var(--navy);
  border-color: var(--navy);
}

.badges-visual-grid .badge-final-item span { color: var(--yellow); }

/* ===== LENDA DOS SONS ===== */
.section-lenda {
  position: relative;
  background: #0d1240;
  overflow: hidden;
  padding-block: 6rem 5rem;
}

.lenda-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(43,40,214,.35) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 30% 50%, rgba(0,244,186,.08) 0%, transparent 60%);
  pointer-events: none;
}

.lenda-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;  /* a coluna do emblema é mais larga: leva os dois personagens */
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* Trio do material de apoio: menino, emblema e menina, todos pisando na mesma linha de base. */
.lenda-emblem-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lenda-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);  /* fixa o brilho no emblema; a base flex moveria a posição estática */
  width: 55%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,172,21,.25) 0%, rgba(43,40,214,.15) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
}

.lenda-emblem-fig {
  flex: 0 1 60%;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.lenda-emblem-fig img {
  width: 100%;
  filter: drop-shadow(0 0 60px rgba(251,172,21,.3)) drop-shadow(0 20px 40px rgba(0,0,0,.5));
}

/* O sol no centro da espiral acende de verdade: duas camadas em screen sobre
   a arte, ancoradas no ponto exato do emblema (49,5% x 44%). */
.lenda-sun,
.lenda-sun-halo {
  position: absolute;
  left: 49.5%;
  top: 44%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.lenda-sun {
  width: 22%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
              rgba(255,248,214,.95) 0%,
              rgba(255,206,74,.75) 30%,
              rgba(255,150,20,.25) 55%,
              transparent 72%);
  filter: blur(5px);
  animation: sun-pulse 3.6s ease-in-out infinite;
}

.lenda-sun-halo {
  width: 58%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
              rgba(255,196,60,.34) 0%,
              rgba(255,150,20,.14) 45%,
              transparent 70%);
  filter: blur(18px);
  animation: sun-pulse 3.6s ease-in-out infinite;
  animation-delay: -1.2s;
}

/* teto em .9: em opacidade cheia o brilho apagava a espiral do emblema */
@keyframes sun-pulse {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scale(.9); }
  50%      { opacity: .9;  transform: translate(-50%, -50%) scale(1.12); }
}

/* fora da animação o sol continua aceso, só não pulsa */
@media (prefers-reduced-motion: reduce) {
  .lenda-sun, .lenda-sun-halo {
    animation: none;
    opacity: .85;
    transform: translate(-50%, -50%);
  }
}

.lenda-char {
  flex: 0 0 21%;
  min-width: 0;   /* sem isso a largura intrínseca do PNG (455px) vira piso e estoura a linha */
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.45));
}

.lenda-char-left  { margin-right: -3%; }
.lenda-char-right { margin-left: -3%; }

.lenda-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #fff;
}

.lenda-title {
  color: var(--yellow);
  line-height: .95;
}

.lenda-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.lenda-divider {
  width: 48px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
}

.lenda-quote {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}

.lenda-quote em {
  font-style: normal;
  color: var(--mint);
  display: block;
  margin-top: .4rem;
}

/* ===== JOURNEY FLOW INTERATIVO ===== */
.journey-flow {
  position: relative;  /* âncora da trilha; sem isso ela se posicionava pela seção */
  margin-top: 3rem;
}

.journey-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 2rem;
}

/* Trilha pontilhada ligando as etapas: ecoa a trilha do Mapa do Guia e,
   diferente do filete sólido, continua visível sobre o fundo pergaminho. */
.journey-track {
  position: absolute;
  top: 28px;   /* centro vertical dos ícones de 56px */
  left: 2.25rem;
  right: 2.25rem;
  height: 0;
  border-top: 3px dashed rgba(31,40,104,.2);
  z-index: 0;
}

.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.journey-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition);
}

.journey-btn:hover { transform: translateY(-2px); }
.journey-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: var(--radius-sm); }

.journey-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.journey-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

/* Cor de repouso por etapa (evita ícones cinza quando inativos) */
.journey-step[data-step="0"] .journey-icon { background: var(--primary-light); border-color: var(--primary-light); color: var(--primary); }
.journey-step[data-step="1"] .journey-icon { background: var(--mint-light);    border-color: var(--mint-light);    color: #008c69; }
.journey-step[data-step="2"] .journey-icon { background: var(--yellow-light);  border-color: var(--yellow-light);  color: #7a5500; }
.journey-step[data-step="3"] .journey-icon { background: var(--orange-light); border-color: var(--orange-light); color: var(--orange); }
.journey-step[data-step="4"] .journey-icon { background: var(--navy-light);   border-color: var(--navy-light);    color: var(--navy); }

/* Active step */
.journey-step.js-active .journey-icon { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(43,40,214,.35); }
.journey-step.js-active .journey-label { color: var(--primary); }

/* Step completed */
.journey-step.js-done .journey-icon { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

/* Color per step */
.journey-step[data-step="0"].js-active .journey-icon { background: var(--primary); border-color: var(--primary); box-shadow: 0 4px 16px rgba(43,40,214,.35); }
.journey-step[data-step="1"].js-active .journey-icon { background: #00b88b; border-color: #00b88b; box-shadow: 0 4px 16px rgba(0,244,186,.3); }
.journey-step[data-step="1"].js-active .journey-label { color: #008c69; }
.journey-step[data-step="2"].js-active .journey-icon { background: var(--yellow); border-color: var(--yellow); box-shadow: 0 4px 16px rgba(251,172,21,.35); color: var(--navy); }
.journey-step[data-step="2"].js-active .journey-label { color: #7a5500; }
.journey-step[data-step="3"].js-active .journey-icon { background: var(--orange); border-color: var(--orange); box-shadow: 0 4px 16px rgba(255,87,29,.35); }
.journey-step[data-step="3"].js-active .journey-label { color: var(--orange); }
.journey-step[data-step="4"].js-active .journey-icon { background: var(--navy); border-color: var(--navy); box-shadow: 0 4px 16px rgba(31,40,104,.4); }
.journey-step[data-step="4"].js-active .journey-label { color: var(--navy); }

/* Detail panel */
.journey-details {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 130px;
}

.journey-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  animation: fadeSlide .3s ease;
}

.journey-detail[hidden] { display: none; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.journey-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.jd-color-1 { background: var(--primary-light); color: var(--primary); }
.jd-color-2 { background: var(--mint-light);    color: #008c69; }
.jd-color-3 { background: var(--yellow-light);  color: #7a5500; }
.jd-color-4 { background: var(--orange-light);  color: var(--orange); }
.jd-color-5 { background: var(--navy-light);    color: var(--navy); }

.journey-detail-body { display: flex; flex-direction: column; gap: .4rem; }

.journey-detail-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--navy);
}

.journey-detail p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 65ch;
}

/* ===== FORA DA TELA ===== */
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
}

.flow-step {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: .6em 1.2em;
  border-radius: var(--radius-sm);
}

.flow-step:not(:last-child)::after {
  content: '→';
  font-family: sans-serif;
  font-size: 1.3rem;
  margin-inline: .5rem;
  color: var(--text-muted);
}

.flow-1 { background: var(--primary-light); color: var(--primary); }
.flow-2 { background: var(--mint-light);    color: #008c69; }
.flow-3 { background: var(--yellow-light);  color: #7a5500; }
.flow-4 { background: var(--orange-light);  color: var(--orange); }
.flow-5 { background: var(--navy);          color: var(--yellow); }

/* ===== RECEBE — DELIVERABLES ===== */
.receive-grid {
  margin-bottom: 3rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.deliverable {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid;
}

.deliverable-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
}

.deliverable p { font-size: .88rem; color: var(--text-soft); }

.d-primary { background: var(--primary-light); border-color: var(--primary);  }
.d-primary .deliverable-title { color: var(--primary); }
.d-orange  { background: var(--orange-light);  border-color: var(--orange); }
.d-orange  .deliverable-title { color: var(--orange); }
.d-navy    { background: var(--navy-light);    border-color: var(--navy); }
.d-navy    .deliverable-title { color: var(--navy); }
.d-mint    { background: var(--mint-light);    border-color: var(--mint); }
.d-mint    .deliverable-title { color: #008c69; }
.d-yellow  { background: var(--yellow-light);  border-color: var(--yellow); }
.d-yellow  .deliverable-title { color: #7a5500; }
.d-final   { background: var(--navy); border-left: none; border-top: 4px solid var(--yellow); grid-column: 1 / -1; max-width: 400px; width: 100%; margin-inline: auto; text-align: center; }
.d-final   .deliverable-title { color: var(--yellow); }
.d-final   p { color: rgba(255,255,255,.7); }

/* ===== VALOR PERCEBIDO ===== */
.effort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-block: 2rem;
}

.effort {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-soft);
}

.section-tint .effort { background: var(--bg); }

.effort-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary);
  opacity: .3;
  line-height: 1;
}

/* ===== AUDIENCE ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-block: 2rem;
}

.tag-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .75rem; }

.tag {
  font-size: .85rem;
  font-weight: 600;
  padding: .4em .9em;
  border-radius: 100px;
}

.tag-primary { background: var(--primary-light); color: var(--primary); }
.tag-mint    { background: var(--mint-light);    color: #008c69; }

/* ===== FAQ ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: .5rem; }

.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.section-tint .acc-item { background: var(--surface); }

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: transparent;
  transition: background var(--transition);
}

.acc-trigger:hover { background: var(--bg-tint); }
.acc-trigger:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

.acc-trigger[aria-expanded="true"] { color: var(--primary); }

.acc-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
  transition: transform var(--transition);
}

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
}

.acc-icon::before { width: 10px; height: 2px; }
.acc-icon::after  { width: 2px; height: 10px; transition: transform var(--transition); }

.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }

.acc-panel {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--text-soft);
}

.acc-panel[hidden] { display: none; }

/* ===== OFERTA ===== */
.offer-card {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.offer-card .display-lg { color: #fff; }

.text-mint { color: var(--mint); }

.offer-summary {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.offer-summary li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 600;
  padding: .4em .9em;
  border-radius: 100px;
}

.offer-price { display: flex; flex-direction: column; align-items: center; gap: .25rem; }

.offer-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.offer-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--yellow);
  line-height: 1;
}

.microcopy {
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  margin-top: -.5rem;
}

/* ===== FECHAMENTO ===== */
.section-closing {
  background: var(--navy);
}

.closing-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.closing-inner .eyebrow { margin-bottom: 0; }

.closing-headline { color: #fff; }

.closing-narrative {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.closing-footer-line {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.8;
}

.closing-footer-line strong {
  color: #fff;
  display: block;
  margin-top: .25rem;
}

.closing-inner .cta-row { align-items: center; }

.closing-price,
.closing-price strong { color: rgba(255,255,255,.7); }

/* ===== CTA ROW ===== */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 3.5rem;   /* respiro entre o conteúdo da seção e a chamada */
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  border-top: 3px solid var(--primary);
}

.stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
  min-height: 72px;
}

.stat {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.5rem;
  flex: 1;
  justify-content: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: .9;
}

.stat-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
  max-width: 10em;
}

/* "desafios para imprimir" é o rótulo mais longo: sem folga extra ele quebra
   em 3 linhas e desalinha a fileira inteira. */
.stat-3 { flex: 1.4; }

.stat-1 .stat-num { color: var(--yellow); }
.stat-2 .stat-num { color: var(--mint); }
.stat-3 .stat-num { color: var(--orange); }
.stat-4 .stat-icon { color: var(--primary); background: rgba(43,40,214,.3); border-radius: 50%; padding: .35rem; }
.stat-5 .stat-icon { color: var(--mint); background: rgba(0,244,186,.15); border-radius: 50%; padding: .35rem; }
.stat-6 .stat-icon { color: var(--yellow); background: rgba(251,172,21,.15); border-radius: 50%; padding: .35rem; }

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
  flex-shrink: 0;
}

/* ===== PROBLEMA CARDS ===== */
.problem-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.problem-intro .lead { margin-top: 1rem; }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.prob-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prob-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.prob-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.prob-icon-1 { background: var(--primary); color: #fff; }
.prob-icon-2 { background: var(--mint);    color: var(--navy); }
.prob-icon-3 { background: var(--orange);  color: #fff; }
.prob-icon-4 { background: var(--yellow);  color: var(--navy); }
.prob-icon-5 { background: var(--navy);    color: #fff; }
.prob-icon-6 { background: var(--primary); color: #fff; }

.prob-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.1;
}

.prob-card p {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
/* ===== RODAPÉ =====
   Fim da trilha: chão de floresta em verde escuro, faixa de madeira no topo e a
   trilha pontilhada do mapa fechando o percurso. Verde/marrom/bege como ambiente. */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 15% 0%, rgba(63,143,71,.28) 0%, transparent 65%),
    linear-gradient(180deg, #2a5a3b 0%, var(--green-deep) 55%, #1b3c28 100%);
  color: rgba(255,255,255,.75);
  padding-block: 3.5rem 0;
  overflow: hidden;
}

/* faixa de madeira + trilha pontilhada, o mesmo pontilhado do Mapa do Guia */
.footer-trilha {
  position: absolute;
  inset: 0 0 auto 0;
  height: 14px;
  background: linear-gradient(180deg, var(--brown) 0%, var(--brown-dark) 100%);
}

.footer-trilha::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 0;
  border-top: 3px dashed rgba(240,226,196,.28);
}

/* margem folgada à direita: com overflow:hidden no rodapé, encostar na borda cortaria a folha */
.leaf-footer {
  top: 2.75rem;
  right: 5%;
  width: 104px;
  height: 104px;
  opacity: .34;
  transform: scaleX(-1) rotate(14deg);
}

/* verde claro: o verde padrão da folha sumiria no chão de floresta do rodapé */
.leaf-footer .leaf-fill-2 { fill: #7fd18f; }
.leaf-footer .leaf-vein { stroke: #2a5c36; opacity: .7; }

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 1.5rem;
}

.site-footer .logo { filter: brightness(0) invert(1); opacity: .85; height: 64px; width: auto; }

.footer-brand { display: flex; flex-direction: column; gap: .85rem; align-items: flex-start; }

.footer-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--yellow);
}

.footer-text { font-size: .85rem; line-height: 1.65; max-width: 34ch; }
.footer-small { font-size: .78rem; }

.footer-col { display: flex; flex-direction: column; gap: .85rem; }

.footer-heading {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .1rem; }

.footer-links a {
  display: inline-block;
  padding: .35rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--yellow); }

.footer-btn { align-self: flex-start; margin-top: .35rem; }

.contatos { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.contatos a { display: inline-flex; align-items: center; gap: .55rem; min-height: 44px; color: currentColor; text-decoration: none; font-size: .85rem; }
.contatos a:hover { color: #fff; }
.contatos svg { flex: 0 0 auto; }

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(240,226,196,.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
}

.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom .footer-text { max-width: none; }
.footer-sep { margin-inline: .4em; opacity: .5; }
.footer-credit { color: rgba(255,255,255,.62); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: #fff;
  padding: .7rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
  animation: wa-float 3.2s ease-in-out infinite alternate,
             wa-pulse 2.8s ease-out 1.2s infinite;
}

@keyframes wa-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-9px); }
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

.wa-float:hover {
  animation-play-state: paused;
  transform: scale(1.13);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Botão redondo, como manda a esteira: a versão em pílula com texto cobria o
   último item da barra de estatísticas na primeira dobra do desktop. */
.wa-text { display: none; }

/* ===== MOBILE CTA BAR (fixo ao rolar, exibido só em telas de celular) ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--navy);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -6px 24px rgba(13,18,64,.35);
  padding: .75rem 1.25rem;
  padding-bottom: calc(.75rem + env(safe-area-inset-bottom));
}

.mobile-cta-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.mobile-cta-info {
  flex: 1;
  min-width: 0;
}

.mobile-cta-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.mobile-cta-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-top: .1rem;
}

.mobile-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: .82rem;
  padding: .7em 1.3em;
  background: var(--yellow);
  color: var(--navy);
}
.mobile-cta-btn:hover, .mobile-cta-btn:focus-visible {
  background: #e49e10;
}

/* ===== PÁGINA LEGAL (política de privacidade) ===== */
.legal-body { color: var(--text-soft); }

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p { margin-bottom: 1rem; line-height: 1.75; }

.legal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-body li { margin-bottom: .4rem; line-height: 1.7; }

.legal-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.legal-update {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
}

/* ===== NAV ACTIVE ===== */
.nav-link--active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== PLACEHOLDER IMAGES ===== */
.preview img {
  min-height: 60px;
  background: var(--bg-tint);
}

/* ===== RESPONSIVE ===== */

/* 1200px → tablet large */
@media (max-width: 1200px) {
  .mission-cards { grid-template-columns: 1fr 1fr; }
  .weeks { grid-template-columns: repeat(3, 1fr); }
}

/* 992px */
@media (max-width: 992px) {
  .section { padding-block: 4.5rem 3.5rem; }
  .section-lenda { padding-block: 4rem 3.5rem; }

  .stats-row { flex-wrap: wrap; }
  .stat { flex: 0 0 calc(33.333% - 1px); border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-divider { display: none; }

  .problem-cards { grid-template-columns: 1fr 1fr; }

  .lenda-layout { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  /* limita o trio inteiro, não só o emblema: com a coluna larga os personagens
     ficariam maiores que a medalha. */
  .lenda-emblem-wrap { max-width: 520px; margin-inline: auto; }
  .lenda-divider { margin-inline: auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .lenda-copy { align-items: center; }

  .journey-steps { gap: 0; }
  .journey-step { overflow: hidden; }
  .journey-btn { width: 100%; }
  /* Rótulos em 2 linhas em vez de reticências: "Participar" e "Conquistar" não
     cabem em ~68px de coluna e saíam cortados. */
  .journey-label { font-size: .7rem; letter-spacing: 0; white-space: normal; text-overflow: clip; line-height: 1.15; text-align: center; }
  .journey-detail { flex-direction: column; gap: 1rem; padding: 1.5rem; }

  /* Verbs: 2-column symmetric grid */
  .verbs { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
  .verbs li { font-size: 1.25rem; text-align: center; }

  /* Stats bar: column layout for visual symmetry */
  .stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.1rem .75rem;
    gap: .3rem;
  }
  .stat-label { max-width: none; }

  .header-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  /* pedido do cliente: no celular a arte vem antes do texto */
  .hero-visual { order: 1; }
  .hero-copy   { order: 2; }

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

  .split { grid-template-columns: 1fr; }
  .split-divider { width: 100%; height: 2px; }

  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }

  .preview-editorial { grid-template-columns: 1fr 1fr; }
  .preview-lg { grid-column: span 2; }
  .preview-lg img { aspect-ratio: 16/9; }

  .preview-missions { grid-template-columns: 1fr 1fr; }

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

  .audience-grid { grid-template-columns: 1fr; gap: 2rem; }

  .deliverables { grid-template-columns: 1fr 1fr; }
  .personagens-layout { grid-template-columns: 1fr; gap: 2rem; }
  .personagens-visual { order: -1; }
  .personagens-visual img { max-width: 380px; }

  .badges-visual-grid { grid-template-columns: repeat(3, 1fr); }

}

/* 768px → tablet */
@media (max-width: 768px) {
  /* header mais baixo no celular: 96px comeria viewport demais */
  .header-inner { height: 76px; }
  .logo { height: 60px; }

  .lenda-emblem-wrap { max-width: 420px; }

  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--surface);
    z-index: 99;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav-link { font-size: 1rem; padding: .75rem 1rem; }
  .nav-cta-mobile { display: block; }

  .display-xl { font-size: 2.2rem; }
  .display-lg { font-size: 1.9rem; }
  .display-hero { font-size: 3.5rem; }

  .weeks { grid-template-columns: repeat(2, 1fr); }
  .prof-grid { grid-template-columns: repeat(3, 1fr); }
  .criancas-boxes { grid-template-columns: 1fr; }

  .flow { flex-direction: column; align-items: flex-start; padding-left: 1rem; }
  .flow-step { width: 100%; }
  .flow-step:not(:last-child)::after { content: '↓'; margin: .25rem 0; }
  .flow-step:not(:last-child) { margin-bottom: .25rem; }

  .evolution-track { flex-direction: column; align-items: flex-start; }
  .evo-step:not(:last-child)::after { content: '↓'; margin-inline: 0; margin-block: .25rem; display: block; }

  .mission-cards { grid-template-columns: 1fr; }

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

  .preview-editorial { grid-template-columns: 1fr; }
  .preview-lg { grid-column: auto; }
  .preview-lg img { aspect-ratio: 4/3; }
  .preview-missions { grid-template-columns: 1fr 1fr; }
  .preview-tilt-a, .preview-tilt-b { transform: none; }
  .preview-missions .preview:hover { transform: translateY(-3px); }

  .deliverables { grid-template-columns: 1fr; }
  .section-dark .lenda-copy { text-align: center; }
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
  .criancas-boxes { grid-template-columns: 1fr; }

  /* safe-area entra na conta: em iPhone com home indicator a barra fixa cresce
     ~34px e o flutuante ficaria por cima do botão de compra. */
  .wa-float { bottom: calc(72px + 1rem + env(safe-area-inset-bottom)); right: 1rem; padding: .65rem; }
  .wa-text { display: none; }
  .wa-icon { width: 42px; height: 42px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-text { max-width: none; }
  .leaf-footer { display: none; }   /* sem coluna livre, a folha cairia sobre o texto */
  /* recuo à direita: no fim da página o botão flutuante do WhatsApp cai
     exatamente sobre a linha da política de privacidade */
  .footer-bottom { flex-direction: column; margin-top: 2rem; padding-right: 4.5rem; }
  .site-footer { padding-top: 3rem; }

  .stat { flex: 0 0 50%; }
  .problem-cards { grid-template-columns: 1fr; }

  /* Hero: fix overflow clipping on mobile by allowing text to wrap */
  .btn { white-space: normal; word-break: break-word; }
  .hero { padding-block: 3rem 2.5rem; }

  /* Mobile CTA bar: show on phones */
  .mobile-cta-bar { display: block; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

  .journey-icon { width: 44px; height: 44px; }
  .journey-label { font-size: .7rem; letter-spacing: 0; white-space: normal; line-height: 1.15; text-align: center; }
  .journey-track { top: 1.75rem; left: 1.5rem; right: 1.5rem; }
}

/* ===== EXPLORADORA DO FAQ =====
   Senta na borda da seção, na faixa livre à direita do acordeão (container .narrow).
   z-index acima da seção seguinte para poder encostar na divisa sem ser coberta. */
/* overflow visível só aqui: com o hidden herdado de .section ela era cortada
   rente à divisa, virando exatamente o defeito de "elemento cortado". */
#faq { z-index: 3; overflow: visible; }

.faq-binoculos {
  position: absolute;
  right: 4%;
  bottom: -26px;
  width: 168px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgba(31,40,104,.18));
}

/* abaixo disso a faixa livre ao lado do acordeão some e ela invadiria o texto */
@media (max-width: 1200px) {
  .faq-binoculos { display: none; }
}

/* ============================= PROF GRID (para quem é) ============================= */
.prof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Os breakpoints ficam aqui, e não lá no bloco RESPONSIVE, porque este bloco vem
   depois dele no arquivo: sem isso a regra de 5 colunas vencia em toda largura. */
@media (max-width: 992px) { .prof-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .prof-grid { grid-template-columns: repeat(2, 1fr); } }

.prof-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  transition: box-shadow .2s, border-color .2s;
}

/* Em 1 coluna o cartão empilhado vira uma torre de espaço vazio: com a largura
   inteira, ícone e rótulo lado a lado economizam cinco alturas de rolagem. */
@media (max-width: 560px) {
  .prof-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: .9rem 1.15rem;
    gap: 1rem;
  }
}

.prof-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(43,40,214,.1);
}

.prof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.prof-grid .prof-card:nth-child(1) .prof-icon { background: var(--primary); color: #fff; }
.prof-grid .prof-card:nth-child(2) .prof-icon { background: var(--mint);    color: var(--navy); }
.prof-grid .prof-card:nth-child(3) .prof-icon { background: var(--yellow);  color: var(--navy); }
.prof-grid .prof-card:nth-child(4) .prof-icon { background: var(--orange);  color: #fff; }
.prof-grid .prof-card:nth-child(5) .prof-icon { background: var(--navy);    color: #fff; }

.prof-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: .03em;
  line-height: 1.25;
}

/* ============================= CRIANCAS BLOCK ============================= */
.criancas-block {
  margin-top: 1rem;
}

.criancas-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* mesmo motivo do .prof-grid: este bloco vem depois do RESPONSIVE no arquivo */
@media (max-width: 768px) { .criancas-boxes { grid-template-columns: 1fr; } }

.crianca-box {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid;
}

.crianca-box-mint    { background: var(--mint-light);             border-color: var(--mint); }
.crianca-box-primary { background: var(--primary-light);          border-color: var(--primary); }
.crianca-box-yellow  { background: rgba(251,172,21,.1);           border-color: var(--yellow); }
.crianca-box-orange  { background: rgba(255,87,29,.07);           border-color: var(--orange); }

.crianca-box strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}

.crianca-box span {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.criancas-nota {
  font-style: italic;
  color: var(--text-muted);
  font-size: .88rem;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 1rem;
}

/* Fluxo "como funciona": em 5 colunas o celular dá ~68px por etapa e palavras
   como "Conquistar" não cabem (e, sendo palavra única, não quebram). Vira 3+2. */
@media (max-width: 560px) {
  .journey-steps { flex-wrap: wrap; row-gap: 1.5rem; }
  .journey-step { flex: 0 0 33.333%; }
  .journey-track { display: none; }

  /* na largura de celular os personagens em 21% ficam pequenos demais para se ler o rosto */
  .lenda-char { flex-basis: 25%; }
  .lenda-emblem-fig { flex-basis: 56%; }

  /* cartões a 100% no celular: em 2 colunas o texto quebrava em 3 e 4 linhas */
  .prof-grid { grid-template-columns: 1fr; }
  .criancas-boxes { grid-template-columns: 1fr; }
  .weeks { grid-template-columns: 1fr; }
  .weeks::before { display: none; }   /* a trilha tracejada só faz sentido em linha */

  /* Rótulo em 2 linhas centradas: "Em cada missão," em cima e o restante embaixo.
     A caixa perde 1rem de padding e o rótulo perde um pouco de corpo e de tracking
     porque, com 3rem de cada lado, "a criança precisa ouvir os sons e:" quebrava
     em duas linhas e sobrava um "sons e:" órfão. */
  .verbs-block { padding: 2rem; }
  .verbs-label { text-align: center; font-size: .74rem; letter-spacing: .08em; }
  .verbs-label-lead { display: block; }
}

/* 480px → mobile */
@media (max-width: 480px) {
  .chips { gap: .4rem; }
  .chip { font-size: .72rem; }
  .preview-missions { grid-template-columns: 1fr; }
  .offer-value { font-size: 3rem; }
  .section { padding-block: 3.5rem 2.5rem; }

  /* Buttons: scale down btn-lg to fit long labels on one line */
  .btn-lg { font-size: .85rem; padding: .85em 1.6em; }

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

  /* Hero: tighter padding on mobile */
  .hero { padding-block: 3.5rem 2.5rem; }

  /* Hero price note: full-width on mobile */
  .hero-actions .price-note { align-self: stretch; text-align: center; justify-content: center; }

  /* Offer summary chips */
  .offer-summary { flex-direction: column; align-items: center; }

  .badges-visual-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA do hero em uma linha só no celular.
   O rótulo tem 44 caracteres em caixa alta: no corpo de 13.6px do .btn-lg ele
   pede ~380px e a coluna do hero oferece ~300px, então quebrava em duas linhas
   ("...PARA MINHA" / "PRÁTICA"). O nowrap impede a quebra e o corpo fluido em vw
   garante que o texto caiba na largura real do aparelho, de 320px até 560px;
   o tracking e o padding lateral encolhem para devolver espaço ao texto. O min-height
   segura o alvo de toque em 48px, já que o corpo menor encolheria o botão. */
@media (max-width: 560px) {
  .hero-actions .btn-lg {
    white-space: nowrap;
    letter-spacing: .01em;
    padding-inline: .8em;
    font-size: clamp(.6rem, 2.95vw, .95rem);
    padding-block: 1em;
    min-height: 48px;
  }
}

/* 360px → very small phones */
@media (max-width: 360px) {
  .container { padding-inline: 1rem; }

  .display-xl   { font-size: 1.9rem; }
  .display-lg   { font-size: 1.65rem; }
  .display-hero { font-size: 2.6rem; }

  .section { padding-block: 3rem 2rem; }

  /* Prof grid: 1 column on very small phones */
  .prof-grid { grid-template-columns: 1fr; }

  /* Badges: ensure they fit */
  .badges-visual-grid span { font-size: .72rem; }
}
