/* ═══════════════════════════════════════════════════════════
   TABUADA DE CABEÇA — página de vendas
   Página CLARA, pensada pra mãe: fundo creme, texto azul-marinho,
   cartões brancos. A cara do app (arena azul) fica só dentro dos
   mockups — é lá que a criança aparece.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* fundo e superfícies */
  --creme:        #fffaf2;
  --creme-2:      #fff3e2;
  --branco:       #ffffff;
  --borda:        #efe4d3;
  --borda-2:      #e3e8f3;

  /* texto (o azul do app, que amarra página e produto) */
  --tinta:        #1b2a6b;
  --tinta-2:      #55618c;
  --tinta-3:      #8a93b0;

  /* acentos do app */
  --amarelo:      #ffc800;
  --amarelo-borda:#e0a800;
  --amarelo-claro:#fff4c2;
  --amarelo-texto:#8a6d00;
  --verde:        #58cc02;
  --verde-borda:  #46a302;
  --verde-texto:  #3b8a00;
  --verde-claro:  #eefbe0;
  --vermelho:     #ff4b4b;
  --vermelho-claro:#ffeceb;
  --ciano:        #1cb0f6;
  --laranja:      #ff9600;
  --roxo:         #a855f7;

  /* arena (só dentro dos mockups) */
  --arena-1:      #17245f;
  --arena-2:      #1f3592;
  --arena-3:      #2b48bf;

  --display: 'Lilita One', system-ui, sans-serif;
  --corpo:   'Nunito', system-ui, -apple-system, sans-serif;

  --sombra:  0 3px 0 var(--borda);
  --sombra-card: 0 8px 24px rgba(27,42,107,.07);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--tinta);
  font-family: var(--corpo);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
b, strong { font-weight: 900; }

.container { width: 100%; max-width: 480px; margin: 0 auto; padding: 0 20px; }
.secao { padding: 52px 0; }
.secao-clara { background: var(--branco); }

/* ---------- títulos ---------- */
.h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(27px, 7.6vw, 35px); line-height: 1.12;
  margin: 26px 0 14px; letter-spacing: .005em;
  position: relative; z-index: 1;
}
.h1 u { text-decoration: none; position: relative; white-space: nowrap; }
.h1 u::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 3px; height: 34%;
  background: var(--amarelo); border-radius: 3px; z-index: -1;
}
.h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(25px, 6.8vw, 31px); line-height: 1.15;
  margin: 0 0 14px; text-align: center;
}
.h2-esq { text-align: left; }
.h2-branco { color: var(--branco); }
.h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; line-height: 1.15; text-align: center;
  margin: 34px 0 14px;
}
.sub-mini { font-size: 14.5px; line-height: 1.4; color: var(--tinta-2); margin: 10px auto 20px; max-width: 340px; }
.sub-mini b { color: var(--tinta); }
.p-centro { text-align: center; color: var(--tinta-2); margin: 0 auto 24px; max-width: 420px; }
.p-curto { margin: -6px auto 16px; font-size: 15px; }

/* ---------- botão (o 3D do app, o elo visual) ---------- */
.cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 60px; padding: 12px 20px;
  border: 0; border-radius: 16px;
  font-family: var(--corpo); font-weight: 900; font-size: 17px;
  letter-spacing: .03em; text-align: center; text-decoration: none; cursor: pointer;
  background: var(--verde); color: #fff;
  box-shadow: 0 5px 0 var(--verde-borda);
  transition: transform .06s ease, box-shadow .06s ease;
}
.cta:active { transform: translateY(5px); box-shadow: 0 0 0 var(--verde-borda); }
.cta-gigante { min-height: 66px; font-size: 18.5px; }

/* entrada padrão dos cards */
@keyframes entra { to { opacity: 1; transform: translateY(0); } }

/* ---------- 1. introdução ---------- */
.intro { padding: 0 0 46px; text-align: center; background: linear-gradient(180deg, var(--creme-2), var(--creme) 62%); }
.faixa-topo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--vermelho); color: #fff;
  font-size: 13.5px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 14px;
}
.faixa-topo svg { width: 18px; height: 18px; flex: none; }

/* mockup único (tamanho calibrado pelo opetagradece: fone 264px, tela 452px) */
.demo { margin: 4px auto 22px; max-width: 320px; }
.demo-fone {
  position: relative; width: 264px; margin: 0 auto;
  background: #0e1740; border-radius: 38px; padding: 11px;
  box-shadow: 0 14px 34px rgba(27,42,107,.3), 0 0 0 2px rgba(27,42,107,.12);
}
.demo.is-on .demo-fone { animation: sobe-fone .6s cubic-bezier(.2,.9,.3,1.15) forwards; }
@keyframes sobe-fone { from { transform: translateY(20px); } to { transform: translateY(0); } }
.demo-notch {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 18px; background: #0e1740; border-radius: 0 0 13px 13px; z-index: 6;
}
.demo-tela {
  position: relative; width: 100%; height: 452px; border-radius: 30px; overflow: hidden;
  background: linear-gradient(180deg, var(--arena-1), var(--arena-2) 55%, var(--arena-3));
  color: #fff; padding: 16px 13px 13px; display: flex; flex-direction: column;
}

/* topo: X, barra, raio */
.dm-topo { display: flex; align-items: center; gap: 9px; }
.dm-x { color: rgba(255,255,255,.65); font-size: 17px; font-weight: 900; }
.dm-barra { flex: 1; height: 11px; border-radius: 99px; background: rgba(0,0,0,.3); overflow: hidden; }
.dm-barra i { display: block; height: 100%; width: 30%; background: var(--verde); border-radius: 99px; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.dm-raio { display: inline-flex; align-items: center; gap: 3px; color: var(--amarelo); font-weight: 900; font-size: 15px; }
.dm-raio svg { width: 15px; height: 15px; }

.dm-rot { display: block; text-align: center; margin-top: 14px; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.dm-conta { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--display); font-size: 58px; line-height: 1; margin: 14px 0 16px; }
.dm-conta em { font-style: normal; color: var(--amarelo); }
.dm-conta.is-nova { animation: conta-pop .32s cubic-bezier(.2,.9,.3,1.3); }
@keyframes conta-pop { from { transform: scale(.72); } to { transform: scale(1); } }

.dm-slots { display: flex; justify-content: center; gap: 10px; margin-bottom: auto; }
.dm-slot {
  width: 50px; height: 62px; border-radius: 15px;
  background: rgba(255,255,255,.1); border: 3px dashed rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 32px; color: var(--tinta);
}
.dm-slot.cheio { background: #fff; border-style: solid; border-color: #fff; animation: conta-pop .18s ease-out; }
.dm-slot.proximo { border-color: rgba(255,255,255,.95); animation: pisca-borda 1.1s ease-in-out infinite; }
@keyframes pisca-borda { 0%,100% { border-color: rgba(255,255,255,.42); } 50% { border-color: #fff; } }
.dm-slots.certo .dm-slot { background: var(--verde); border-color: var(--verde-borda); border-style: solid; color: #fff; }

.dm-teclado { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.dm-teclado b {
  height: 38px; border-radius: 12px; background: #fff; color: var(--tinta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--corpo); font-size: 20px; font-weight: 900;
  box-shadow: 0 4px 0 #cfd6e6; transition: transform .07s, box-shadow .07s;
}
.dm-teclado b.vazia { visibility: hidden; }
.dm-teclado b.apagar { background: var(--arena-3); color: #fff; box-shadow: 0 4px 0 #121c4a; font-size: 17px; }
.dm-teclado b.batendo { transform: translateY(4px); box-shadow: none; }

/* dedo que toca as teclas (é isso que faz parecer gravação de tela) */
.dm-dedo {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 2px solid rgba(255,255,255,.85);
  pointer-events: none; opacity: 0; z-index: 8;
  transform: translate(-50%, -50%);
  transition: left .26s cubic-bezier(.4,0,.2,1), top .26s cubic-bezier(.4,0,.2,1), opacity .18s, transform .12s;
}
.dm-dedo.on { opacity: 1; }
.dm-dedo.tocando { transform: translate(-50%, -50%) scale(.7); background: rgba(255,255,255,.8); }

.dm-flash {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 14px 22px;
  border-radius: 22px 22px 0 0; text-align: center; z-index: 7;
  font-family: var(--display); font-size: 21px; line-height: 1.15;
  background: var(--verde-claro); color: var(--verde-texto);
  animation: sobe-flash .22s cubic-bezier(.2,.9,.3,1.15);
}
.dm-flash.devagar { background: var(--verde-claro); color: var(--verde-texto); }
@keyframes sobe-flash { from { transform: translateY(26px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* botões da hero */
.botoes-hero { display: flex; flex-direction: column; gap: 11px; }
.cta-secundario {
  background: var(--branco); color: var(--tinta);
  border: 2px solid var(--borda); box-shadow: 0 5px 0 var(--borda);
  min-height: 54px; font-size: 15.5px;
}
.cta-secundario:active { box-shadow: 0 0 0 var(--borda); }

/* ---------- 2. como funciona (cards visuais) ---------- */
.cf { display: flex; flex-direction: column; align-items: stretch; margin-bottom: 22px; }
.cf-card {
  display: grid; grid-template-columns: 44px 1fr; gap: 12px 13px;
  background: var(--branco); border: 2px solid var(--borda-2); border-radius: 20px;
  padding: 16px; box-shadow: var(--sombra-card);
  opacity: 0; transform: translateY(14px);
}
.cf.is-on .cf-card { animation: entra .5s ease-out forwards; }
.cf.is-on .cf-card:nth-child(3) { animation-delay: .14s; }
.cf.is-on .cf-card:nth-child(5) { animation-delay: .28s; }
.cf-n {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amarelo-claro); color: var(--amarelo-borda);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 22px;
}
.cf-txt { align-self: center; }
.cf-txt h3 { font-size: 18.5px; font-weight: 900; margin: 0 0 2px; line-height: 1.2; }
.cf-txt p { margin: 0; font-size: 14.5px; color: var(--tinta-2); line-height: 1.35; }
.cf-visual {
  grid-column: 1 / -1; background: var(--creme); border: 1.5px solid var(--borda);
  border-radius: 14px; padding: 14px;
}
/* painel com a cara do app (arena azul) */
.cf-visual-app {
  padding: 0; border: 0; overflow: hidden; position: relative; color: #fff;
  background: linear-gradient(180deg, var(--arena-1), var(--arena-2) 60%, var(--arena-3));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.06);
}

/* ligação pontilhada entre os cards */
.cf-liga { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 0; }
.cf-liga i { width: 5px; height: 5px; border-radius: 50%; background: var(--amarelo); opacity: .45; }
.cf-liga i:nth-child(2) { opacity: .7; }
.cf-liga i:nth-child(3) { opacity: 1; width: 7px; height: 7px; }

/* passo 1 — bolha do WhatsApp */
.cf-zap {
  background: #dcf8c6; border-radius: 12px 12px 12px 3px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.cf-zap-nome { font-size: 12px; font-weight: 900; color: #1a7a45; }
.cf-zap-link { font-size: 17px; font-weight: 900; color: #0b6ea8; text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.cf-zap-hora { display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px; color: #5c8f6a; align-self: flex-end; }
.cf-zap-hora svg { width: 14px; height: 14px; color: #34b7f1; }

/* passo 2 — dentro do app: conta, quadradinhos, teclado */
.cfa { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.cfa-topo { display: flex; align-items: center; gap: 9px; }
.cfa-barra { flex: 1; height: 9px; border-radius: 99px; background: rgba(0,0,0,.3); overflow: hidden; }
.cfa-barra i { display: block; height: 100%; width: 55%; background: var(--verde); border-radius: 99px; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.cfa-raio { display: inline-flex; align-items: center; gap: 3px; color: var(--amarelo); font-weight: 900; font-size: 13.5px; }
.cfa-raio svg { width: 13px; height: 13px; }
.cfa-conta { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--display); font-size: 38px; line-height: 1; margin-top: 2px; }
.cfa-conta em { font-style: normal; color: var(--amarelo); }
.cfa-conta.is-nova { animation: conta-pop .3s cubic-bezier(.2,.9,.3,1.3); }
.cfa-slots { display: flex; justify-content: center; gap: 8px; }
.cfa-slots i {
  width: 38px; height: 46px; border-radius: 11px; font-style: normal;
  background: rgba(255,255,255,.1); border: 2.5px dashed rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 24px; color: var(--tinta);
}
.cfa-slots i.cheio { background: #fff; border-style: solid; border-color: #fff; animation: conta-pop .18s ease-out; }
.cfa-slots i.proximo { animation: pisca-borda 1.1s ease-in-out infinite; }
.cfa-slots.certo i { background: var(--verde); border-color: var(--verde-borda); border-style: solid; color: #fff; }
.cfa-teclas { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 2px; }
.cfa-teclas b {
  height: 30px; border-radius: 9px; background: #fff; color: var(--tinta);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; box-shadow: 0 3px 0 #cfd6e6;
  transition: transform .07s, box-shadow .07s;
}
.cfa-teclas b.batendo { transform: translateY(3px); box-shadow: none; background: var(--amarelo); }
.cfa-flash {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 9px 12px 11px;
  border-radius: 14px 14px 0 0; text-align: center;
  font-family: var(--display); font-size: 17px; line-height: 1;
  background: var(--verde-claro); color: var(--verde-texto);
  animation: sobe-flash .22s cubic-bezier(.2,.9,.3,1.15);
}

/* passo 3 — a semana do app */
.cfs { padding: 16px 14px 14px; }
.cfs-dias { display: flex; justify-content: space-between; }
.cfs-dias span { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cfs-dias i { font-style: normal; font-size: 11px; font-weight: 900; color: rgba(255,255,255,.6); }
.cfs-dias u {
  width: 32px; height: 32px; border-radius: 50%; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 3px solid transparent;
  transition: background .25s, border-color .25s, transform .25s;
}
.cfs-dias u.hoje { border-color: var(--amarelo); border-style: dashed; }
.cfs-dias u.feito { background: var(--verde); box-shadow: 0 3px 0 var(--verde-borda); animation: dia-pop .32s cubic-bezier(.2,.9,.3,1.4); }
.cfs-dias u.feito::after {
  content: ""; width: 6px; height: 11px; margin-top: -3px;
  border-right: 3.5px solid #fff; border-bottom: 3.5px solid #fff; transform: rotate(45deg);
}
@keyframes dia-pop { from { transform: scale(.5); } to { transform: scale(1); } }
.cfs-seq {
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(0,0,0,.22); border-radius: 12px; padding: 8px;
  font-size: 13.5px; font-weight: 900; color: rgba(255,255,255,.85);
}
.cfs-seq svg { width: 17px; height: 17px; color: var(--laranja); }
.cfs-seq b { font-family: var(--display); font-size: 19px; color: var(--amarelo); font-weight: 400; }

/* ---------- 3. depoimentos (carrossel) ---------- */
.carrossel { position: relative; }
.car-track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.car-track::-webkit-scrollbar { display: none; }
.car-slide { flex: 0 0 76%; scroll-snap-align: center; }
.car-slide img {
  width: 100%; height: auto; border-radius: 16px;
  border: 2px solid var(--borda); box-shadow: var(--sombra-card); background: var(--creme-2);
}
.car-seta {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--borda);
  background: var(--branco); color: var(--tinta); font-size: 24px; font-weight: 900;
  box-shadow: 0 3px 10px rgba(27,42,107,.14); cursor: pointer;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.car-seta { transition: opacity .2s, transform .2s; }
.car-seta.is-off { opacity: 0; pointer-events: none; transform: translateY(-50%) scale(.8); }
.car-prev { left: -8px; }
.car-next { right: -8px; }
.car-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.car-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--borda); padding: 0; cursor: pointer; }
.car-dot.is-active { background: var(--amarelo-borda); width: 22px; border-radius: 99px; }

/* ---------- 4. sinais (ícone + frase curta) ---------- */
.sinais { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 0; }
.sinal {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--vermelho-claro); border: 1.5px solid #ffd6d3; border-radius: 16px;
  padding: 16px 10px 14px;
  opacity: 0; transform: translateY(10px);
}
.sinal-ico {
  width: 42px; height: 42px; border-radius: 50%; background: var(--vermelho); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sinal-ico svg { width: 21px; height: 21px; }
.sinal p { margin: 9px 0 0; font-size: 14.5px; font-weight: 900; line-height: 1.3; color: var(--tinta); }
.sinais.is-on .sinal { animation: entra .45s ease-out forwards; }
.sinais.is-on .sinal:nth-child(2) { animation-delay: .08s; }
.sinais.is-on .sinal:nth-child(3) { animation-delay: .16s; }
.sinais.is-on .sinal:nth-child(4) { animation-delay: .24s; }
.sinais.is-on .sinal:nth-child(5) { animation-delay: .32s; }
.sinais.is-on .sinal:nth-child(6) { animation-delay: .40s; }

/* ---------- 4b. em ordem × fora de ordem ---------- */
.comp { display: flex; flex-direction: column; gap: 12px; }
.comp-card {
  border-radius: 20px; padding: 16px; border: 2px solid;
  opacity: 0; transform: translateY(12px);
}
.comp.is-on .comp-card { animation: entra .45s ease-out forwards; }
.comp.is-on .comp-card:nth-child(2) { animation-delay: .14s; }
.comp-nao { background: var(--vermelho-claro); border-color: #ffd6d3; }
.comp-sim { background: var(--verde-claro); border-color: #cdefad; }
.comp-cabeca { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.comp-ico { flex: none; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.comp-ico svg { width: 18px; height: 18px; }
.comp-nao .comp-ico { background: var(--vermelho); }
.comp-sim .comp-ico { background: var(--verde); }
.comp-cabeca h4 { font-family: var(--display); font-weight: 400; font-size: 20px; line-height: 1.1; margin: 0; }
.comp-cabeca small { display: block; font-size: 13px; font-weight: 900; color: var(--tinta-2); margin-top: 2px; }
.comp-fila { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.comp-fila b {
  font-family: var(--display); font-weight: 400; font-size: 17px; line-height: 1;
  background: var(--branco); color: var(--tinta-2); border-radius: 9px; padding: 7px 10px;
  box-shadow: 0 2px 0 rgba(27,42,107,.1);
}
.comp-fila i { font-style: normal; font-weight: 900; color: var(--vermelho); }
.comp-nao .comp-fila b:nth-child(7) { opacity: .7; }
.comp-nao .comp-fila b:nth-child(9) { opacity: .45; }
.comp-fila-mista b { color: var(--tinta); box-shadow: 0 2px 0 #cdefad; transform: rotate(var(--r, 0deg)); }
.comp-fila-mista b:nth-child(1) { --r: -3deg; }
.comp-fila-mista b:nth-child(2) { --r: 2deg; }
.comp-fila-mista b:nth-child(3) { --r: -1deg; }
.comp-fila-mista b:nth-child(4) { --r: 3deg; }
.comp-fila-mista b:nth-child(5) { --r: -2deg; }
.comp-fila-mista b:nth-child(6) { --r: 1deg; }
.comp-card p { margin: 0; font-size: 15px; line-height: 1.4; color: var(--tinta); font-weight: 900; }

/* ---------- 4c. por dentro do app (carrossel de telas reais) ----------
   Cada slide é um recorte fiel de uma tela do app: mesmos tamanhos,
   mesmas cores, mesmas animações. Só o conteúdo é roteirizado. */
.pk-simbolos { position: absolute; width: 0; height: 0; overflow: hidden; }

.peek { position: relative; margin-bottom: 10px; }
.pk-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 22px calc((100% - 268px) / 2) 6px;
}
.pk-track::-webkit-scrollbar { display: none; }
.pk-slide { flex: 0 0 268px; scroll-snap-align: center; }

.pk-fone {
  position: relative; width: 264px; margin: 0 auto;
  background: #0e1740; border-radius: 38px; padding: 11px;
  box-shadow: 0 14px 34px rgba(27,42,107,.3), 0 0 0 2px rgba(27,42,107,.12);
}
.pk-notch {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 18px; background: #0e1740; border-radius: 0 0 13px 13px; z-index: 6;
}
.pk-tela {
  position: relative; width: 100%; height: 452px; border-radius: 30px; overflow: hidden;
  color: #fff; display: flex; flex-direction: column;
}
.pk-arena { background: linear-gradient(180deg, var(--arena-1), var(--arena-2) 55%, var(--arena-3)); padding: 15px 13px 12px; }

.pk-cap { margin-top: 14px; text-align: center; }
.pk-cap h4 { font-family: var(--display); font-weight: 400; font-size: 19px; line-height: 1.15; margin: 0 0 3px; }
.pk-cap p { margin: 0 auto; max-width: 250px; font-size: 13.5px; line-height: 1.35; color: var(--tinta-2); }

/* teclado (o mesmo do app, em duas alturas) */
.pk-teclado { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.pk-teclado b {
  height: 33px; border-radius: 11px; background: #fff; color: var(--tinta);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 900; box-shadow: 0 4px 0 #cfd6e6;
  transition: transform .07s, box-shadow .07s;
}
.pk-teclado b.vazia { visibility: hidden; }
.pk-teclado b.apagar { background: var(--arena-3); color: #fff; box-shadow: 0 4px 0 #121c4a; font-size: 16px; }
.pk-teclado b.batendo { transform: translateY(4px); box-shadow: none; }
.pk-teclado-baixo { gap: 5px; }
.pk-teclado-baixo b { height: 30px; border-radius: 10px; font-size: 17px; box-shadow: 0 3px 0 #cfd6e6; }
.pk-teclado-baixo b.apagar { box-shadow: 0 3px 0 #121c4a; font-size: 13px; }

.pk-dedo {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 2px solid rgba(255,255,255,.85);
  pointer-events: none; opacity: 0; z-index: 8; transform: translate(-50%, -50%);
  transition: left .24s cubic-bezier(.4,0,.2,1), top .24s cubic-bezier(.4,0,.2,1), opacity .18s, transform .12s;
}
.pk-dedo.on { opacity: 1; }
.pk-dedo.tocando { transform: translate(-50%, -50%) scale(.7); background: rgba(255,255,255,.8); }

/* ───── 1. batalha ───── */
.bt-topo { display: flex; align-items: center; gap: 7px; }
.bt-x { color: rgba(255,255,255,.65); font-size: 15px; font-weight: 900; }
.bt-nome { flex: 1; font-size: 13px; font-weight: 900; line-height: 1.1; }
.bt-nome i { font-style: normal; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.6); }
.bt-timer { display: inline-flex; align-items: center; gap: 3px; color: var(--ciano); font-weight: 900; font-size: 13px; }
.bt-timer svg { width: 13px; height: 13px; }
.bt-timer.alerta { color: var(--vermelho); animation: pk-pulsar 1s ease-in-out infinite; }
@keyframes pk-pulsar { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.bt-tempo { display: block; height: 5px; border-radius: 99px; background: rgba(0,0,0,.3); overflow: hidden; margin-top: 5px; }
.bt-tempo i { display: block; height: 100%; width: 80%; background: var(--ciano); border-radius: 99px; transition: width 1s linear; }
.bt-tempo.alerta i { background: var(--vermelho); }

.bt-arena { display: flex; flex-direction: column; align-items: center; margin-top: 5px; }
.bt-monstro { position: relative; width: 84px; height: 84px; }
.bt-arte { width: 100%; height: 100%; animation: pk-flutua 2.6s ease-in-out infinite; }
@keyframes pk-flutua { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.02); } }
.bt-monstro.atingido .bt-arte { animation: pk-atingido .42s ease; }
@keyframes pk-atingido {
  0% { transform: translateX(0); }
  20% { transform: translateX(-7px) rotate(-5deg); filter: brightness(2.4); }
  45% { transform: translateX(6px) rotate(4deg); }
  70% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.bt-sombra { width: 58px; height: 9px; border-radius: 50%; background: rgba(0,0,0,.3); margin-top: -5px; filter: blur(2px); }
.bt-balao {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: #fff; color: var(--tinta); font-size: 10.5px; font-weight: 900;
  padding: 3px 8px; border-radius: 10px; z-index: 3;
  animation: conta-pop .3s cubic-bezier(.2,.9,.3,1.3);
}
.bt-dano {
  position: absolute; left: 50%; top: 4px; transform: translateX(-50%);
  font-family: var(--display); font-size: 22px; color: #fff; z-index: 4; white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0,0,0,.35); animation: pk-dano .8s ease-out forwards;
}
.bt-dano.critico { color: var(--amarelo); font-size: 25px; }
@keyframes pk-dano {
  0% { transform: translate(-50%, 8px) scale(.6); opacity: 0; }
  20% { transform: translate(-50%, -4px) scale(1.15); opacity: 1; }
  100% { transform: translate(-50%, -38px) scale(1); opacity: 0; }
}
.bt-raio { position: absolute; left: 50%; bottom: -26px; z-index: 3; filter: drop-shadow(0 0 6px #ffc800); animation: pk-voar .3s cubic-bezier(.2,.7,.4,1) forwards; }
.bt-raio svg { width: 24px; height: 24px; }
@keyframes pk-voar {
  0% { transform: translate(-50%, 56px) scale(.6) rotate(-20deg); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, -18px) scale(1.15) rotate(10deg); opacity: 0; }
}

.bt-vida-wrap { width: 100%; max-width: 196px; margin-top: 7px; }
.bt-vida { position: relative; height: 12px; border-radius: 999px; background: rgba(0,0,0,.35); overflow: hidden; }
.bt-vida i { position: absolute; left: 0; top: 0; height: 100%; border-radius: 999px; }
.bt-vida-meta { background: rgba(255,255,255,.3); width: 62%; transition: width .45s cubic-bezier(.2,.8,.2,1); }
.bt-vida-atual { background: #ce82ff; width: 48%; transition: width .45s cubic-bezier(.2,.8,.2,1); }
.bt-vida-lbl { display: flex; justify-content: space-between; margin-top: 3px; font-size: 8.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.75); }
.bt-golpes { color: var(--amarelo); }
.bt-golpes.ok { color: var(--verde); }
.bt-coracoes { display: flex; gap: 5px; margin-top: 7px; }
.bt-coracoes svg { width: 15px; height: 15px; color: var(--vermelho); filter: drop-shadow(0 2px 0 rgba(0,0,0,.35)); }
.bt-coracoes svg.perdido { color: rgba(255,255,255,.22); filter: none; }

.bt-rot { display: block; text-align: center; margin-top: 8px; font-size: 8.5px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.bt-conta { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--display); font-size: 34px; line-height: 1; margin-top: 3px; }
.bt-conta em { font-style: normal; color: var(--amarelo); }
.bt-conta.is-nova { animation: conta-pop .3s cubic-bezier(.2,.9,.3,1.3); }
.bt-slots { display: flex; justify-content: center; gap: 8px; margin: 7px 0 auto; }
.bt-slots i {
  width: 38px; height: 46px; border-radius: 11px; font-style: normal;
  background: rgba(255,255,255,.1); border: 2.5px dashed rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 24px; color: var(--tinta);
}
.bt-slots i.cheio { background: #fff; border-style: solid; border-color: #fff; animation: conta-pop .18s ease-out; }
.bt-slots i.proximo { animation: pisca-borda 1.1s ease-in-out infinite; }
.bt-slots.certo i { background: var(--verde); border-color: var(--verde-borda); border-style: solid; color: #fff; }

/* ───── 2. treino ───── */
.tr-topo { display: flex; align-items: center; gap: 9px; }
.tr-barra { flex: 1; height: 10px; border-radius: 99px; background: rgba(0,0,0,.3); overflow: hidden; }
.tr-barra i { display: block; height: 100%; width: 55%; background: var(--verde); border-radius: 99px; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.tr-barra.energia i { background: linear-gradient(90deg, var(--verde), var(--amarelo) 65%, var(--laranja)); }
.tr-raio { display: inline-flex; align-items: center; gap: 3px; color: var(--amarelo); font-weight: 900; font-size: 14px; }
.tr-raio svg { width: 14px; height: 14px; }
.tr-chip-linha { height: 24px; display: flex; align-items: center; justify-content: center; margin-top: 7px; }
.tr-chip { display: inline-flex; align-items: center; gap: 4px; background: var(--laranja); color: #fff; font-size: 11px; font-weight: 900; padding: 3px 10px; border-radius: 999px; animation: conta-pop .26s cubic-bezier(.2,.9,.3,1.3); }
.tr-chip svg { width: 12px; height: 12px; }
.tr-chip.fogo { background: linear-gradient(90deg, var(--laranja), var(--vermelho)); box-shadow: 0 0 14px rgba(255,150,0,.55); }
.tr-rot { display: block; text-align: center; font-size: 9.5px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.tr-conta { display: flex; align-items: center; justify-content: center; gap: 11px; font-family: var(--display); font-size: 50px; line-height: 1; margin: 6px 0 11px; }
.tr-conta em { font-style: normal; color: var(--amarelo); }
.tr-conta.is-nova { animation: conta-pop .32s cubic-bezier(.2,.9,.3,1.3); }
.tr-slots { display: flex; justify-content: center; gap: 9px; margin-bottom: auto; }
.tr-slots i {
  width: 46px; height: 58px; border-radius: 14px; font-style: normal;
  background: rgba(255,255,255,.1); border: 3px dashed rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 30px; color: var(--tinta);
}
.tr-slots i.cheio { background: #fff; border-style: solid; border-color: #fff; animation: conta-pop .18s ease-out; }
.tr-slots i.proximo { animation: pisca-borda 1.1s ease-in-out infinite; }
.tr-slots.certo i { background: var(--verde); border-color: var(--verde-borda); border-style: solid; color: #fff; }
.tr-flash {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 13px 14px 17px;
  border-radius: 20px 20px 0 0; z-index: 7;
  display: flex; align-items: center; gap: 10px;
  background: var(--verde-claro); color: var(--tinta);
  animation: sobe-flash .22s cubic-bezier(.2,.9,.3,1.15);
}
.tr-flash-ico {
  flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--ciano); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.tr-flash.devagar .tr-flash-ico { background: var(--verde); }
.tr-flash-ico svg { width: 19px; height: 19px; }
.tr-flash-txt { text-align: left; line-height: 1.15; }
.tr-flash-txt b { display: block; font-family: var(--display); font-weight: 400; font-size: 20px; }
.tr-flash-txt i { display: block; font-style: normal; font-size: 11.5px; font-weight: 900; opacity: .75; }

/* o botão de dica, que aparece em todo treino do app */
.tr-dica {
  display: inline-flex; align-items: center; gap: 5px; align-self: center; margin: 0 0 8px;
  background: rgba(255,255,255,.14); color: #fff; border-radius: 999px;
  padding: 5px 12px; font-size: 11.5px; font-weight: 900;
}
.tr-dica svg { width: 13px; height: 13px; }

/* ───── 3. trilha (a home do app) ───── */
.pk-tela-lisa { padding: 0; }
.hm-topo {
  display: flex; align-items: center; gap: 5px; padding: 14px 12px 8px;
  position: relative; z-index: 2; background: var(--arena-1);
  box-shadow: 0 6px 10px rgba(0,0,0,.18);
}
.hm-avatar { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(160deg, #8fe33a, #58cc02); flex: none; }
.hm-nome { flex: 1; line-height: 1.05; }
.hm-nome b { display: block; font-size: 12.5px; font-weight: 900; }
.hm-nome i { display: block; font-style: normal; font-size: 7.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; color: rgba(255,255,255,.6); }
.hm-conta { display: inline-flex; align-items: center; gap: 2px; font-size: 11.5px; font-weight: 900; }
.hm-conta svg { width: 12px; height: 12px; }
.hm-laranja { color: var(--laranja); }
.hm-amarela { color: var(--amarelo); }
.hm-roxa { color: #ce82ff; }

.hm-rolo { padding: 0 12px 16px; }
.peek .is-ativo .hm-rolo { animation: hm-rolar 3.4s ease-in-out .5s infinite alternate; }
@keyframes hm-rolar { from { transform: translateY(0); } to { transform: translateY(-92px); } }
.hm-banner { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-radius: 14px; padding: 8px 11px; }
.hm-banner div span { display: block; font-size: 7.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; opacity: .85; }
.hm-banner div b { display: block; font-size: 14px; font-weight: 900; line-height: 1.15; }
.hm-banner div i { display: block; font-style: normal; font-size: 9.5px; font-weight: 700; opacity: .85; }
.hm-b1 { background: var(--ciano); box-shadow: 0 4px 0 #1899d6; }
.hm-b2 { background: rgba(255,255,255,.1); box-shadow: 0 4px 0 rgba(0,0,0,.25); color: rgba(255,255,255,.8); }
.hm-monstro { width: 34px; height: 34px; flex: none; }
.hm-silhueta { filter: brightness(0) opacity(.35); }

.hm-trilha { position: relative; width: 214px; height: 360px; margin: 4px auto 8px; }
.hm-linha { position: absolute; inset: 0; }
.hm-no {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 5px 0 var(--no-b, rgba(0,0,0,.3));
}
.hm-no svg { width: 24px; height: 24px; }
.hm-no u { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); text-decoration: none; font-size: 8.5px; font-weight: 900; color: rgba(255,255,255,.6); white-space: nowrap; }
.hm-feito { background: var(--ciano); --no-b: #1899d6; }
.hm-atual { background: var(--amarelo); color: var(--tinta); --no-b: var(--amarelo-borda); animation: hm-pulsar 1.5s ease-in-out infinite; }
.hm-amanha { background: rgba(255,255,255,.22); }
.hm-bloq { background: rgba(255,255,255,.1); color: rgba(255,255,255,.45); box-shadow: none; }
.hm-prova { width: 60px; height: 60px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.45); box-shadow: none; }
.hm-prova svg { width: 26px; height: 26px; }
.hm-balao {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--tinta); font-size: 8.5px; font-weight: 900; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 8px; white-space: nowrap;
}
.hm-balao::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: #fff; }
@keyframes hm-pulsar {
  0%, 100% { box-shadow: 0 5px 0 var(--no-b), 0 0 0 0 rgba(255,200,0,.55); }
  50% { box-shadow: 0 5px 0 var(--no-b), 0 0 0 12px rgba(255,200,0,0); }
}

/* ───── 4. medalha e prêmio ───── */
.pk-tela-premio { align-items: center; justify-content: center; text-align: center; padding: 18px 16px 20px; }
.pr-confete { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.pr-confete i { position: absolute; top: -14px; width: 6px; height: 9px; border-radius: 1px; opacity: 0; }
.peek .is-ativo .pr-confete i { animation: pr-cair var(--dur, 3s) linear var(--atraso, 0s) infinite; }
@keyframes pr-cair {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  8% { opacity: 1; }
  100% { transform: translateY(470px) rotate(560deg); opacity: .9; }
}
.pr-monstro { position: relative; width: 74px; height: 74px; }
.pr-arte { width: 100%; height: 100%; transform: rotate(14deg); opacity: .5; filter: grayscale(.4); }
.pr-balao { position: absolute; top: -6px; right: -26px; background: #fff; color: var(--tinta); font-size: 10px; font-weight: 900; padding: 3px 8px; border-radius: 9px; white-space: nowrap; z-index: 3; }
.pr-medalha-wrap { position: relative; margin: 10px 0 10px; }
.pr-raios {
  position: absolute; left: 50%; top: 50%; width: 148px; height: 148px; transform: translate(-50%, -50%);
  background: repeating-conic-gradient(rgba(255,220,0,.22) 0 12deg, transparent 12deg 24deg);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 68%);
  mask-image: radial-gradient(circle, #000 20%, transparent 68%);
}
.peek .is-ativo .pr-raios { animation: pr-girar 18s linear infinite; }
@keyframes pr-girar { to { transform: translate(-50%, -50%) rotate(360deg); } }
.pr-medalha { position: relative; width: 72px; height: 72px; border-radius: 50%; background: var(--ciano); box-shadow: 0 6px 0 #1899d6; display: flex; align-items: center; justify-content: center; color: #fff; }
.pr-medalha svg { width: 42px; height: 42px; }
.pr-medalha.pop { animation: conta-pop .5s cubic-bezier(.2,.9,.3,1.4); }
.pr-chip { display: inline-flex; align-items: center; gap: 5px; background: var(--amarelo); color: var(--tinta); font-size: 10.5px; font-weight: 900; padding: 4px 11px; border-radius: 999px; }
.pr-chip svg { width: 12px; height: 12px; }
.pr-titulo { font-family: var(--display); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 9px 0 0; }
.pr-sub { font-size: 13px; font-weight: 900; color: rgba(255,255,255,.85); margin: 2px 0 12px; }
.pr-cartao { background: #fff; color: var(--tinta); border-radius: 14px; padding: 10px 12px; text-align: left; width: 100%; box-shadow: 0 4px 0 #cfd6e6; }
.pr-cartao > b { display: block; font-size: 12.5px; }
.pr-gemas { display: inline-flex; align-items: center; gap: 4px; color: #7e22ce; font-size: 12px; font-weight: 900; margin-top: 3px; }
.pr-gemas svg { width: 13px; height: 13px; }
.pr-cartao i { display: block; font-style: normal; font-size: 11px; font-weight: 700; color: var(--tinta-2); margin-top: 4px; line-height: 1.3; }
.pr-cartao em { font-style: normal; font-weight: 900; color: var(--tinta); }

/* ───── setas e bolinhas ───── */
.pk-seta {
  position: absolute; top: 237px; transform: translateY(-50%); z-index: 4;
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--borda);
  background: var(--branco); color: var(--tinta); font-size: 23px; font-weight: 900;
  box-shadow: 0 3px 10px rgba(27,42,107,.14); cursor: pointer;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.pk-prev { left: -6px; }
.pk-next { right: -6px; }
.pk-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.pk-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--borda); padding: 0; cursor: pointer; }
.pk-dot.is-active { background: var(--amarelo-borda); width: 22px; border-radius: 99px; }

/* celular genérico (reservado pra mockups futuros) */
.fone {
  background: #0e1740; border: 5px solid #0a1234; border-radius: 26px;
  padding: 6px; box-shadow: 0 10px 26px rgba(27,42,107,.24);
}
.fone-tela {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, var(--arena-1), var(--arena-2) 55%, var(--arena-3));
  aspect-ratio: 9/16; color: #fff;
}

/* ---------- 5. o que você recebe ---------- */
.recebe { display: flex; flex-direction: column; gap: 11px; }
.rc {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--branco); border: 2px solid var(--borda-2); border-radius: 18px;
  padding: 15px; box-shadow: var(--sombra-card);
  opacity: 0; transform: translateY(12px);
}
.recebe.is-on .rc { animation: entra .45s ease-out forwards; }
.recebe.is-on .rc:nth-child(2) { animation-delay: .08s; }
.recebe.is-on .rc:nth-child(3) { animation-delay: .16s; }
.recebe.is-on .rc:nth-child(4) { animation-delay: .24s; }
.recebe.is-on .rc:nth-child(5) { animation-delay: .32s; }
.rc-ico { flex: none; width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; }
.rc-ico svg { width: 22px; height: 22px; }
.rc-azul { background: var(--ciano); }
.rc-roxo { background: var(--roxo); }
.rc-verde { background: var(--verde); }
.rc-vermelho { background: var(--vermelho); }
.rc-ciano { background: #0ea5a5; }
.rc h3 { font-family: var(--display); font-weight: 400; font-size: 18px; margin: 3px 0 3px; }
.rc p { margin: 0; font-size: 14.5px; color: var(--tinta-2); line-height: 1.4; }

/* ---------- 6. bônus ---------- */
.bonus { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.bn {
  position: relative; display: flex; gap: 12px; align-items: flex-start;
  background: var(--creme); border: 2px solid var(--borda); border-radius: 18px;
  padding: 20px 14px 14px;
  opacity: 0; transform: translateY(12px);
}
.bonus.is-on .bn { animation: entra .45s ease-out forwards; }
.bonus.is-on .bn:nth-child(2) { animation-delay: .1s; }
.bonus.is-on .bn:nth-child(3) { animation-delay: .2s; }
.bonus.is-on .bn:nth-child(4) { animation-delay: .3s; }
.bn-tag {
  position: absolute; top: -12px; left: 14px;
  background: var(--amarelo); color: var(--tinta);
  font-family: var(--display); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 999px; box-shadow: 0 2px 0 var(--amarelo-borda);
}
.bn-ico { flex: none; width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; }
.bn-ico svg { width: 22px; height: 22px; }
.bn-amarelo { background: var(--amarelo); color: var(--tinta); }
.bn-roxo { background: var(--roxo); }
.bn-ciano { background: var(--ciano); }
.bn-verde { background: var(--verde); }
.bn > div { flex: 1; }
.bn h3 { font-family: var(--display); font-weight: 400; font-size: 18px; margin: 3px 0 3px; line-height: 1.15; }
.bn p { margin: 0; font-size: 14.5px; color: var(--tinta-2); line-height: 1.4; }
.bn-valor { flex: none; align-self: center; font-size: 14px; font-weight: 900; color: var(--tinta-3); }
.bonus-nota { text-align: center; font-size: 14.5px; font-weight: 900; color: var(--verde-texto); margin: 18px 0 0; }

/* ---------- 7. é / não é pra ele ---------- */
.idade-chip {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: fit-content; margin: 0 auto 20px; padding: 9px 15px;
  background: var(--amarelo-claro); border: 2px solid var(--amarelo); border-radius: 999px;
  color: var(--amarelo-texto); font-size: 14px; font-weight: 900; text-align: center;
}
.idade-chip span { line-height: 1.3; }
.idade-chip b { color: var(--tinta); }
.idade-chip svg { width: 20px; height: 20px; flex: none; color: var(--amarelo-borda); }

.dois-lados { display: flex; flex-direction: column; gap: 14px; }
.lado { border-radius: 20px; padding: 18px 16px; border: 2px solid; }
.lado h3 { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 400; font-size: 20px; margin: 0 0 14px; }
.lado-ico { flex: none; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.lado-ico svg { width: 15px; height: 15px; }
.lado ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.lado li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.35; font-weight: 900;
  background: rgba(255,255,255,.7); border-radius: 12px; padding: 10px 12px;
}
.lado li::before {
  flex: none; width: 22px; height: 22px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; margin-top: 0;
}
.lado-sim { background: var(--verde-claro); border-color: #cdefad; }
.lado-sim .lado-ico { background: var(--verde); }
.lado-sim li::before { content: "✓"; background: var(--verde); }
.lado-sim li { color: var(--tinta); }
.lado-nao { background: var(--creme-2); border-color: var(--borda); }
.lado-nao .lado-ico { background: var(--tinta-3); }
.lado-nao li::before { content: "✕"; background: var(--tinta-3); }
.lado-nao li { color: var(--tinta-2); font-weight: 700; }

/* ---------- 8. preço ---------- */
.secao-preco { background: linear-gradient(180deg, var(--creme-2), var(--creme) 40%); }
.secao-preco .h2 { margin-bottom: 22px; }
.oferta {
  background: var(--branco); border: 3px solid var(--amarelo); border-radius: 24px;
  padding: 22px 18px 18px; box-shadow: 0 10px 30px rgba(255,200,0,.18);
  text-align: center;
}
.oferta-marca { display: flex; justify-content: center; margin-bottom: 14px; }
.oferta-logo { width: 176px; height: auto; }

/* a caixa do preço: o que mais precisa saltar aos olhos no card */
.preco-caixa {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--verde-claro); border: 2px solid #cdefad; border-radius: 18px;
  padding: 14px 12px 14px;
}
.preco-lbl { font-size: 11.5px; font-weight: 900; color: var(--verde-texto); text-transform: uppercase; letter-spacing: .12em; }
.preco-de { font-size: 14px; font-weight: 900; color: var(--tinta-3); }
.preco-de s { font-family: var(--display); font-weight: 400; font-size: 20px; margin-left: 3px; color: var(--tinta-3); text-decoration-color: var(--vermelho); text-decoration-thickness: 3px; }
.preco-val { font-family: var(--display); font-size: clamp(42px, 12vw, 54px); line-height: 1; white-space: nowrap; color: var(--verde-texto); }
.preco-economia { margin: 3px 0 5px; font-size: 13.5px; font-weight: 900; color: var(--vermelho); white-space: nowrap; }

.recap { list-style: none; padding: 0; margin: 16px 0 14px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.recap li { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; line-height: 1.35; }
.recap li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--verde); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; margin-top: 1px;
}
.recap li span { flex: 1; color: var(--tinta); }
.recap li.is-bonus { align-items: center; }
.recap li.is-bonus i {
  flex: none; font-style: normal; background: var(--amarelo-claro); color: var(--amarelo-texto);
  font-size: 10.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em;
  padding: 2px 7px; border-radius: 6px;
}
.recap li.is-bonus s { flex: none; font-size: 13.5px; font-weight: 900; color: var(--tinta-3); }

/* pagamento único · vitalício · garantia */
.oferta-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 16px; }
.oferta-extras span {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--creme); border: 1.5px solid var(--borda); border-radius: 12px;
  padding: 10px 6px; font-size: 12px; font-weight: 900; line-height: 1.2; color: var(--tinta);
}
.oferta-extras svg { width: 20px; height: 20px; color: var(--amarelo-borda); }

.oferta-nota { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 0 0; font-size: 13.5px; color: var(--tinta-2); }
.oferta-nota svg { width: 15px; height: 15px; color: var(--tinta-3); }

.garantia-card {
  display: flex; align-items: center; gap: 14px; margin-top: 16px;
  background: var(--amarelo-claro); border: 2px solid var(--amarelo); border-radius: 20px; padding: 16px;
}
.garantia-card .escudo { flex: none; width: 46px; height: 46px; color: var(--amarelo-borda); }
.garantia-card h3 { font-family: var(--display); font-weight: 400; font-size: 20px; margin: 0 0 3px; color: var(--tinta); }
.garantia-card p { margin: 0; font-size: 14.5px; color: var(--amarelo-texto); line-height: 1.4; }

.garantia-linha {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 14px; padding: 11px; font-size: 15px;
}
.garantia-linha .escudo { width: 22px; height: 22px; flex: none; }
.garantia-linha-branca { background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.3); color: #fff; margin: 16px 0 0; }
.garantia-linha-branca .escudo { color: var(--amarelo); }

/* ---------- plano básico: o card sem graça, de propósito ----------
   Ele existe pra ser comparado, não pra ser escolhido. Sem cor,
   sem sombra, botão de contorno. Mesma largura do card completo. */
.plano-basico {
  background: var(--branco); border: 2px solid var(--borda-2); border-radius: 22px;
  padding: 20px 18px 16px; margin-bottom: 18px; text-align: center;
}
.pb-tag {
  margin: 0; font-size: 11.5px; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase; color: var(--tinta-3);
}
.pb-preco {
  margin: 3px 0 1px; font-family: var(--display); font-weight: 400;
  font-size: 46px; line-height: 1; color: var(--tinta-2);
}
.pb-sub { margin: 0 0 15px; font-size: 12.5px; font-weight: 800; color: var(--tinta-3); }
.pb-lista {
  list-style: none; margin: 0 0 16px; padding: 0; text-align: left;
  display: flex; flex-direction: column; gap: 9px;
}
.pb-lista li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14.5px; font-weight: 700; color: var(--tinta-2); line-height: 1.35;
}
.pb-lista b { font-weight: 900; color: var(--tinta); }
.pb-lista svg { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--tinta-2); }
.pb-lista .nao { color: var(--tinta-3); }
.pb-lista .nao b { color: var(--tinta-3); }
.pb-lista .nao svg { color: var(--tinta-3); }
.pb-cta {
  display: block; text-align: center; text-decoration: none;
  background: var(--creme); border: 2px solid var(--borda-2); border-radius: 14px;
  padding: 13px; font-size: 15px; font-weight: 900; color: var(--tinta-2);
}
.pb-cta:active { background: var(--creme-2); }
.pb-puxa {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 12px 0 0; padding: 10px 12px; border-radius: 13px;
  background: var(--amarelo-claro); color: var(--amarelo-texto);
  font-size: 13.5px; font-weight: 900; line-height: 1.2;
}
.pb-seta {
  width: 17px; height: 17px; flex: none;
  animation: puxa-desce 1.5s ease-in-out infinite;
}

@keyframes puxa-desce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .pb-seta { animation: none; } }

/* selo de desconto no card completo (era o carimbo do voucher) */
.selo-off {
  display: inline-block; margin-top: 8px; padding: 5px 12px; border-radius: 999px;
  background: var(--verde-claro); color: var(--verde-texto);
  font-size: 12.5px; font-weight: 900; letter-spacing: .06em;
}

/* ---------- 9. quem fez (curto) ---------- */
.autora { background: var(--creme); border: 2px solid var(--borda); border-radius: 24px; padding: 20px 18px; }
.autora-foto {
  display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 18px; margin-bottom: 14px; background: var(--creme-2);
}
.autora-h { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 0; }
.autora-ass { font-size: 15px; color: var(--tinta-2); margin: 2px 0 12px; }
.autora-frase { font-size: 16.5px; font-weight: 900; color: var(--tinta); line-height: 1.45; margin: 0 0 14px; }
.autora-lista { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.autora-lista li { font-size: 14.5px; color: var(--tinta-2); padding-left: 20px; position: relative; line-height: 1.4; }
.autora-lista li::before { content: "→"; position: absolute; left: 0; color: var(--amarelo-borda); font-weight: 900; }

/* ---------- 10. FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 9px; }
.faq-item { background: var(--branco); border: 2px solid var(--borda-2); border-radius: 16px; overflow: hidden; box-shadow: var(--sombra-card); }
.faq-item summary { cursor: pointer; list-style: none; padding: 15px 46px 15px 16px; position: relative; font-size: 16px; font-weight: 900; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 17px; top: 50%; width: 10px; height: 10px;
  border-right: 3px solid var(--amarelo-borda); border-bottom: 3px solid var(--amarelo-borda);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq-item p { margin: 0; padding: 0 16px 16px; font-size: 15px; color: var(--tinta-2); line-height: 1.5; }

/* ---------- 11. chamada final ---------- */
.secao-final {
  background: linear-gradient(180deg, var(--arena-1), var(--arena-2) 60%, var(--arena-3));
  color: #fff; text-align: center; padding: 52px 0 58px;
}
.final-logo { width: 200px; height: auto; margin: 0 auto 18px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.final-lbl { font-size: 15px; color: rgba(255,255,255,.85); margin: 6px 0 0; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.final-preco { font-family: var(--display); font-size: clamp(50px, 15vw, 66px); line-height: 1.05; margin: 2px 0 18px; color: var(--amarelo); }

/* ---------- rodapé ---------- */
.rodape { background: var(--creme-2); padding: 34px 0 90px; text-align: center; }
.rodape p { font-size: 13px; color: var(--tinta-2); margin: 5px 0; }
.rodape a { color: var(--tinta); text-decoration: underline; text-underline-offset: 2px; }
.rodape-logo { width: 150px; height: auto; margin: 0 auto 12px; }
.rodape-meta { font-size: 11.5px !important; color: var(--tinta-3) !important; margin-top: 14px !important; line-height: 1.45; }
.rodape-ref { font-size: 10.5px !important; color: var(--tinta-3) !important; opacity: .7; }

/* ---------- desktop ---------- */
@media (max-width: 379px) {
  .pk-seta { display: none; }
  .pk-dots { margin-top: 16px; }
  .pk-dot { width: 9px; height: 9px; }
  .pk-dot.is-active { width: 24px; }
}

@media (min-width: 760px) {
  .container { max-width: 660px; }
  .secao { padding: 66px 0; }
  .intro { padding: 0 0 56px; }
  .car-slide { flex: 0 0 44%; }
  .botoes-hero { flex-direction: row; }
  .botoes-hero .cta { flex: 1; margin: 0; }
  .sinais { grid-template-columns: repeat(3, 1fr); }
  .comp { flex-direction: row; }
  .comp-card { flex: 1; }
  .pk-track { padding-left: 0; padding-right: 0; }
  .pk-prev { left: -14px; }
  .pk-next { right: -14px; }
  .bonus { display: grid; grid-template-columns: 1fr 1fr; }
  .dois-lados { flex-direction: row; }
  .lado { flex: 1; }
  .cta { max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .sinal, .comp-card, .rc, .cf-card, .bn { opacity: 1 !important; transform: none !important; }
  .demo-fone { opacity: 1 !important; transform: none !important; }
  .dm-dedo { display: none !important; }
  .peek .hm-rolo, .peek .pr-confete i, .peek .pr-raios, .peek .hm-atual, .peek .bt-arte { animation: none !important; }
  .pk-dedo { display: none !important; }
}
