/* ============================================================
   Minha Sorte - Landing cinemática (B2B)
   Sistema de dois modos: seções LIME (claras) + NAVY (escuras)
   Baseado no deck "Minha Sorte · Apresentação Cinemática"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Lime (fundo vibrante) */
  --lime:       #91FB17;
  --lime-2:     #8BF412;
  --lime-3:     #A3FC3E;
  --lime-soft:  #B4FF5C;

  /* Tinta / azul (conteúdo sobre lime) */
  --ink:        #08122E;
  --ink-soft:   #1C3160;   /* corpo sobre lime */
  --royal:      #0B2FA8;   /* ícones, labels, links sobre lime */
  --royal-2:    #123DBC;

  /* Navy (seções escuras + hero) */
  --navy:       #040A1C;
  --navy-2:     #0A1B3D;
  --navy-3:     #0F2350;
  --divider:    #0C2410;   /* divisor de ato (verde-escuro) */

  --gold:       #FFB800;
  --live:       #10B981;

  --paper:      #FCFCF6;

  /* Texto sobre fundo escuro */
  --fg:         #F2F6FF;
  --fg-muted:   #9FB2D8;
  --fg-faint:   #7d8fbd;

  --line-dark:  rgba(159,176,216,.16);
  --line-dark-2:rgba(159,176,216,.30);
  --line-lime:  rgba(10,25,70,.28);   /* linhas sobre lime */

  --card-brd:   rgba(255,255,255,.09);

  --shadow-lg:  0 40px 80px -30px rgba(2,6,18,.7);
  --shadow-md:  0 20px 45px -20px rgba(2,6,18,.5);
  --shadow-lime:0 24px 60px -24px rgba(11,47,168,.45);
  --glow-lime:  0 0 0 1px rgba(145,251,23,.5), 0 18px 46px -12px rgba(145,251,23,.5);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--navy);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--royal); color: var(--paper); }
:focus-visible { outline: 3px solid var(--royal); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sec { position: relative; padding-block: clamp(64px, 9vw, 130px); overflow: hidden; }

/* ---- Modo LIME (claro) ---- */
.sec--lime {
  background: linear-gradient(180deg, var(--lime-3), var(--lime-2) 55%, var(--lime));
  color: var(--ink);
}
.sec--lime.alt { background: linear-gradient(115deg, var(--lime-3), var(--lime) 90%); }
.sec--lime .eyebrow { color: var(--royal); }
.sec--lime .eyebrow::before { background: var(--royal); }
.sec--lime .section-head p { color: var(--ink-soft); }
.sec--lime .hl { color: var(--royal); }

/* ---- Modo NAVY (escuro) ---- */
.sec--dark {
  background: radial-gradient(120% 90% at 82% 8%, rgba(18,61,188,.35), transparent 60%),
              linear-gradient(180deg, var(--navy), var(--navy-2) 60%, var(--navy));
  color: var(--fg);
}
.sec--dark .section-head p { color: var(--fg-muted); }
.sec--dark .hl { color: var(--lime); }


/* Eyebrow + section head */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before { content: none; }
.section-head { position: relative; z-index: 1; max-width: 900px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 5.4vw, 4rem); }
.section-head p { font-size: clamp(1.05rem,1.6vw,1.28rem); margin-top: 20px; max-width: 64ch; }
.section-head.center p { margin-inline: auto; }
.hl { color: var(--lime); }
.hl-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* Sobre navy: botão lime */
.btn-primary { background: var(--lime); color: var(--ink); box-shadow: var(--glow-lime); }
.btn-primary:hover { background: var(--lime-soft); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(145,251,23,.6), 0 24px 54px -12px rgba(145,251,23,.55); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--fg); border-color: var(--line-dark-2); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--fg-muted); transform: translateY(-2px); }

/* Sobre lime: botão azul-royal */
.sec--lime .btn-primary, .btn-royal { background: var(--royal); color: var(--paper); box-shadow: var(--shadow-lime); }
.sec--lime .btn-primary:hover, .btn-royal:hover { background: var(--royal-2); transform: translateY(-2px); box-shadow: 0 26px 56px -16px rgba(11,47,168,.6); }
.sec--lime .btn-ghost { background: transparent; color: var(--ink); border-color: rgba(8,18,46,.35); }
.sec--lime .btn-ghost:hover { background: rgba(8,18,46,.06); border-color: var(--ink); }

/* ============================================================
   Live dot (usado em pills, floaters e proof)
   ============================================================ */
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(16,185,129,.7); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(16,185,129,.6)} 70%{box-shadow:0 0 0 8px rgba(16,185,129,0)} 100%{box-shadow:0 0 0 0 rgba(16,185,129,0)} }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
/* ao rolar: barra branca sólida */
.header.is-stuck {
  background: #FFFFFF;
  box-shadow: 0 6px 24px -12px rgba(2,6,18,.22);
  border-bottom-color: rgba(8,18,46,.07);
}
.header .wrap { max-width: 1340px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 92px; }

/* logo: sem fundo (o wordmark azul lê bem no lime e no branco) */
.nav__pill { display: inline-flex; align-items: center; }
.brand { display: inline-flex; align-items: center; }
.brand__lottie { display: block; width: 240px; height: 70px; pointer-events: none; }

/* botão grande "Agende uma demonstração" */
.nav__talk { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--fg); border-radius: 999px; padding: 10px 10px 10px 22px; font-family: var(--font-display); font-weight: 600; font-size: .77rem; box-shadow: 0 14px 34px -14px rgba(2,6,18,.55); transition: transform .2s, box-shadow .2s; white-space: nowrap; }
.nav__talk:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -16px rgba(2,6,18,.6); }
.nav__talk-arw { display: inline-grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.nav__talk-arw svg { width: 15px; height: 15px; }


/* ============================================================
   Hero tipográfico (estilo Plexify) - lime full-bleed
   ============================================================ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(100svh, 940px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(96px,12vh,150px) 0 clamp(40px,7vw,90px);
  background: linear-gradient(175deg, var(--lime-3) 0%, var(--lime) 58%, var(--lime-2) 78%);
  color: var(--ink);
}
/* degradê lime → navy na base, para fluir na trust strip */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4,10,28,.05) 55%, var(--navy));
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

/* Doodles */
.hero__doodle { position: absolute; z-index: 1; color: var(--royal); pointer-events: none; opacity: .85; }
.hero__doodle--1 { top: clamp(80px,12vh,150px); left: 4vw; width: clamp(70px,9vw,130px); color: var(--paper); transform: rotate(-8deg); }
.hero__doodle--3 { bottom: 20vh; right: 12vw; width: clamp(70px,9vw,130px); color: #7fe0ff; transform: rotate(4deg); }

/* Composição tipográfica */
.hero__type {
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: var(--font-display); font-weight: 700; line-height: .9;
  letter-spacing: -.02em; text-transform: uppercase; margin: 0;
}
.hero__line { display: block; }
.hero__line--1, .hero__line--2 { font-size: clamp(2rem, 5.4vw, 4.4rem); }
.hero__line--serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  text-transform: none; letter-spacing: -.01em; color: var(--royal);
  font-size: clamp(3.2rem, 9.2vw, 7.4rem); line-height: .9; margin: -.04em 0 .06em;
}
/* Tag entre chaves - bloco sob o título, chaves colam no texto */
.hero__tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin: clamp(22px,3.2vw,36px) 0 0;
  font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: normal;
  font-size: clamp(1rem, 1.4vw, 1.3rem); color: var(--ink-soft);
}
.hero__tag span { max-width: 30ch; line-height: 1.3; }
.hero__tag::before, .hero__tag::after { color: var(--royal); font-family: var(--font-display); font-weight: 700; font-size: 2.6em; line-height: .5; }
.hero__tag::before { content: "{"; }
.hero__tag::after  { content: "}"; }

/* Hero em 2 colunas: texto + arte */
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,4vw,56px); align-items: center; }
.hero__col { min-width: 0; }
.hero__art { min-width: 0; display: flex; justify-content: center; }
.hero__art img { width: 100%; max-width: 620px; height: auto; filter: drop-shadow(0 30px 60px rgba(2,6,18,.22)); animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero__art img { animation: none; } }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(30px,4vw,44px); }
/* CTAs do hero: royal + ink sobre o lime (o hero não é .sec--lime) */
.hero .btn-primary { background: var(--royal); color: var(--paper); box-shadow: var(--shadow-lime); }
.hero .btn-primary:hover { background: var(--royal-2); transform: translateY(-2px); box-shadow: 0 26px 56px -16px rgba(11,47,168,.6); }
.hero .btn-ghost { background: transparent; color: var(--ink); border-color: rgba(8,18,46,.35); }
.hero .btn-ghost:hover { background: rgba(8,18,46,.06); border-color: var(--ink); }
.hero__reassure { flex-basis: 100%; width: 100%; margin: 10px 0 0; color: var(--ink); opacity: .72; font-size: .98rem; font-weight: 500; }

/* Selo circular girando */
.hero__badge {
  position: relative; flex: none; width: clamp(96px,10vw,132px); aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  box-shadow: 0 18px 40px -18px rgba(2,6,18,.5);
}
.hero__badge-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.hero__badge-ring text { fill: var(--lime); font-family: var(--font-display); font-weight: 600; font-size: 8.2px; letter-spacing: .12em; }
.hero__badge-arrow { width: 34%; height: 34%; color: var(--lime); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__badge-ring { animation: none; } }

/* ---------- Trust strip (sobre navy, sob o hero) ---------- */
.trust { background: var(--navy); border-bottom: 1px solid var(--line-dark); }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 26px; }
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--fg-muted); font-size: .95rem; }
.trust__item svg { width: 22px; height: 22px; color: var(--lime); flex: none; }
.trust__item b { color: var(--fg); font-family: var(--font-display); }

/* ---------- Trust strip (sobre navy, sob o hero) ---------- */
.trust { background: var(--navy); border-block: 1px solid var(--line-dark); }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 26px; }
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--fg-muted); font-size: .95rem; }
.trust__item svg { width: 22px; height: 22px; color: var(--lime); flex: none; }
.trust__item b { color: var(--fg); font-family: var(--font-display); }

/* ============================================================
   Feature cards (padrão do deck: border-top + ícone + título)
   Usado em: cenário, personas, plataforma
   ============================================================ */
.feat-grid { position: relative; z-index: 1; display: grid; gap: clamp(30px,4vw,64px); }
.feat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); gap: clamp(36px,5vw,90px); }
.feat { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--line-lime); padding-top: 28px; }
.feat svg.feat__ic { width: 46px; height: 46px; stroke: var(--royal); flex: none; }
.feat__illus { width: 108px; height: 108px; display: block; clip-path: circle(47% at 50% 50%); object-fit: cover; flex: none; }
.feat__illus--wheel { width: 132px; height: 132px; clip-path: none; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(2,6,18,.2)); }

/* ===== Imagens estilo referência ===== */
/* Duo checkout: slot atrás + phone na frente */
.media-duo { position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
.media-duo__phone { position: relative; z-index: 2; width: clamp(150px,20vw,210px); height: auto; filter: drop-shadow(0 24px 50px rgba(2,6,18,.3)); }
.media-duo__slot { position: absolute; z-index: 1; left: 6%; bottom: 2%; width: clamp(120px,15vw,175px); height: auto; transform: rotate(-8deg); filter: drop-shadow(0 18px 40px rgba(2,6,18,.28)); }
/* Divisor com dashboard */
.divider--media { padding-bottom: clamp(40px,6vw,72px); }
.divider__media { margin: clamp(28px,4vw,44px) auto 0; max-width: 940px; }
.divider__media img { display: block; width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(2,6,18,.45)); }
/* Shot de painel na seção administra */
.admin-shot { margin: clamp(28px,4vw,44px) 0 calc(-1 * clamp(64px, 9vw, 130px)); max-width: none; }
.admin-shot img { display: block; width: 100%; height: auto; }
/* FAQ em 2 colunas com ilustração */
.faq-layout { display: grid; grid-template-columns: 1.5fr .5fr; gap: clamp(24px,4vw,56px); align-items: center; }
.faq-illus { display: flex; justify-content: center; }
.faq-illus img { width: 100%; max-width: 320px; height: auto; }
.feat__kicker { font-size: 1.35rem; font-weight: 600; color: var(--royal); letter-spacing: .01em; font-family: var(--font-body); }
.feat h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.16; color: var(--ink); }
.feat p { color: var(--ink-soft); font-size: 1.02rem; }

/* ============================================================
   Split rows (texto + screenshot) - quem compra / administra
   ============================================================ */
.splits { position: relative; z-index: 1; display: grid; gap: clamp(48px,7vw,110px); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,80px); align-items: center; }
.split.rev .split__media { order: -1; }
.split--solo { grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; text-align: center; }
.split--solo .split__body ul { display: inline-grid; text-align: left; }
.split--solo .split__body h3 { max-width: 22ch; }
.split__body .tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--royal); background: rgba(11,47,168,.1); border: 1px solid rgba(11,47,168,.24); border-radius: 999px; padding: 6px 12px; margin-bottom: 16px; }
.split__body h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--ink); margin-bottom: 14px; }
.split__body > p { color: var(--ink-soft); font-size: 1.08rem; }
.split__body ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.split__body li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 1.02rem; }
.split__body li::before { content:""; position:absolute; left:0; top:4px; width:18px; height:18px; background: var(--royal); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat; }
.split__body b { color: var(--ink); }
.split__media { display: flex; align-items: center; justify-content: center; }
.split__media > * { width: 100%; }
.split__media .proof { width: auto; }

/* bullets dentro dos feat cards (padrão sobre lime) */
.feat__list { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 9px; }
.feat__list li { position: relative; padding-left: 28px; color: var(--ink-soft); font-size: 1rem; }
.feat__list li::before { content:""; position:absolute; left:0; top:4px; width:17px; height:17px; background: var(--royal); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat; }
.feat__list b { color: var(--ink); }

/* combos (paper cards sobre lime) */
.combos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.combo { border: 1px solid rgba(8,18,46,.14); border-radius: 14px; padding: 15px 17px; background: var(--paper); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 12px; box-shadow: 0 10px 26px -18px rgba(2,6,18,.4); }
.combo .n { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.combo .p { color: var(--royal); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.combo small { color: var(--ink-soft); flex-basis: 100%; opacity: .8; }
.combo.is-deal { border-color: rgba(11,47,168,.4); background: linear-gradient(180deg, #fff, #eef3ff); }
.combo .off { color: var(--royal); font-size: .74rem; font-weight: 700; letter-spacing: .06em; flex-basis: 100%; order: -1; font-family: var(--font-display); }

/* prova social + ganhadores (sobre lime) */
.proof { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: var(--fg); padding: 13px 22px; border-radius: 999px; font-weight: 600; box-shadow: var(--shadow-md); font-size: 1.06rem; }
.proof .num { font-family: var(--font-display); font-weight: 700; color: var(--lime); }
.proof .dot { width: 10px; height: 10px; }
.wchips { display: grid; gap: 10px; margin-top: 18px; }
.wchip { display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 12px; background: var(--paper); border: 1px solid rgba(8,18,46,.12); font-size: .96rem; color: var(--ink); box-shadow: 0 10px 24px -18px rgba(2,6,18,.4); }
.wchip .trophy { flex: none; }
.wchip b { color: var(--royal); }

/* Roleta Rive (na seção gamificação) */
.roleta { position: relative; aspect-ratio: 1/1; width: 100%; max-width: 440px; margin-inline: auto; overflow: visible; background: transparent; }
.roleta iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.roleta__hint { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; font-size: .8rem; font-weight: 600; color: var(--lime); letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }

/* ============================================================
   Divisor de ato (navy escuro + varredura)
   ============================================================ */
.divider { position: relative; background: var(--divider); color: var(--fg); text-align: center; padding-block: clamp(80px, 12vw, 170px); overflow: hidden; }
.divider::after { content:""; position:absolute; inset:0; background: radial-gradient(90% 70% at 50% 50%, rgba(145,251,23,.08), transparent 60%); }
.divider .sweep { position: absolute; top: 0; bottom: 0; left: 0; width: 22%; background: linear-gradient(90deg, transparent, rgba(145,251,23,.16), transparent); }
.divider .wrap { position: relative; z-index: 2; }
.divider__label { font-size: .95rem; font-weight: 600; color: rgba(145,251,23,.8); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.divider h2 { font-size: clamp(2.2rem, 6.2vw, 5rem); line-height: 1.03; max-width: 20ch; margin-inline: auto; }
.divider h2 .hl { color: var(--lime); }

/* ============================================================
   Segurança & escala (navy)
   ============================================================ */
.scale { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.scale--solo { grid-template-columns: 1fr; }
.scale__list { display: grid; gap: 18px; }
.srow { display: flex; gap: 16px; align-items: flex-start; }
.srow svg { width: 26px; height: 26px; color: var(--lime); flex: none; margin-top: 3px; }
.srow b { display: block; font-family: var(--font-display); color: var(--fg); margin-bottom: 4px; }
.srow span { color: var(--fg-muted); font-size: .98rem; }
.scale__art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 260px; overflow: visible; }
.scale__art::before { content: ""; position: absolute; width: 68%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(145,251,23,.22), transparent 66%); filter: blur(12px); animation: shieldGlow 4s ease-in-out infinite; }
.scale__art svg { position: relative; overflow: visible; width: clamp(160px, 22vw, 300px); height: auto; color: var(--lime); filter: drop-shadow(0 12px 40px rgba(145,251,23,.28)); animation: shieldFloat 5s ease-in-out infinite; }
/* anel "escudo ativo" */
.shield-ripple { transform-box: fill-box; transform-origin: center; opacity: 0; animation: shieldRipple 3s ease-out infinite; }
/* check traçado periodicamente */
.shield-check { stroke-dasharray: 12; stroke-dashoffset: 0; animation: shieldCheck 4.5s ease-in-out infinite; }

@keyframes shieldGlow { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes shieldFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes shieldRipple { 0% { transform: scale(1); opacity: .45; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes shieldCheck {
  0% { stroke-dashoffset: 12; }
  18%, 78% { stroke-dashoffset: 0; }
  92%, 100% { stroke-dashoffset: 12; }
}

@media (prefers-reduced-motion: reduce) {
  .scale__art::before, .scale__art svg, .shield-ripple, .shield-check { animation: none; }
  .shield-ripple { display: none; }
  .shield-check { stroke-dashoffset: 0; }
}
.scale__kpi { border-radius: var(--radius-lg); padding: 44px; text-align: center; background: radial-gradient(120% 120% at 50% 0, rgba(18,61,188,.42), transparent 60%), var(--navy-2); border: 1px solid var(--card-brd); box-shadow: var(--shadow-lg); }
.scale__kpi .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 8vw, 5.6rem); line-height: 1; color: var(--lime); font-variant-numeric: tabular-nums; text-shadow: 0 8px 40px rgba(145,251,23,.35); }
.scale__kpi .unit { color: var(--fg-muted); font-size: 1.05rem; margin-top: 12px; }

/* ============================================================
   Steps (como começar) - sobre lime
   ============================================================ */
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--line-lime); padding-top: 24px; }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--royal); color: var(--paper); margin-bottom: 8px; box-shadow: var(--shadow-lime); }
.step h3 { font-size: 1.2rem; color: var(--ink); }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* Timeline animada (Como funciona) */
.timeline { position: relative; z-index: 1; }
.timeline__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.timeline__track { position: absolute; top: 28px; left: 10%; right: 10%; height: 3px; background: rgba(8,18,46,.14); border-radius: 3px; }
.timeline__fill { position: absolute; inset: 0 auto 0 0; height: 100%; width: calc(var(--p, 0) * 100%); background: var(--royal); border-radius: 3px; transition: width .4s cubic-bezier(.34,1.3,.5,1); }
.tstep { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.tstep__dot { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: #fff; color: var(--royal); border: 2px solid rgba(8,18,46,.12); box-shadow: 0 8px 20px -10px rgba(2,6,18,.35); margin-bottom: 8px; transition: background .35s, color .35s, border-color .35s, transform .35s, box-shadow .35s; }
.tstep__dot svg { width: 28px; height: 28px; }
.tstep__n { font-family: var(--font-display); font-weight: 700; color: var(--royal); font-size: .95rem; letter-spacing: .04em; opacity: .55; transition: opacity .3s, color .3s; }
.tstep h3 { font-size: 1.2rem; color: var(--ink); transition: color .3s; }
.tstep p { color: var(--ink-soft); font-size: .96rem; }
.tstep.is-done .tstep__dot { background: var(--lime); color: var(--ink); border-color: transparent; }
.tstep.is-active .tstep__dot { background: var(--lime); color: var(--ink); border-color: transparent; transform: scale(1.16); box-shadow: 0 0 0 5px rgba(145,251,23,.22), 0 16px 36px -8px rgba(145,251,23,.8); animation: dotPop .42s cubic-bezier(.34,1.5,.5,1); }
.tstep.is-active .tstep__dot svg { animation: iconPop .42s cubic-bezier(.34,1.5,.5,1); }
.tstep.is-active .tstep__dot::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 3px solid var(--lime); opacity: 0; animation: dotRing 1.1s ease-out infinite; }
.tstep.is-active .tstep__n { opacity: 1; }
.tstep.is-active h3 { color: var(--royal); }
.tstep.is-active .tstep__spin { animation: spin 1.3s linear infinite; transform-origin: 50% 50%; }
@keyframes dotPop { 0% { transform: scale(.8); } 55% { transform: scale(1.34); } 100% { transform: scale(1.16); } }
@keyframes iconPop { 0% { transform: scale(.6) rotate(-12deg); } 60% { transform: scale(1.18) rotate(4deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes dotRing { 0% { transform: scale(.85); opacity: .8; } 100% { transform: scale(2.05); opacity: 0; } }

@media (max-width: 760px) {
  .timeline__steps { grid-template-columns: 1fr; gap: 24px; }
  .timeline__track { top: 6px; bottom: 6px; left: 29px; right: auto; width: 3px; height: auto; }
  .timeline__fill { inset: 0 0 auto 0; width: 100%; height: calc(var(--p,0) * 100%); transition: height .4s cubic-bezier(.34,1.3,.5,1); }
  .tstep { display: grid; grid-template-columns: 58px 1fr; grid-template-areas: "dot num" "dot title" "dot text"; column-gap: 16px; align-items: center; }
  .tstep__dot { grid-area: dot; align-self: start; margin-bottom: 0; }
  .tstep__n { grid-area: num; }
  .tstep h3 { grid-area: title; }
  .tstep p { grid-area: text; }
}

@media (prefers-reduced-motion: reduce) {
  .tstep.is-active .tstep__dot { animation: none; transform: none; }
  .tstep.is-active .tstep__dot::after, .tstep.is-active .tstep__spin { animation: none; }
  .timeline__fill { transition: none; }
}

/* reasons (recapitulando) */
.reasons { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.reason { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: rgba(255,255,255,.55); border: 1px solid rgba(8,18,46,.1); backdrop-filter: blur(2px); }
.reason svg { width: 34px; height: 34px; stroke: var(--royal); margin: 0 auto 14px; }
.reason__illus { width: 88px; height: 88px; object-fit: contain; display: block; margin: 0 auto 14px; filter: drop-shadow(0 12px 24px rgba(2,6,18,.18)); }
.reason b { font-family: var(--font-display); display: block; margin-bottom: 6px; color: var(--ink); font-size: 1.05rem; }
.reason span { color: var(--ink-soft); font-size: .9rem; }

/* ============================================================
   CTA final / Encerramento (navy)
   ============================================================ */
.cta { position: relative; z-index: 1; overflow: hidden; text-align: center; border-radius: var(--radius-lg);
  background: radial-gradient(100% 130% at 50% 0, rgba(18,61,188,.5), transparent 55%), linear-gradient(180deg, var(--navy-2), var(--navy));
  border: 1px solid var(--card-brd); padding: clamp(52px, 8vw, 100px) var(--gutter); box-shadow: var(--shadow-lg); }
.cta::before, .cta::after { content:""; position:absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(34px); opacity:.42; }
.cta::before { background: radial-gradient(circle, rgba(145,251,23,.5), transparent 70%); top: -120px; left: -60px; }
.cta::after { background: radial-gradient(circle, rgba(18,61,188,.6), transparent 70%); bottom: -140px; right: -60px; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2.1rem, 5.4vw, 3.8rem); max-width: 18ch; margin-inline: auto; }
.cta p { color: var(--fg-muted); font-size: 1.15rem; margin: 20px auto 34px; max-width: 52ch; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta small { display: block; margin-top: 24px; color: var(--fg-faint); font-size: .85rem; }

/* ============================================================
   Footer-CTA (estilo Plexify)
   ============================================================ */
.footcta { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 15% 0%, rgba(18,61,188,.28), transparent 55%), linear-gradient(180deg, var(--navy-2), var(--navy)); border-top: 1px solid var(--line-dark); padding: clamp(64px,9vw,120px) 0 34px; }
.footcta__top { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(30px,5vw,60px); align-items: center; }
.footcta__lead .eyebrow { color: var(--lime); }
.footcta__lead h2 { font-size: clamp(2.2rem,6vw,5rem); line-height: 1.02; max-width: 16ch; }
.footcta__brand { color: var(--lime); font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.footcta__lead .btn { margin-top: 32px; }
.footcta__reassure { margin-top: 14px; color: var(--fg-muted); font-size: .98rem; font-weight: 500; }
.footcta__mark { display: flex; justify-content: center; align-items: center; opacity: .9; }
.footcta__mark img { width: clamp(140px,18vw,240px); height: auto; filter: drop-shadow(0 20px 50px rgba(145,251,23,.25)); }
.footcta__mark--art { opacity: 1; }
.footcta__mark--art img { width: clamp(240px,32vw,400px); filter: drop-shadow(0 30px 60px rgba(2,6,18,.4)); }
.footcta__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: clamp(48px,7vw,90px); padding-top: 40px; border-top: 1px solid var(--line-dark); }
.footcta__col h4 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; }
.footcta__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footcta__col a { color: var(--fg-muted); font-size: .98rem; transition: color .2s; }
.footcta__col a:hover { color: var(--lime); }
.footcta__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: var(--fg-faint); font-size: .85rem; }
.footcta__totop { color: var(--fg-muted); font-family: var(--font-display); font-weight: 600; transition: color .2s; }
.footcta__totop:hover { color: var(--lime); }
@media (max-width: 860px) {
  .footcta__top { grid-template-columns: 1fr; }
  .footcta__mark { order: -1; justify-content: flex-start; }
  .footcta__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) { .footcta__cols { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal + animações cinemáticas (do deck)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }
.reveal.d5 { transition-delay: .45s; }

@keyframes varredura { 0%{transform:translateX(-40%) skewX(-18deg);opacity:0} 12%{opacity:.5} 60%{opacity:.18} 100%{transform:translateX(240%) skewX(-18deg);opacity:0} }
@media (prefers-reduced-motion: no-preference) {
  .divider.in .sweep { animation: varredura 3.6s cubic-bezier(.3,.5,.3,1) .4s both; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
  .nav__talk { padding: 10px 18px; font-size: .82rem; gap: 0; }
  .nav__talk-arw { display: none; }
  .nav { height: 72px; }
  .brand__lottie { width: 134px; height: 39px; }
}
@media (max-width: 380px) {
  .nav__talk { padding: 9px 14px; font-size: .74rem; }
  .brand__lottie { width: 112px; height: 33px; }
}
@media (max-width: 1080px) {
  .feat-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev .split__media { order: 0; }
  .scale { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .feat-grid.cols-3, .feat-grid.cols-2 { grid-template-columns: 1fr; }
  .combos { grid-template-columns: 1fr; }
  .steps, .reasons { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .trust .wrap { justify-content: flex-start; }
  .hero__footer { flex-direction: column; align-items: flex-start; }
  .hero__grid { grid-template-columns: 1fr; gap: 8px; }
  .hero__art { order: -1; }
  .hero__art img { max-width: 380px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-illus { display: none; }
  .media-duo { min-height: 260px; }
}
@media (max-width: 460px) {
  .steps, .reasons { grid-template-columns: 1fr; }
}

/* ============================================================
   Stats + intro (novo, estilo Plexify)
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px,4vw,56px); align-items: center; margin-bottom: clamp(40px,6vw,72px); }
.stats-grid__media { display: flex; justify-content: center; }
.stats-badge { position: relative; width: clamp(120px,14vw,168px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 20px 50px -18px rgba(145,251,23,.45); }
.stats-badge__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.stats-badge__ring text { fill: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 7.4px; letter-spacing: .1em; }
.stats-badge__mark { width: 73%; height: 73%; display: grid; place-items: center; }
.stats-badge__mark svg { width: 100%; height: 100%; display: block; }
.stats-badge__mark svg path { fill: var(--ink) !important; }
@media (prefers-reduced-motion: reduce) { .stats-badge__ring { animation: none; } }
.stats-grid__body h2 { font-size: clamp(1.8rem,4vw,3rem); }
.stats-grid__body p { color: var(--fg-muted); font-size: 1.1rem; margin-top: 16px; max-width: 52ch; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,40px); border-top: 1px solid var(--line-dark); padding-top: clamp(32px,4vw,48px); }
.stat__n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem,5vw,4.4rem); line-height: 1; color: var(--lime); font-variant-numeric: tabular-nums; }
.stat__l { color: var(--fg-muted); font-size: .98rem; margin-top: 10px; }

/* ============================================================
   Showcase "A experiência" + galeria horizontal
   ============================================================ */
/* Letreiro vazado de fundo na seção plataforma */
#plataforma { position: relative; overflow: hidden; }
#plataforma > .wrap { position: relative; z-index: 1; }
.plat__word { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -.02em; line-height: .9; white-space: nowrap; font-size: clamp(4rem,18vw,16rem); color: transparent; -webkit-text-stroke: 2px rgba(8,18,46,.10); text-stroke: 2px rgba(8,18,46,.10); pointer-events: none; user-select: none; }

.showcase { position: relative; overflow: hidden; }
.showcase__word { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -.02em; line-height: .9; font-size: clamp(4rem,16vw,15rem); color: transparent; -webkit-text-stroke: 2px rgba(8,18,46,.18); text-stroke: 2px rgba(8,18,46,.18); text-align: center; margin: clamp(10px,2vw,24px) 0 clamp(-20px,-2vw,-40px); pointer-events: none; user-select: none; }
.gallery { overflow: hidden; margin-top: 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.gallery__track { display: flex; gap: 20px; width: max-content; animation: gallery 34s linear infinite; }
.gallery:hover .gallery__track { animation-play-state: paused; }
@keyframes gallery { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .gallery__track { animation: none; } .gallery { overflow-x: auto; } }
.gcard { flex: 0 0 300px; display: flex; flex-direction: column; gap: 8px; padding: 26px; border-radius: var(--radius); background: var(--paper); border: 1px solid rgba(8,18,46,.1); box-shadow: var(--shadow-lime); }
.gcard__ic { display: inline-flex; }
.gcard__ic svg { width: 34px; height: 34px; color: var(--royal); }
.gcard b { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.gcard span:last-child { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   Depoimentos (slider)
   ============================================================ */
.ph-note { display: inline-block; margin-top: 10px; font-size: .82rem; font-weight: 600; color: var(--royal); background: rgba(11,47,168,.1); border: 1px solid rgba(11,47,168,.25); border-radius: 999px; padding: 5px 12px; }
.tstm { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.tstm__viewport { overflow: hidden; }
.tstm__track { display: flex; transition: transform .45s var(--ease); }
@media (prefers-reduced-motion: reduce) { .tstm__track { transition: none; } }
.tstm__item { flex: 0 0 100%; padding: 6px; }
.tstm__item p { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem,2.6vw,1.9rem); line-height: 1.3; color: var(--ink); }
.tstm__item footer { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.tstm__av { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--royal); color: var(--paper); font-family: var(--font-display); font-weight: 700; }
.tstm__item footer b { display: block; color: var(--ink); }
.tstm__item footer small { color: var(--ink-soft); }
.tstm__nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.tstm__btn { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(8,18,46,.35); background: transparent; color: var(--ink); transition: background .2s, color .2s; }
.tstm__btn:hover { background: var(--royal); border-color: var(--royal); color: var(--paper); }
.tstm__btn svg { width: 22px; height: 22px; }
.tstm__dots { display: flex; gap: 8px; }
.tstm__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(8,18,46,.25); border: 0; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.tstm__dot.is-active { background: var(--royal); transform: scale(1.25); }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--card-brd); border-radius: var(--radius); background: rgba(255,255,255,.03); overflow: hidden; transition: background .2s, border-color .2s; }
.faq__item.is-open { background: var(--lime); border-color: var(--lime); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; text-align: left; background: transparent; border: 0; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem,1.8vw,1.25rem); color: var(--fg); }
.faq__item.is-open .faq__q { color: var(--ink); }
.faq__chev { width: 22px; height: 22px; flex: none; transition: transform .3s var(--ease); }
.faq__item.is-open .faq__chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 1.02rem; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } .faq__chev { transition: none; } }

/* ============================================================
   Prova social / logos
   ============================================================ */
.logos-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.logos-lead b { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); display: block; }
.logos { display: flex; align-items: center; gap: clamp(20px,3vw,44px); flex-wrap: wrap; }
.logo-ph { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); opacity: .45; letter-spacing: .01em; }

/* ---- responsivo dos novos blocos ---- */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr; text-align: center; }
  .stats-grid__body { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .logos-wrap { justify-content: center; text-align: center; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .gcard { flex-basis: 240px; }
}
