/* ══════════════════════════════════════════════════════════════════════
   moovs · deck comercial
   Paleta amostrada do arco do logo (mesma de utils/theme.py no produto):
   laranja #FE861C → magenta #F02F7A → roxo #8236F0 → azul #3465FB.
   Nada de cor fora dessa faixa, fora o verde do WhatsApp (que é sinal
   funcional: aquilo ali manda mensagem) e os neutros.

   Slides desenhados em 1920×1080 fixos e escalados pelo deck.js —
   mesmo esquema do deck do Framework Salll, pra o layout nunca depender
   do tamanho da janela de quem apresenta.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --laranja:  #FE861C;
  --magenta:  #F02F7A;
  --roxo:     #8236F0;
  --azul:     #3465FB;
  --roxo-claro:#A97BF5;
  --verde:    #25D366;

  --fundo:     #0B0A0F;
  --fundo-2:   #14121C;
  --superficie:rgba(255,255,255,.045);
  --linha:     rgba(255,255,255,.10);
  --tinta:     #FFFFFF;
  --tinta-soft:#C9C4D4;
  --tinta-fraca:#8B8598;

  --arco: linear-gradient(90deg, #FE861C 0%, #F02F7A 33%, #8236F0 68%, #3465FB 100%);

  --f-tit:  'Outfit', sans-serif;
  --f-corpo:'Inter', sans-serif;
  --f-mono: 'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%; overflow: hidden;
  background: var(--fundo);
  font-family: var(--f-corpo);
  color: var(--tinta);
  -webkit-font-smoothing: antialiased;
}

.deck { position: relative; width: 100vw; height: 100vh; overflow: hidden; }

/* ── SLIDE BASE ────────────────────────────────────────────────────── */
.slide {
  position: absolute; top: 0; left: 0;
  width: 1920px; height: 1080px;
  transform-origin: top left;
  display: none;
  padding: 92px 110px 84px;
  overflow: hidden;
  background: var(--fundo);
}
.slide.ativo { display: flex; flex-direction: column; justify-content: center; }

/* ── FUNDO FLUIDO ──────────────────────────────────────────────────────
   Três manchas grandes que respiram devagar. É o que dá a sensação de
   "vivo" sem vídeo nem canvas: só duas animações de transform em camada
   própria, barato o suficiente pra rodar em projetor velho. */
.aurora {
  position: absolute; inset: -25%;
  z-index: 0; pointer-events: none;
  filter: blur(10px);
  animation: aurora-anda 26s ease-in-out infinite alternate;
  will-change: transform;
}
.aurora::before, .aurora::after {
  content: ''; position: absolute; inset: 0;
}
.slide[data-tema="marca"]  .aurora::before {
  background:
    radial-gradient(46% 52% at 18% 26%, rgba(254,134,28,.30), transparent 66%),
    radial-gradient(42% 48% at 78% 22%, rgba(240,47,122,.28), transparent 66%),
    radial-gradient(52% 56% at 62% 82%, rgba(130,54,240,.34), transparent 68%),
    radial-gradient(38% 44% at 12% 84%, rgba(52,101,251,.26), transparent 66%);
}
.slide[data-tema="laranja"] .aurora::before {
  background:
    radial-gradient(48% 54% at 16% 28%, rgba(254,134,28,.32), transparent 66%),
    radial-gradient(44% 50% at 82% 74%, rgba(240,47,122,.20), transparent 68%),
    radial-gradient(40% 46% at 70% 16%, rgba(130,54,240,.16), transparent 68%);
}
.slide[data-tema="magenta"] .aurora::before {
  background:
    radial-gradient(48% 54% at 20% 24%, rgba(240,47,122,.32), transparent 66%),
    radial-gradient(44% 50% at 84% 70%, rgba(130,54,240,.24), transparent 68%),
    radial-gradient(38% 44% at 62% 12%, rgba(254,134,28,.16), transparent 68%);
}
.slide[data-tema="roxo"] .aurora::before {
  background:
    radial-gradient(50% 56% at 22% 26%, rgba(130,54,240,.34), transparent 66%),
    radial-gradient(44% 50% at 82% 72%, rgba(52,101,251,.26), transparent 68%),
    radial-gradient(36% 42% at 68% 14%, rgba(240,47,122,.16), transparent 68%);
}
.slide[data-tema="azul"] .aurora::before {
  background:
    radial-gradient(50% 56% at 20% 30%, rgba(52,101,251,.32), transparent 66%),
    radial-gradient(44% 50% at 80% 70%, rgba(130,54,240,.26), transparent 68%),
    radial-gradient(36% 42% at 66% 14%, rgba(240,47,122,.14), transparent 68%);
}
/* Grão fino por cima: gradiente puro em projetor faz banding feio. */
.aurora::after {
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .5;
}
@keyframes aurora-anda {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(3.5%,-2.5%,0) scale(1.10); }
}

/* Barra do arco no rodapé — a marca fecha todo slide. */
.barra-fluida {
  position: absolute; left: 0; right: 0; bottom: 0; height: 9px;
  background: var(--arco);
  background-size: 260% 100%;
  animation: arco-desliza 14s linear infinite;
  z-index: 6;
}
@keyframes arco-desliza {
  from { background-position: 0% 0; }
  to   { background-position: 260% 0; }
}

.logo {
  position: absolute; top: 50px; right: 76px;
  height: 40px; z-index: 8; opacity: .92;
}

/* ── TIPOGRAFIA ────────────────────────────────────────────────────── */
.rotulo {
  font-family: var(--f-mono); font-size: 15px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--tinta-fraca);
}
.tit {
  font-family: var(--f-tit); font-weight: 800;
  font-size: 66px; line-height: 1.06; letter-spacing: -.028em;
  margin: 20px 0 46px; max-width: 1500px;
}
.tit.menor { font-size: 58px; margin-bottom: 26px; }

.conteudo { position: relative; z-index: 5; }

.nota-rodape {
  margin-top: 34px; font-size: 21px; line-height: 1.5;
  color: var(--tinta-fraca); max-width: 1300px;
}

/* ── CAPA ──────────────────────────────────────────────────────────── */
.capa { align-items: flex-start; }
.capa-corpo { position: relative; z-index: 5; max-width: 1450px; }

/* Logo da capa: o traço se desenha (SVG) e, no fim, dá lugar ao ícone
   oficial em PNG. O SVG é só o movimento; quem fica na tela é o arquivo da
   marca, com o degradê exato. A versão anterior desenhava um "M" que não
   era o logo. */
.logo-anim { position: relative; width: 184px; height: 176px; margin-bottom: 40px; }
.logo-anim svg, .logo-anim img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.logo-anim .traco-logo {
  fill: none; stroke: url(#gArco); stroke-width: 22;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1300; stroke-dashoffset: 1300;
}
.logo-anim img { opacity: 0; }
.slide.ativo .logo-anim .traco-logo { animation: desenha 1.6s .1s cubic-bezier(.6,.05,.25,1) forwards; }
.slide.ativo .logo-anim svg { animation: some .45s 1.65s ease forwards; }
.slide.ativo .logo-anim img { animation: aparece .45s 1.55s ease forwards; }
@keyframes desenha { to { stroke-dashoffset: 0; } }
@keyframes some { to { opacity: 0; } }

.capa-tit {
  font-family: var(--f-tit); font-weight: 900;
  font-size: 108px; line-height: 1.02; letter-spacing: -.035em;
}
.capa-tit .grad {
  background: var(--arco); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: arco-desliza 9s linear infinite;
}
.capa-sub {
  margin-top: 34px; font-size: 30px; line-height: 1.5;
  color: var(--tinta-soft); max-width: 1080px;
}
.capa-rodape {
  margin-top: 62px; display: flex; align-items: center; gap: 20px;
}
.capa-rodape .ponto {
  width: 7px; height: 7px; border-radius: 50%; background: var(--roxo);
}
.fim .logo-fim { height: 62px; display: block; margin-bottom: 46px; }

/* Palavra saindo do desfoque, uma atrás da outra — portado do deck do
   Framework Salll. Sem JS: só delay encadeado. */
.kw { display: inline-block; white-space: pre; opacity: 0; filter: blur(16px); }
.slide.ativo .kw { animation: kw-foco .55s ease forwards; }
@keyframes kw-foco { to { opacity: 1; filter: blur(0); } }
.slide.ativo .kw:nth-child(1) { animation-delay: .05s; }
.slide.ativo .kw:nth-child(2) { animation-delay: .13s; }
.slide.ativo .kw:nth-child(3) { animation-delay: .21s; }
.slide.ativo .kw:nth-child(4) { animation-delay: .29s; }
.slide.ativo .kw:nth-child(5) { animation-delay: .37s; }
.slide.ativo .kw:nth-child(6) { animation-delay: .45s; }
.slide.ativo .kw:nth-child(7) { animation-delay: .53s; }

.fu { opacity: 0; }
.slide.ativo .fu { animation: sobe .7s .55s ease forwards; }
@keyframes sobe { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ── ENTRADAS GENÉRICAS ────────────────────────────────────────────── */
.anim-up { opacity: 0; }
.slide.ativo .anim-up { animation: sobe .6s var(--d, 0s) ease forwards; }
.anim-stagger > * { opacity: 0; }
.slide.ativo .anim-stagger > * { animation: sobe .5s ease forwards; }
.slide.ativo .anim-stagger > *:nth-child(1) { animation-delay: .10s; }
.slide.ativo .anim-stagger > *:nth-child(2) { animation-delay: .18s; }
.slide.ativo .anim-stagger > *:nth-child(3) { animation-delay: .26s; }
.slide.ativo .anim-stagger > *:nth-child(4) { animation-delay: .34s; }
.slide.ativo .anim-stagger > *:nth-child(5) { animation-delay: .42s; }
.slide.ativo .anim-stagger > *:nth-child(6) { animation-delay: .50s; }

@media (prefers-reduced-motion: reduce) {
  .slide.ativo * { animation: none !important; opacity: 1 !important; filter: none !important; }
  .aurora, .barra-fluida { animation: none !important; }
}

/* ── DIVISOR DE SEÇÃO ──────────────────────────────────────────────── */
.divisor { justify-content: center; }
.div-corpo { position: relative; z-index: 5; max-width: 1350px; }
.div-num {
  font-family: var(--f-mono); font-size: 22px; font-weight: 700;
  letter-spacing: .3em; color: var(--tinta-fraca);
  display: block; margin-bottom: 26px;
}
.div-tit {
  font-family: var(--f-tit); font-weight: 900;
  font-size: 128px; line-height: 1; letter-spacing: -.04em;
  background: var(--arco); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: arco-desliza 10s linear infinite;
}
.div-sub {
  margin-top: 34px; font-size: 32px; line-height: 1.5;
  color: var(--tinta-soft); max-width: 1080px;
}

/* ── LISTA COM MARCADOR ────────────────────────────────────────────── */
.lista-marcada { list-style: none; display: flex; flex-direction: column; gap: 34px; max-width: 1180px; }
.lista-marcada li { display: flex; gap: 26px; align-items: flex-start; }
.lista-marcada .marcador {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--c); margin-top: 12px;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--c) 18%, transparent);
}
.lista-marcada b { font-family: var(--f-tit); font-size: 38px; font-weight: 700; letter-spacing: -.02em; }
.lista-marcada p { margin-top: 8px; font-size: 24px; line-height: 1.5; color: var(--tinta-soft); }

/* ── EQUAÇÃO ───────────────────────────────────────────────────────── */
.equacao { display: flex; align-items: stretch; gap: 30px; }
.eq-card {
  flex: 1; background: var(--superficie); border: 1px solid var(--linha);
  border-radius: 26px; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
  backdrop-filter: blur(8px);
}
.eq-card.resultado {
  border-color: rgba(130,54,240,.55);
  background: linear-gradient(180deg, rgba(130,54,240,.24), rgba(255,255,255,.04) 68%);
  box-shadow: 0 24px 60px rgba(130,54,240,.22);
}
.eq-card h3 { font-family: var(--f-tit); font-size: 34px; font-weight: 700; letter-spacing: -.02em; }
.eq-card p { font-size: 21px; line-height: 1.5; color: var(--tinta-soft); }
.eq-op {
  align-self: center; font-family: var(--f-tit); font-size: 62px; font-weight: 800;
  color: var(--roxo-claro);
}
.eq-ic { width: 82px; height: 82px; }
.eq-ic g { fill: none; stroke: url(#gArco); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.eq-ic .ic-base    { stroke: var(--laranja); }
.eq-ic .ic-carro   { stroke: var(--magenta); }
.eq-ic .ic-chama   { stroke: var(--roxo-claro); }
.slide.ativo .eq-ic .ic-chama { animation: chama 2.6s ease-in-out infinite; transform-origin: 32px 44px; }
@keyframes chama {
  0%,100% { transform: scaleY(1)    translateY(0); }
  50%     { transform: scaleY(1.07) translateY(-2px); }
}

/* ── FLUXO (passos + celular) ──────────────────────────────────────── */
.fluxo { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: center; }
.passos { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.passos li { display: flex; gap: 24px; align-items: flex-start; }
.passo-n {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--arco); background-size: 300% 100%;
  color: #16121F; font-family: var(--f-tit); font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.passos li:nth-child(1) .passo-n { background-position: 0%; }
.passos li:nth-child(2) .passo-n { background-position: 25%; }
.passos li:nth-child(3) .passo-n { background-position: 50%; }
.passos li:nth-child(4) .passo-n { background-position: 75%; }
.passos li:nth-child(5) .passo-n { background-position: 100%; }
.passos b { font-family: var(--f-tit); font-size: 32px; font-weight: 700; letter-spacing: -.02em; }
.passos p { margin-top: 5px; font-size: 21px; color: var(--tinta-soft); line-height: 1.45; }

/* ── CELULAR / WHATSAPP ────────────────────────────────────────────── */
.celular {
  width: 360px; background: #000; border-radius: 46px; padding: 11px;
  border: 2px solid #2A2733; box-shadow: 0 34px 80px rgba(0,0,0,.6);
  justify-self: center;
}
.cel-tela { background: #0B141A; border-radius: 36px; overflow: hidden; display: flex; flex-direction: column; height: 590px; }
.wa-topo { display: flex; align-items: center; gap: 13px; padding: 17px 18px; background: #1F2C34; }
.wa-foto {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(140deg, var(--roxo), var(--azul));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-tit); font-weight: 800; font-size: 18px; color: #FFF;
}
.wa-foto.rosa { background: linear-gradient(140deg, var(--laranja), var(--magenta)); }
.wa-nome { font-size: 18px; font-weight: 600; }
.wa-status { font-size: 13px; color: #8FA5AC; }
.wa-corpo { flex: 1; padding: 22px 14px; display: flex; flex-direction: column; gap: 9px; justify-content: flex-end; }
.wa-balao {
  align-self: flex-end; background: #005C4B; color: #E9EDEF;
  padding: 13px 14px 24px; border-radius: 13px 13px 3px 13px; max-width: 93%;
  font-size: 15px; line-height: 1.55; position: relative;
}
.wa-hora { position: absolute; right: 13px; bottom: 7px; font-size: 11px; color: #9FBCC4; }
.wa-fotos { align-self: flex-end; display: flex; gap: 5px; background: #005C4B; padding: 5px; border-radius: 13px 13px 3px 13px; }
.wa-mini {
  width: 62px; height: 62px; border-radius: 7px;
  background: linear-gradient(140deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
}
.slide.ativo .wa-balao.b1,
.slide.ativo .wa-fotos.b2 { opacity: 0; animation: chega .45s ease forwards; }
.slide.ativo .wa-balao.b1 { animation-delay: .8s; }
.slide.ativo .wa-fotos.b2 { animation-delay: 1.35s; }
@keyframes chega {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* ── SVG: DISPUTA DE LEAD ──────────────────────────────────────────── */
.palco { display: flex; justify-content: center; }
.svg-disputa { width: 1560px; height: 554px; }
.svg-cap { font-family: var(--f-corpo); font-size: 17px; fill: var(--tinta-fraca); }
.svg-cap.forte { font-family: var(--f-tit); font-size: 24px; font-weight: 800; fill: var(--magenta); }
.svg-nota-g { font-family: var(--f-tit); font-size: 40px; font-weight: 800; fill: #FFF; }
.svg-nota   { font-family: var(--f-corpo); font-size: 21px; fill: var(--tinta-soft); }

.disputa-raios path {
  stroke-dasharray: 420; stroke-dashoffset: 420; opacity: .55;
}
.slide.ativo .disputa-raios path { animation: desenha .7s ease forwards; }
.slide.ativo .disputa-raios path:nth-child(1) { animation-delay: .35s; }
.slide.ativo .disputa-raios path:nth-child(2) { animation-delay: .42s; }
.slide.ativo .disputa-raios path:nth-child(3) { animation-delay: .49s; }
.slide.ativo .disputa-raios path:nth-child(4) { animation-delay: .56s; }
.slide.ativo .disputa-raios path:nth-child(5) { animation-delay: .63s; }
.slide.ativo .disputa-raios path:nth-child(6) { animation-delay: .70s; }
.slide.ativo .disputa-raios path:nth-child(7) { animation-delay: .77s; }
.slide.ativo .disputa-raios path:nth-child(8) { animation-delay: .84s; }
.slide.ativo .disputa-raios path:nth-child(9) { animation-delay: .91s; }
.slide.ativo .disputa-raios path:nth-child(10){ animation-delay: .98s; }

.disputa-lojas rect { fill: rgba(255,255,255,.07); stroke: var(--linha); }
.disputa-lojas text { font-family: var(--f-corpo); font-size: 14px; fill: var(--tinta-fraca); }
.disputa-lojas .voce rect { fill: rgba(240,47,122,.2); stroke: var(--magenta); }
.disputa-lojas .voce text { fill: #FFF; font-weight: 700; }
.disputa-lojas g { opacity: 0; }
.slide.ativo .disputa-lojas g { animation: aparece .4s ease forwards; }
.slide.ativo .disputa-lojas g:nth-child(1) { animation-delay: .40s; }
.slide.ativo .disputa-lojas g:nth-child(2) { animation-delay: .47s; }
.slide.ativo .disputa-lojas g:nth-child(3) { animation-delay: .54s; }
.slide.ativo .disputa-lojas g:nth-child(4) { animation-delay: .61s; }
.slide.ativo .disputa-lojas g:nth-child(5) { animation-delay: .68s; }
.slide.ativo .disputa-lojas g:nth-child(6) { animation-delay: .75s; }
.slide.ativo .disputa-lojas g:nth-child(7) { animation-delay: .82s; }
.slide.ativo .disputa-lojas g:nth-child(8) { animation-delay: .89s; }
.slide.ativo .disputa-lojas g:nth-child(9) { animation-delay: .96s; }
.disputa-nota { opacity: 0; }
.slide.ativo .disputa-nota { animation: aparece .6s 1.25s ease forwards; }

@keyframes aparece { from { opacity: 0; } to { opacity: 1; } }
.slide.ativo .disputa-lead .pulso { animation: pulsa 2.4s ease-out infinite; transform-origin: 120px 190px; }
@keyframes pulsa {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── SVG: RADAR DO MATCH ───────────────────────────────────────────── */
.criterios { display: grid; grid-template-columns: 520px 1fr; gap: 80px; align-items: center; }
.palco-radar { display: flex; justify-content: center; }
.svg-radar { width: 480px; height: 480px; }
.svg-radar .anel { fill: none; stroke: rgba(255,255,255,.13); }
.svg-radar .alvos circle { fill: rgba(255,255,255,.3); }
.svg-radar .alvos.quentes circle { fill: var(--magenta); }
.slide.ativo .svg-radar .alvos.quentes circle { animation: acende 2.6s ease-in-out infinite; }
.slide.ativo .svg-radar .alvos.quentes circle:nth-child(2) { animation-delay: 1.3s; }
@keyframes acende {
  0%,100% { opacity: .45; r: 9; }
  50%     { opacity: 1;   r: 13; }
}
.svg-radar .centro { fill: url(#gRadar); }
.svg-radar .centro-pulso { fill: none; stroke: var(--roxo); stroke-width: 2; transform-origin: 210px 210px; }
.slide.ativo .svg-radar .centro-pulso { animation: pulsa 2.8s ease-out infinite; }
.slide.ativo .svg-radar .varredura { transform-origin: 210px 210px; animation: gira 6s linear infinite; }
@keyframes gira { to { transform: rotate(360deg); } }

.lista-criterios { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.lista-criterios li { display: flex; gap: 24px; align-items: flex-start; }
.cr-ic {
  flex: none; font-family: var(--f-mono); font-size: 17px; font-weight: 700;
  color: var(--roxo-claro); width: 46px; padding-top: 8px;
}
.lista-criterios b { font-family: var(--f-tit); font-size: 32px; font-weight: 700; letter-spacing: -.02em; }
.lista-criterios p { margin-top: 5px; font-size: 21px; color: var(--tinta-soft); }

/* ── SLIDES DE TELA (prints do app) ────────────────────────────────── */
.tela .tela-grade {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 84px; align-items: center;
}
.tela .tela-grade.invertida { grid-template-columns: 1.05fr 1fr; }
.tela .tela-grade.invertida .tela-texto { order: 2; }
.tela .tela-grade.invertida .tela-img   { order: 1; }
.tela .tela-grade.cel { grid-template-columns: 1fr 1fr; }
.tela-p { font-size: 25px; line-height: 1.55; color: var(--tinta-soft); max-width: 700px; }

.checks { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.checks li {
  position: relative; padding-left: 44px;
  font-size: 22px; line-height: 1.45; color: var(--tinta);
}
.checks li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(37,211,102,.16); border: 1px solid rgba(37,211,102,.5);
}
.checks li::after {
  content: ''; position: absolute; left: 8px; top: 12px;
  width: 10px; height: 5px; border-left: 2px solid var(--verde); border-bottom: 2px solid var(--verde);
  transform: rotate(-45deg);
}

.tela-img {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.09);
}
.tela-img img { width: 100%; display: block; }

.duo-celular { display: flex; justify-content: center; align-items: center; gap: 0; }
.moldura-cel {
  width: 300px; background: #000; border-radius: 42px; padding: 10px;
  border: 2px solid #2A2733; box-shadow: 0 34px 80px rgba(0,0,0,.6);
  overflow: hidden;
}
.moldura-cel img { width: 100%; display: block; border-radius: 33px; }
.moldura-cel.atras { transform: scale(.88) translateX(-40px) rotate(4deg); opacity: .82; order: -1; }

/* ── TABELA COMPARATIVA ────────────────────────────────────────────── */
.tabela { border-radius: 22px; overflow: hidden; border: 1px solid var(--linha); max-width: 1580px; }
.tb-linha { display: grid; grid-template-columns: 1fr 1fr; }
.tb-linha + .tb-linha { border-top: 1px solid var(--linha); }
.tb-cel { padding: 22px 30px; font-size: 23px; line-height: 1.4; }
.tb-cel.frio   { background: rgba(255,255,255,.03); color: var(--tinta-fraca); }
.tb-cel.quente { background: rgba(130,54,240,.14); color: #FFF; }
.tb-cabeca .tb-cel {
  font-family: var(--f-tit); font-weight: 700; font-size: 24px; letter-spacing: -.01em;
}
.tb-cabeca .tb-cel.frio   { background: rgba(255,255,255,.07); color: var(--tinta-soft); }
.tb-cabeca .tb-cel.quente { background: rgba(130,54,240,.32); color: #FFF; }

/* ── PLANOS ────────────────────────────────────────────────────────── */
.planos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.plano {
  background: var(--superficie); border: 1px solid var(--linha); border-radius: 22px;
  padding: 34px 28px; display: flex; flex-direction: column; gap: 9px; position: relative;
}
.plano.popular {
  border-color: rgba(130,54,240,.6);
  background: linear-gradient(180deg, rgba(130,54,240,.24), rgba(255,255,255,.04) 55%);
  box-shadow: 0 24px 60px rgba(130,54,240,.22);
}
.pl-selo {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--arco); color: #17121F; font-size: 14px; font-weight: 800;
  padding: 6px 16px; border-radius: 99px; letter-spacing: .04em; white-space: nowrap;
  font-family: var(--f-tit);
}
.pl-nome { font-family: var(--f-tit); font-size: 28px; font-weight: 700; }
.pl-vol  { font-size: 18px; color: var(--tinta-fraca); }
.pl-preco { font-family: var(--f-tit); font-size: 44px; font-weight: 800; margin-top: 8px; letter-spacing: -.03em; }
.pl-preco span { font-family: var(--f-corpo); font-size: 18px; font-weight: 400; color: var(--tinta-fraca); }
.pl-lead { font-size: 18px; color: var(--tinta-soft); }
.pl-eco {
  margin-top: 10px; width: fit-content;
  font-size: 17px; font-weight: 700; color: #FFF;
  background: rgba(37,211,102,.16); border: 1px solid rgba(37,211,102,.45);
  padding: 6px 13px; border-radius: 10px;
}
.pl-extra { font-size: 16px; color: var(--roxo-claro); margin-top: 4px; }

/* ── CRONOGRAMA ────────────────────────────────────────────────────── */
.cronograma { list-style: none; display: flex; flex-direction: column; gap: 26px; max-width: 1300px; }
.cronograma li { display: flex; gap: 30px; align-items: flex-start; }
.cr-dia {
  flex: none; width: 168px; padding: 9px 0;
  font-family: var(--f-mono); font-size: 16px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--roxo-claro);
}
.cronograma b { font-family: var(--f-tit); font-size: 32px; font-weight: 700; letter-spacing: -.02em; }
.cronograma p { margin-top: 5px; font-size: 21px; color: var(--tinta-soft); }

/* ── PRINTS NO CELULAR ─────────────────────────────────────────────── */
.tela .tela-grade.um-cel { grid-template-columns: 1fr 470px; gap: 110px; }
.tela .tela-grade.um-cel.invertida { grid-template-columns: 470px 1fr; }
.moldura-cel.grande { width: 400px; justify-self: center; }
.moldura-cel.grande img { border-radius: 34px; }
.duo-celular .moldura-cel { width: 330px; }

/* ── SELO "EM BREVE" ───────────────────────────────────────────────── */
.selo-breve {
  display: inline-block; margin-left: 16px; vertical-align: middle;
  font-family: var(--f-mono); font-size: 14px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #FFF; padding: 7px 14px; border-radius: 99px;
  background: rgba(130,54,240,.32); border: 1px solid rgba(169,123,245,.6);
}

/* ── FALE CONOSCO ──────────────────────────────────────────────────── */
.bt-zap {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 34px; border-radius: 16px; text-decoration: none;
  background: linear-gradient(180deg, #25D366, #128C4A); color: #FFF;
  font-family: var(--f-tit); font-weight: 700; font-size: 30px; letter-spacing: -.01em;
  box-shadow: 0 18px 44px rgba(37,211,102,.28);
}
.bt-zap svg { width: 34px; height: 34px; }
.bt-contorno {
  display: inline-flex; align-items: center; padding: 22px 30px; border-radius: 16px;
  text-decoration: none; color: #FFF; font-family: var(--f-tit); font-weight: 600; font-size: 28px;
  border: 1.5px solid rgba(255,255,255,.28); background: rgba(255,255,255,.05);
}
.fim-acoes { margin-top: 54px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.fim-contato { margin-top: 26px; font-family: var(--f-mono); font-size: 18px; letter-spacing: .12em; color: var(--tinta-fraca); }

/* Botão fixo, fora da escala do slide: fica do mesmo tamanho em qualquer tela. */
.fale-conosco {
  position: fixed; right: 22px; bottom: 20px; z-index: 1001;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px 11px 13px; border-radius: 999px; text-decoration: none;
  background: #25D366; color: #07351B; font: 700 14px/1 Inter, sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.fale-conosco svg { width: 20px; height: 20px; }
.fale-conosco:hover { background: #2EE372; }

/* ── CELULAR EM PÉ ─────────────────────────────────────────────────── */
.gire { display: none; }
@media (orientation: portrait) and (max-width: 900px) {
  .gire {
    position: fixed; inset: 0; z-index: 2000; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; padding: 32px; text-align: center;
    background: rgba(11,10,15,.96); color: #FFF; font-family: Inter, sans-serif;
  }
  .gire svg { width: 64px; height: 64px; animation: gira-cel 2.4s ease-in-out infinite; }
  .gire b { font-family: Outfit, sans-serif; font-size: 22px; }
  .gire p { color: var(--tinta-soft); font-size: 15px; line-height: 1.5; max-width: 300px; }
  .gire .gire-acoes { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; width: 100%; max-width: 280px; }
  .gire a, .gire button {
    display: block; padding: 13px; border-radius: 12px; font: 600 15px Inter, sans-serif;
    text-decoration: none; cursor: pointer;
  }
  .gire a { background: #25D366; color: #07351B; }
  .gire button { background: transparent; color: #FFF; border: 1px solid rgba(255,255,255,.25); }
}
@keyframes gira-cel { 0%, 30% { transform: rotate(0); } 60%, 100% { transform: rotate(-90deg); } }

/* ── NAVEGAÇÃO ─────────────────────────────────────────────────────── */
.navegacao {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px; z-index: 1000;
}
.nav-bt {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.07); border: 1px solid var(--linha);
  color: #FFF; font-size: 18px; font-family: var(--f-corpo);
  transition: background .15s;
}
.nav-bt:hover { background: rgba(255,255,255,.18); }
.nav-contador {
  font-family: var(--f-mono); font-size: 14px; color: var(--tinta-fraca);
  font-variant-numeric: tabular-nums;
}
.nav-contador b { color: #FFF; }
.progresso { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000; background: rgba(255,255,255,.07); }
.progresso span {
  display: block; height: 100%; width: 0;
  background: var(--arco); transition: width .3s ease;
}
