/* ============ IA DE DONO — Página de Vendas ============ */
/* Direção: sala de comando sendo ligada. Ink navy frio + vinho elétrico Bunker. */

:root {
  /* Paleta Bunker: charcoal profundo + roxo elétrico (ref: Bunker Logos.pdf) */
  --ink: #0D0A17;
  --ink-2: #171226;
  --paper: #FFFFFF;
  --paper-2: #EFEDF5;
  --tx-dark: #ECE9F6;
  --tx-dark-muted: #9B93B8;
  --tx-light: #17141F;
  --tx-light-muted: #5C5870;
  --accent: #8C1AFF;
  --accent-deep: #4A0D8F;
  --gold: #B78CFF;
  --line-dark: #2A2342;
  --line-light: #DDD9E8;
  --display: "Archivo", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; font-stretch: 125%; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--tx-light);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--accent); color: #fff; }

/* ---------- utilitários ---------- */
.icon { width: 22px; height: 22px; flex-shrink: 0; display: block; }

.label-mono {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.dark .label-mono { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 36px;
  min-height: 44px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(140, 26, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: #9D3BFF; box-shadow: 0 14px 44px rgba(140, 26, 255, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--tx-dark);
  border: 1px solid var(--line-dark);
}
.btn-ghost:hover { border-color: var(--tx-dark-muted); background: rgba(255,255,255,0.04); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* =============== 1. HERO =============== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--tx-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 -120px 160px -60px rgba(5, 8, 18, 0.9);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,26,255,0.16) 0%, transparent 65%);
  top: -180px; right: -140px;
  filter: blur(20px);
  pointer-events: none;
}
/* Filhos .container do hero (flex-column): margin auto anula o stretch — forçar largura cheia */
.hero > .container { width: 100%; }

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
}
.hero-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--tx-dark);
  text-decoration: none;
}
.hero-brand em { color: var(--accent); font-style: normal; }
.brand-o { height: 0.98em; width: auto; display: inline-block; vertical-align: -0.1em; margin-left: 0.08em; }
.hero-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-dark-muted);
  border: 1px solid var(--line-dark);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.hero-badge b { color: var(--gold); font-weight: 500; }

.hero-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-block: 48px 72px;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero-title em { font-style: normal; color: var(--accent); text-shadow: 0 0 50px rgba(140,26,255,0.5); }
.hero-title .solucao {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: var(--tx-dark-muted);
  margin-top: 22px;
  max-width: 42ch;
}
.hero-title .solucao strong { color: var(--tx-dark); font-weight: 600; }

.hero-statement {
  max-width: 560px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--tx-dark-muted);
  margin-top: 30px;
}
.hero-statement strong { color: var(--tx-dark); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-micro {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--tx-dark-muted);
}

.hero-rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--line-dark);
}
.rail-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 20px 0 20px 28px;
  border-bottom: 1px solid var(--line-dark);
}
.rail-item:last-child { border-bottom: none; }
.rail-item .icon { grid-row: 1 / span 2; color: var(--tx-dark-muted); }
.rail-item .k {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-dark-muted);
  display: block;
}
.rail-item .v { font-family: var(--body); font-weight: 600; font-size: 1rem; color: var(--tx-dark); }
.rail-item .v.hot { color: var(--gold); }

/* =============== 2. MARQUEE =============== */
.marquee {
  background: var(--accent-deep);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  padding-right: 18px;
}
.marquee-track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.75);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============== 3. DOR =============== */
.dor { background: var(--paper); padding: 120px 0 100px; }
.dor-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: start; }
.dor h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin-top: 14px;
  text-wrap: balance;
}
.dor h2 em { font-style: normal; color: var(--accent); }
.dor-list { border-top: 2px solid var(--tx-light); }
.dor-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 1.1rem;
  font-weight: 600;
}
.dor-list .num {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--accent);
  padding-top: 5px;
}
.dor-close {
  margin-top: 72px;
  background: var(--ink);
  color: var(--tx-dark);
  padding: 44px 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: -40px;
  border-left: 4px solid var(--accent);
  font-size: 1.2rem;
  line-height: 1.6;
}
.dor-close strong { color: var(--gold); font-weight: 600; }

/* =============== 3.5 PROVA (NÚMEROS/MANCHETE) =============== */
.prova { background: var(--paper-2); padding: 110px 0; }
.prova h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.prova-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}
.prova-txt { font-size: 1.1rem; max-width: 46ch; }
.stat-bar {
  display: grid;
  grid-template-columns: 52px 1fr 64px;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.stat-bar .ano {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--tx-light-muted);
}
.stat-bar i {
  display: block;
  height: 30px;
  width: var(--w);
  background: var(--ink);
  border-radius: 3px;
}
.stat-bar.hot i { background: var(--accent); box-shadow: 0 6px 24px rgba(140, 26, 255, 0.35); }
.stat-bar b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}
.stat-bar.hot b { color: var(--accent); }
.stat-legenda {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--tx-light-muted);
  margin-top: 14px;
  max-width: 40ch;
}
.prova-print { margin: 0; }
.prova-print img {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(20, 22, 31, 0.14);
}
.prova-print figcaption {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--tx-light-muted);
  margin-top: 14px;
}
.prova-print figcaption a { color: var(--accent); }
.prova-cta { text-align: center; margin-top: 44px; }

/* =============== 4. NÍVEIS =============== */
.niveis {
  position: relative;
  background: var(--ink);
  color: var(--tx-dark);
  padding: 130px 0 140px;
  overflow: hidden;
}
.niveis-bignum {
  position: absolute;
  right: -30px;
  top: 40px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(12rem, 30vw, 24rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--line-dark);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s ease;
}
.niveis.lit .niveis-bignum { -webkit-text-stroke-color: rgba(140,26,255,0.35); }
.niveis h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 14px 0 10px;
}
.niveis-intro { color: var(--tx-dark-muted); max-width: 520px; }
.nivel-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 54px 0 40px;
  position: relative;
  z-index: 2;
}
.nivel-tab {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: var(--tx-dark-muted);
  background: transparent;
  border: none;
  border-top: 3px solid var(--line-dark);
  padding: 16px 4px 10px;
  cursor: pointer;
  min-height: 44px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nivel-tab .icon { width: 24px; height: 24px; margin-bottom: 10px; }
.nivel-tab:hover { color: var(--tx-dark); }
.nivel-tab.active { color: var(--gold); border-top-color: var(--accent); }
.nivel-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.nivel-card {
  position: relative;
  z-index: 2;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--accent);
  padding: 40px 44px;
  max-width: 680px;
  min-height: 190px;
}
.nivel-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.nivel-card p { color: var(--tx-dark-muted); font-size: 1.05rem; }
.niveis-close {
  margin-top: 46px;
  max-width: 640px;
  font-size: 1.15rem;
  color: var(--tx-dark);
}
.niveis-close strong { color: var(--gold); font-weight: 600; }

/* =============== 5. O DIA (BENTO) =============== */
.dia { background: var(--paper-2); padding: 110px 0 120px; }
.dia h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 14px 0 54px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bento-card { padding: 34px 32px; border-radius: 6px; }
.bento-card h3 { font-family: var(--display); font-weight: 500; font-size: 1.15rem; margin-bottom: 12px; }
.bento-card p { font-size: 0.98rem; }
.b-demo {
  grid-column: span 7;
  grid-row: span 2;
  background: var(--ink);
  color: var(--tx-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(12, 17, 32, 0.35);
}
.b-demo h3 { font-size: 1.6rem; color: #fff; }
.b-demo p { color: var(--tx-dark-muted); font-size: 1.05rem; max-width: 480px; }
.b-demo .demo-feed {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 2.1;
  color: var(--tx-dark-muted);
  border-top: 1px dashed var(--line-dark);
  padding-top: 18px;
}
.b-demo .demo-feed .ok { color: var(--gold); }
.b-pilares { grid-column: span 5; background: var(--accent); color: #fff; }
.b-pilares p { color: rgba(255,255,255,0.88); }
.b-3 { grid-column: span 5; background: var(--paper); box-shadow: 0 10px 30px rgba(20, 22, 31, 0.08); }
.b-4 { grid-column: span 4; background: var(--paper); box-shadow: 0 10px 30px rgba(20, 22, 31, 0.08); }
.b-5 { grid-column: span 4; background: var(--paper); box-shadow: 0 10px 30px rgba(20, 22, 31, 0.08); }
.b-6 { grid-column: span 4; background: transparent; border: 1px solid var(--line-light); }
.bento-card .icon { width: 30px; height: 30px; margin-bottom: 14px; color: var(--tx-light); }
.b-demo .icon { color: var(--tx-dark); }
.b-pilares .icon { color: #fff; --accent: #EBDFFF; }
.bento-card .tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
}
.b-demo .tag, .b-pilares .tag { color: var(--gold); }

/* =============== 6. PRA QUEM É =============== */
.quem { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.quem-col { padding: 96px 56px; }
.quem-sim { background: var(--paper); }
.quem-nao { background: var(--ink); color: var(--tx-dark); }
.quem h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 12px 0 34px;
  max-width: 420px;
}
.quem ul { list-style: none; }
.quem li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 15px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line-light);
}
.quem-nao li { border-bottom-color: var(--line-dark); color: var(--tx-dark-muted); }
.quem li .m { font-family: var(--mono); font-weight: 500; }
.quem-sim li .m { color: var(--accent); }
.quem-nao li .m { color: var(--tx-dark-muted); }

/* =============== 7. QUEM CONDUZ =============== */
.conduz { background: var(--paper); padding: 130px 0; }
.conduz-stack { position: relative; display: grid; grid-template-columns: 5fr 7fr; align-items: center; }
.conduz-mono {
  background: var(--ink);
  aspect-ratio: 4 / 5;
  transform: rotate(-2deg);
  overflow: hidden;
  border: 1px solid var(--line-light);
}
.conduz-mono img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.conduz-card {
  position: relative;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--accent);
  border: 1px solid var(--line-light);
  padding: 52px 56px;
  margin-left: -70px;
  z-index: 2;
}
.conduz-card h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 10px 0 18px;
}
.conduz-card .bio { font-size: 1.08rem; margin-bottom: 20px; }
.conduz-card .apoio {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--accent);
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

/* =============== 8. OFERTA =============== */
.oferta {
  position: relative;
  background: var(--ink);
  color: var(--tx-dark);
  padding: 140px 0;
  overflow: hidden;
}
.oferta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 42%, rgba(140,26,255,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.oferta-head { text-align: center; max-width: 720px; margin: 0 auto 56px; position: relative; z-index: 2; }
.oferta-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  margin: 14px 0 16px;
  text-wrap: balance;
}
.oferta-head p { color: var(--tx-dark-muted); font-size: 1.15rem; }
.oferta-card {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid rgba(183, 140, 255, 0.4);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  padding: 48px 52px;
}
.lote-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 2px 12px;
  font-family: var(--mono);
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-dark);
}
.lote-row .nome { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-dark-muted); }
.lote-row.atual .nome { color: var(--gold); }
.lote-row .preco { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--tx-dark); }
.lote-row.atual .preco { color: #fff; }
.lote-row .parcela { font-size: 0.78rem; color: var(--tx-dark-muted); margin-left: 10px; }
.lote-row.futuro { opacity: 0.45; }
.lote-row.futuro .preco { font-size: 1.3rem; text-decoration: none; }
.oferta-inclusos { list-style: none; margin: 30px 0 36px; }
.oferta-inclusos li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  padding: 9px 0;
  font-size: 1rem;
}
.oferta-inclusos .icon { width: 19px; height: 19px; color: var(--gold); margin-top: 3px; }
.oferta-card .btn-primary { width: 100%; font-size: 1.15rem; padding: 20px; }
.oferta-card .micro {
  margin-top: 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--tx-dark-muted);
}
.garantia {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 28px auto 0;
  border: 1px dashed var(--line-dark);
  padding: 30px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}
.garantia .selo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 84px; height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  transform: rotate(-8deg);
}
.garantia h3 { font-family: var(--display); font-weight: 500; font-size: 1.1rem; margin-bottom: 8px; }
.garantia p { font-size: 0.95rem; color: var(--tx-dark-muted); }

/* =============== 9. FAQ =============== */
.faq { background: var(--paper); padding: 110px 0; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 12px 0 40px;
}
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico {
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq details p { padding: 0 4px 26px; color: var(--tx-light-muted); max-width: 640px; }

/* =============== 10. CTA FINAL =============== */
.final {
  background: var(--ink);
  color: var(--tx-dark);
  padding: 150px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black 20%, transparent 70%);
}
.final h2 {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto 20px;
  text-wrap: balance;
}
.final h2 em { font-style: normal; color: var(--accent); }
.final p { position: relative; color: var(--tx-dark-muted); font-size: 1.15rem; max-width: 560px; margin: 0 auto 44px; }
.final .btn-primary { font-size: 1.2rem; padding: 22px 52px; }
.final-chips {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tx-dark-muted);
}
.final-chips span { border: 1px solid var(--line-dark); padding: 8px 16px; border-radius: 999px; }

/* =============== FOOTER =============== */
footer {
  background: var(--ink-2);
  color: var(--tx-dark-muted);
  padding: 48px 0;
  font-size: 0.9rem;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
footer .logo { font-family: var(--display); font-weight: 800; color: var(--tx-dark); }
footer .logo em { color: var(--accent); font-style: normal; }
footer a { color: var(--tx-dark-muted); }

/* =============== STICKY BAR MOBILE =============== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .preco { font-family: var(--mono); font-size: 0.8rem; color: var(--tx-dark); line-height: 1.3; }
.sticky-bar .preco b { color: var(--gold); display: block; }
.sticky-bar .btn-primary { padding: 13px 22px; font-size: 0.95rem; box-shadow: none; flex-shrink: 0; }

/* =============== RESPONSIVO =============== */
@media (max-width: 1024px) {
  .hero-main { grid-template-columns: 1fr; gap: 40px; }
  .dor-close { margin-right: 0; }
  .hero-rail { flex-direction: row; flex-wrap: wrap; border-left: none; border-top: 1px solid var(--line-dark); display: flex; }
  .rail-item { border-bottom: none; padding: 18px 28px 0 0; }
  .conduz-stack { grid-template-columns: 1fr; }
  .conduz-card { margin-left: 0; margin-top: -60px; width: min(92%, 560px); justify-self: end; }
  .b-demo { grid-column: span 12; }
  .b-pilares, .b-3 { grid-column: span 6; }
  .b-4, .b-5, .b-6 { grid-column: span 4; }
}
@media (max-width: 768px) {
  body { font-size: 1rem; }
  .container { padding: 0 20px; }
  .hero-badge { display: none; }
  .hero-top { justify-content: center; }
  .hero-main { padding-block: 32px 52px; gap: 34px; }
  .hero-title { max-width: none; font-size: clamp(1.9rem, 8.8vw, 2.5rem); }
  .hero-title .solucao { font-size: 1.05rem; margin-top: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    border-left: none;
    border-top: 1px solid var(--line-dark);
    padding-top: 6px;
  }
  .rail-item { border-bottom: none; padding: 14px 0 0; grid-template-columns: 22px 1fr; gap: 2px 10px; }
  .rail-item .icon { width: 19px; height: 19px; }
  .rail-item .v { font-size: 0.88rem; }
  .marquee-track span { font-size: 0.9rem; }
  .dor { padding: 80px 0 70px; }
  .dor-grid { grid-template-columns: 1fr; gap: 40px; }
  .prova { padding: 80px 0; }
  .prova-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .stat-bar { grid-template-columns: 44px 1fr 54px; }
  .dor-close { margin-right: 0; padding: 30px 24px; font-size: 1.05rem; }
  .niveis { padding: 90px 0; }
  .nivel-rail { grid-template-columns: repeat(2, 1fr); }
  .nivel-card { padding: 28px 24px; }
  .dia { padding: 80px 0; }
  .bento-card { padding: 28px 24px; }
  .b-pilares, .b-3, .b-4, .b-5, .b-6 { grid-column: span 12; }
  .b-demo .demo-feed { font-size: 0.72rem; }
  .quem { grid-template-columns: 1fr; }
  .quem-col { padding: 64px 20px; }
  .conduz { padding: 72px 0; }
  .conduz-mono { transform: none; aspect-ratio: 4 / 5; max-width: 340px; margin: 0 auto; }
  .conduz-card { padding: 32px 24px; width: 100%; margin-top: -36px; }
  .oferta { padding: 90px 0; }
  .oferta-card { padding: 32px 22px; }
  .lote-row .preco { font-size: 1.55rem; }
  .garantia { grid-template-columns: 1fr; text-align: left; padding: 24px 22px; }
  .faq { padding: 76px 0; }
  .final { padding: 90px 0; }
  .sticky-bar { display: flex; }
  footer { padding-bottom: 96px; }
}

/* =============== MODAL PRÉ-CADASTRO =============== */
body.modal-open { overflow: hidden; }
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 5, 14, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--accent);
  color: var(--tx-dark);
  padding: 34px 30px 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.modal h3 { font-family: var(--display); font-weight: 800; font-size: 1.35rem; margin: 10px 0 8px; }
.modal-sub { color: var(--tx-dark-muted); font-size: 0.92rem; margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--tx-dark-muted);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { color: var(--tx-dark); }
.modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.hidden-field { position: absolute; left: -9999px; }
.form-field { margin-bottom: 15px; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-dark-muted);
  margin-bottom: 6px;
}
.form-field label .opt { text-transform: none; letter-spacing: 0; opacity: 0.7; }
.form-field input,
.form-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--tx-dark);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}
.form-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--tx-dark-muted) 50%), linear-gradient(135deg, var(--tx-dark-muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-field input::placeholder { color: var(--tx-dark-muted); opacity: 0.6; }
.form-field input:focus-visible,
.form-field select:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.modal form .btn-primary { width: 100%; margin-top: 6px; }
.modal form .btn-primary[disabled] { opacity: 0.6; cursor: wait; }
.modal-micro { margin-top: 12px; text-align: center; font-family: var(--mono); font-size: 0.7rem; color: var(--tx-dark-muted); }
.modal-success { text-align: center; padding: 30px 6px 20px; }
.modal-success p { color: var(--tx-dark-muted); margin-top: 10px; }

/* =============== MOTION =============== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .btn, .sticky-bar { transition: none; }
  * { animation-duration: 0.01ms !important; }
}
