/* ============================================================
   Metric Up — Landing Page Auditoria de Conta
   Identidade: dark premium / tech / marketplace / data-driven
   Stack: HTML + CSS puro (sem dependências de build)
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Marca */
  --navy:        #040E26;   /* fundo principal */
  --navy-700:    #061434;   /* painel/section alternada */
  --navy-600:    #0A1C40;   /* card base */
  --orange:      #F18D36;   /* destaque / CTA */
  --orange-700:  #7D3307;   /* apoio quente */
  --white:       #FEFEFE;   /* texto claro */

  /* Texto */
  --text-1: var(--white);
  --text-2: rgba(254, 254, 254, 0.72);
  --text-3: rgba(254, 254, 254, 0.58);   /* AA-safe em fonte pequena, inclusive sobre superfícies claras */
  --text-4: rgba(254, 254, 254, 0.55);   /* texto legal/rodapé — sobe para passar AA */

  /* Superfícies e bordas */
  --surface:        rgba(255, 255, 255, 0.025);
  --surface-hover:  rgba(255, 255, 255, 0.05);
  --border:         rgba(255, 255, 255, 0.08);
  --border-strong:  rgba(255, 255, 255, 0.16);
  --border-orange:  rgba(241, 141, 54, 0.40);

  /* Tipografia */
  --font-display: "Sora", "Rajdhani", "Inter Tight", system-ui, sans-serif;
  --font-body:    "Montserrat", system-ui, -apple-system, sans-serif;

  /* Espaçamento (base 8) */
  --space-section: clamp(64px, 9vw, 140px);
  --radius:   14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  /* Largura de conteúdo */
  --maxw: 1180px;
  --maxw-narrow: 820px;

  /* Sombra (uso mínimo, só para elevar CTA/preço) */
  --shadow-cta: 0 10px 30px -10px rgba(241, 141, 54, 0.45);
  --shadow-card: 0 24px 60px -30px rgba(0, 0, 0, 0.7);

  /* CTA verde (botões de ação) */
  --green:      #25D366;   /* CTA principal */
  --green-600:  #2FDD74;   /* hover */
  --green-ink:  #04210F;   /* texto sobre verde */
  --shadow-cta-green: 0 10px 30px -10px rgba(37, 211, 102, 0.5);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ---------- Barra de rolagem (padrão da marca) ---------- */
* { scrollbar-width: thin; scrollbar-color: var(--orange) rgba(255,255,255,0.05); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--navy-700); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--orange), var(--orange-700)); border-radius: 999px; border: 3px solid var(--navy-700); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
::-webkit-scrollbar-corner { background: var(--navy-700); }

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--text-1);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Textura/atmosfera de fundo: brilho sutil + grid técnico */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(241, 141, 54, 0.10), transparent 42%),
    radial-gradient(circle at 12% 92%, rgba(125, 51, 7, 0.12), transparent 45%);
  pointer-events: none;
}
/* fundo: gráficos de linha em progressão de crescimento (motion graphics) */
.bg-graph { position: fixed; left: 0; right: 0; bottom: 0; height: 58vh; z-index: -2; overflow: hidden; pointer-events: none;
  opacity: 0.22; -webkit-mask-image: linear-gradient(180deg, transparent, #000 46%); mask-image: linear-gradient(180deg, transparent, #000 46%); }
.bg-graph svg { width: 100%; height: 100%; display: block; }
.bg-graph .grid line { stroke: rgba(255,255,255,0.05); stroke-width: 1; }
.bg-graph .ln { fill: none; stroke-linecap: round; stroke-linejoin: round; filter: url(#gGlow);
  stroke-dasharray: 2600; stroke-dashoffset: 2600; }
.bg-graph .l1 { stroke: url(#g1); stroke-width: 3.5; animation: drawGrow 9s ease-in-out infinite; }
.bg-graph .l2 { stroke: url(#g2); stroke-width: 2.5; opacity: 0.8; animation: drawGrow 9s ease-in-out infinite 0.9s; }
.bg-graph .l3 { stroke: url(#g3); stroke-width: 2; opacity: 0.6; animation: drawGrow 9s ease-in-out infinite 1.8s; }
.bg-graph .area { opacity: 0; animation: areaGrow 9s ease-in-out infinite; }
.bg-graph .dot { fill: #FFE08A; filter: url(#gGlow); opacity: 0; animation: dotGrow 9s ease-in-out infinite; }
@keyframes drawGrow { 0% { stroke-dashoffset: 2600; } 50%, 90% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 2600; } }
@keyframes areaGrow { 0%, 12% { opacity: 0; } 52%, 90% { opacity: 1; } 100% { opacity: 0; } }
@keyframes dotGrow { 0%, 44% { opacity: 0; } 54%, 90% { opacity: 1; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .bg-graph .ln { animation: none; stroke-dashoffset: 0; } .bg-graph .area, .bg-graph .dot { animation: none; opacity: 1; } }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: var(--maxw-narrow); }

section { position: relative; padding-block: var(--space-section); }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012) 18%, rgba(255,255,255,0.012) 82%, transparent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--orange);
  opacity: 0.7;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin-bottom: 18px;
}
.section-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-2);
  max-width: 640px;
}

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

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--green);
  color: var(--green-ink);
  box-shadow: var(--shadow-cta-green);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--green-600); box-shadow: 0 16px 40px -12px rgba(37,211,102,0.6); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface-hover); border-color: var(--white); }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 16px; }

.cta-microcopy {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
  max-width: 460px;
  line-height: 1.6;
}

/* ---------- 5. Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(4, 14, 38, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 30px; height: 30px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand__name b { color: var(--orange); font-weight: 700; }
.nav__cta { display: inline-flex; padding: 11px 18px; font-size: 14px; }
@media (max-width: 460px) { .nav__cta { padding: 10px 14px; font-size: 13px; } }

/* ---------- 6. Hero ---------- */
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(64px, 9vw, 120px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 30px;
}
.hero__bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.hero__bullets li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--text-2); }
.hero__bullets .tick {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 6px; background: rgba(241,141,54,0.12);
  border: 1px solid var(--border-orange);
  display: grid; place-items: center;
}
.hero__bullets .tick svg { width: 13px; height: 13px; stroke: var(--orange); }
.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

/* Hero visual — painel de diagnóstico */
.hero__visual { position: relative; }
.diag-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  padding: 26px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.diag-panel__fox {
  position: absolute;
  right: -30px; bottom: -34px;
  width: 230px; opacity: 0.06;
  pointer-events: none;
}
.diag-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.diag-head span { font-family: var(--font-display); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); }
.diag-dots { display: flex; gap: 6px; }
.diag-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); display: block; }
.diag-dots i:first-child { background: var(--orange); }

.diag-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.metric {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--surface);
}
.metric .label { font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.metric .value { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.metric .value small { font-size: 13px; color: var(--orange); font-weight: 600; margin-left: 4px; }

.diag-bars { display: flex; flex-direction: column; gap: 13px; }
.bar-row { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 12px; }
.bar-row .k { font-size: 12px; color: var(--text-3); }
.bar-track { height: 7px; border-radius: 100px; background: rgba(255,255,255,0.06); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--orange-700), var(--orange)); }

/* ---------- 7. Bloco de dor ---------- */
.pain__grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 900px) { .pain__grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.pain__intro p { color: var(--text-2); margin-bottom: 18px; font-size: 16.5px; }
.symptom-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 28px;
}
.symptom-card > p { font-size: 14px; color: var(--text-3); margin-bottom: 18px; }
.symptoms li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 15px;
}
.symptoms li:last-child { border-bottom: none; }
.symptoms .x {
  flex: none; width: 20px; height: 20px; margin-top: 2px;
  display: grid; place-items: center;
}
.symptoms .x svg { width: 16px; height: 16px; stroke: var(--orange); }
.impact-phrase {
  margin-top: 30px;
  border-left: 2px solid var(--orange);
  padding: 6px 0 6px 22px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- 8. O que é ---------- */
.about__box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.008));
  padding: clamp(30px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.about__box p { color: var(--text-2); font-size: 17px; margin-bottom: 18px; max-width: 760px; }
.about__box p:last-child { margin-bottom: 0; }
.about__neg { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text-2);
}

/* ---------- 9. Grid de cards (análise) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.acard {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.acard:hover { border-color: var(--border-orange); background: var(--surface-hover); transform: translateY(-3px); }
.acard__num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}
.acard__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 11px;
  display: grid; place-items: center;
  margin: 14px 0 18px;
  background: rgba(241,141,54,0.06);
}
.acard__icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
.acard h3 { font-size: 17px; margin-bottom: 10px; }
.acard p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ---------- 10. O que você recebe ---------- */
.receive__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .receive__grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; gap: 56px; } }
.receive-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-1);
}
.receive-list li:last-child { border-bottom: none; }
.receive-list .check {
  flex: none; width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(241,141,54,0.12);
  border: 1px solid var(--border-orange);
  display: grid; place-items: center;
}
.receive-list .check svg { width: 15px; height: 15px; stroke: var(--orange); }
.receive-note {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}
.receive-note h4 { font-family: var(--font-display); font-size: 15px; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.receive-note p { color: var(--text-2); font-size: 15.5px; }

/* ---------- 11. Como funciona (stepper) ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 48px; position: relative; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px 30px; } }
.step {
  position: relative;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.step__n {
  font-family: var(--font-display);
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-orange);
  background: rgba(241,141,54,0.08);
  color: var(--orange);
  font-weight: 700; font-size: 16px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--text-2); }
.step p + p { margin-top: 8px; color: var(--text-3); font-size: 13px; }

/* ---------- 12. Para quem é / não é ---------- */
.audience { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 860px) { .audience { grid-template-columns: 1fr 1fr; gap: 26px; } }
.aud-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface);
}
.aud-col--yes { border-color: var(--border-orange); background: linear-gradient(160deg, rgba(241,141,54,0.06), transparent); }
.aud-col h3 { font-size: 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.aud-col h3 .badge-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; border: 1px solid var(--border-strong); }
.aud-col--yes h3 .badge-ico { border-color: var(--border-orange); background: rgba(241,141,54,0.1); }
.aud-col h3 .badge-ico svg { width: 18px; height: 18px; stroke: var(--orange); }
.aud-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; color: var(--text-2); font-size: 15px; border-bottom: 1px solid var(--border); }
.aud-list li:last-child { border-bottom: none; }
.aud-list .mk { flex: none; margin-top: 3px; width: 16px; height: 16px; }
.aud-list .mk svg { width: 16px; height: 16px; }
.aud-col--yes .mk svg { stroke: var(--orange); }
.aud-col--no .mk svg { stroke: var(--text-3); }

/* ---------- 13. Por que Metric Up ---------- */
.why__grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 920px) { .why__grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } }
.why__text p { color: var(--text-2); font-size: 16.5px; margin-bottom: 18px; }
.why__text p.why-punch { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 23px); font-weight: 600; color: var(--white); }
.why-diffs { display: grid; gap: 12px; }
.why-diffs li {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 15px;
  color: var(--text-1);
}
.why-diffs .d-ico { flex: none; width: 22px; height: 22px; }
.why-diffs .d-ico svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.6; }

/* ---------- 14. Método ECOMM 360º ---------- */
.ecomm { text-align: center; }
.ecomm .section-title, .ecomm .section-lead { margin-inline: auto; }
.ecomm__phrases { max-width: 660px; margin: 28px auto 0; }
.ecomm__phrases p { color: var(--text-2); font-size: 16px; margin-bottom: 8px; }
.ecomm__phrases p strong { color: var(--white); font-weight: 600; }
.flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.flow__node {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  white-space: nowrap;
}
.flow__node--last { border-color: var(--orange); color: var(--orange); background: rgba(241,141,54,0.08); }
.flow__arrow { color: var(--orange); flex: none; display: grid; place-items: center; }
.flow__arrow svg { width: 18px; height: 18px; }

/* ---------- 15. Investimento ---------- */
.price-wrap { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 560px; margin-inline: auto; }
.price-card {
  position: relative;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(241,141,54,0.10), rgba(255,255,255,0.012));
  padding: clamp(34px, 5vw, 50px);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-card__fox { position: absolute; top: -30px; right: -30px; width: 170px; opacity: 0.07; }
.price-card .ribbon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border-orange);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 22px;
}
.price-card .amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 8px; }
.price-card .amount .cur { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text-2); }
.price-card .amount .num { font-family: var(--font-display); font-size: clamp(54px, 9vw, 80px); font-weight: 800; line-height: 1; }
.price-card .pay-once { font-size: 13px; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.price-card p { color: var(--text-2); font-size: 15.5px; margin-bottom: 16px; }
.price-card .includes { display: flex; flex-direction: column; gap: 12px; text-align: left; margin: 26px 0; }
.price-card .includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-1); }
.price-card .includes .check { flex: none; width: 22px; height: 22px; border-radius: 6px; background: rgba(241,141,54,0.14); display: grid; place-items: center; }
.price-card .includes .check svg { width: 13px; height: 13px; stroke: var(--orange); }

/* ---------- 16. Continuidade ---------- */
.continuity {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(30px, 4.5vw, 50px);
  max-width: 880px;
  margin-inline: auto;
  position: relative;
}
.continuity__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: 1px;
  color: var(--orange); margin-bottom: 18px;
}
.continuity h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 18px; }
.continuity p { color: var(--text-2); font-size: 16.5px; margin-bottom: 16px; }
.continuity .highlight {
  display: flex; gap: 14px; align-items: center;
  margin-top: 24px; padding: 20px 24px;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  background: rgba(241,141,54,0.06);
}
.continuity .highlight svg { width: 28px; height: 28px; stroke: var(--orange); flex: none; }
.continuity .highlight b { color: var(--white); }

/* ---------- 17. FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__list { margin-top: 42px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16.5px; font-weight: 600;
  color: var(--text-1);
  padding: 22px 4px;
}
.faq-q:hover { color: var(--orange); }
.faq-q .chev {
  flex: none; width: 22px; height: 22px;
  transition: transform 0.35s var(--ease);
}
.faq-q .chev svg { width: 22px; height: 22px; stroke: var(--orange); }
.faq-item[aria-expanded="true"] .chev { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.4s var(--ease);
  opacity: 0;
}
.faq-item[aria-expanded="true"] .faq-a { max-height: 320px; opacity: 1; padding-bottom: 22px; }
.faq-a p { color: var(--text-2); font-size: 15.5px; padding-right: 30px; }

/* ---------- 18. CTA final ---------- */
.final {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(241,141,54,0.12), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.008));
  padding: clamp(48px, 7vw, 90px) clamp(24px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.final__fox { position: absolute; left: 50%; bottom: -60px; transform: translateX(-50%); width: 300px; opacity: 0.05; }
.final h2 { font-size: clamp(28px, 4.4vw, 48px); max-width: 760px; margin: 0 auto 22px; line-height: 1.08; }
.final p { color: var(--text-2); font-size: 17px; max-width: 620px; margin: 0 auto 34px; }
.final .cta-microcopy { margin-inline: auto; text-align: center; }

/* ---------- 19. Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-block: 48px; }
.footer__inner { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 760px) { .footer__inner { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer .brand__name { font-size: 15px; }
.footer__disc { color: var(--text-3); font-size: 13px; max-width: 560px; line-height: 1.6; }
.footer__legal { color: var(--text-4); font-size: 12px; }

/* ---------- 20. Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 21. Acessibilidade / reduced motion ---------- */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 22. Ajustes mobile finos ---------- */
@media (max-width: 600px) {
  section { padding-block: 64px; }
  .hero__actions { align-items: stretch; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .diag-metrics { grid-template-columns: 1fr; }

  /* Flow ECOMM: empilha vertical com setas para baixo (evita pills embaralhadas) */
  .flow { flex-direction: column; gap: 8px; }
  .flow__node { font-size: 14px; padding: 13px 20px; width: 100%; max-width: 280px; text-align: center; }
  .flow__arrow { transform: rotate(90deg); }
}

/* ============================================================
   23. ENHANCEMENTS — logos reais, imagens, cor complementar,
       destaque e motion graphics
   ============================================================ */
:root {
  --accent2:      #3FC9E0;                 /* complementar do laranja (ciano/teal) */
  --accent2-soft: rgba(63, 201, 224, 0.12);
  --accent2-bd:   rgba(63, 201, 224, 0.40);
}

/* ---- Logos oficiais (substituem o placeholder SVG) ---- */
.brand__logo { height: 30px; width: auto; display: block; }
.nav.scrolled .brand__logo { height: 27px; }
.footer__logo { height: 54px; width: auto; }

/* ---- Navbar: estado ao rolar (transição) ---- */
.nav { transition: height .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease); }
.nav.scrolled { background: rgba(4,14,38,0.92); box-shadow: 0 10px 34px -16px rgba(0,0,0,0.7); }
.nav.scrolled .nav__inner { height: 60px; }

/* ---- Barra de progresso de scroll ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--accent2));
  z-index: 60; transition: width .12s linear; box-shadow: 0 0 12px rgba(241,141,54,0.5);
}

/* ---- Destaque (emphasis) ---- */
.hl { color: var(--white); background-image: linear-gradient(180deg, transparent 62%, rgba(241,141,54,0.30) 0); padding: 0 3px; border-radius: 2px; }
.hl-teal { color: var(--white); background-image: linear-gradient(180deg, transparent 62%, rgba(63,201,224,0.26) 0); padding: 0 3px; border-radius: 2px; }
.impact-phrase { background: linear-gradient(90deg, rgba(241,141,54,0.06), transparent); padding: 16px 0 16px 22px; border-radius: 0 10px 10px 0; }

/* ---- Botões: brilho que varre + glow pulsante ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-130%) skewX(-18deg); transition: transform .7s var(--ease);
}
.btn--primary:hover::after { transform: translateX(130%) skewX(-18deg); }
.btn--lg.btn--primary { animation: ctaGlow 3.2s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100% { box-shadow: 0 10px 30px -12px rgba(37,211,102,0.45); } 50% { box-shadow: 0 14px 40px -10px rgba(37,211,102,0.72); } }

/* ---- Imagens: figura premium com moldura + blend no navy ---- */
.figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  background: var(--navy-700);
}
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.figure:hover img { transform: scale(1.04); }
.figure::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4,14,38,0.55)); }
.figure__tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); background: rgba(4,14,38,0.55); backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong); border-radius: 100px; padding: 7px 14px;
}
.figure__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }

/* ---- Hero: imagem + card flutuante ---- */
.hero__figure { position: relative; overflow: visible; }
.hero__figure .figure { aspect-ratio: 16/10; }
.hero-float {
  position: absolute; left: -22px; bottom: 26px; z-index: 3;
  background: rgba(6,20,52,0.82); backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-card);
  animation: floatY 6s ease-in-out infinite; max-width: 230px;
}
.hero-float .k { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.hero-float .bars { display: flex; flex-direction: column; gap: 8px; }
.hero-float .bar { height: 6px; border-radius: 100px; background: rgba(255,255,255,0.08); overflow: hidden; }
.hero-float .bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--orange-700), var(--orange)); width: 0; }
.hero-float.is-visible .bar i { animation: growBar 1.4s var(--ease) forwards; }
.hero-float .bar:nth-child(2) i { animation-delay: .1s; }
.hero-float .bar:nth-child(3) i { animation-delay: .2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes growBar { from { width: 0; } }
@media (max-width: 600px) { .hero-float { left: 10px; bottom: 12px; max-width: 190px; padding: 13px 14px; } }

/* ---- Grid de mídia (texto + imagem por seção) ---- */
.media-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 920px) { .media-grid { grid-template-columns: 1fr 1fr; gap: 60px; } .media-grid--rev .media-grid__text { order: 2; } }
.media-grid .figure { aspect-ratio: 4/3; }

/* ---- Banda parallax (transição entre seções) ---- */
.band { position: relative; min-height: 420px; display: grid; place-items: center; overflow: hidden; border-block: 1px solid var(--border); }
.band__bg { position: absolute; inset: -12% 0; background-size: cover; background-position: center; will-change: transform; }
.band__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,14,38,0.92), rgba(4,14,38,0.55) 45%, rgba(4,14,38,0.92)); }
.band__content { position: relative; z-index: 2; text-align: center; max-width: 760px; padding: 60px 24px; }
.band__content h2 { font-size: clamp(24px, 3.6vw, 40px); margin-bottom: 14px; }
.band__content p { color: var(--text-2); font-size: 17px; }

/* ---- Método ECOMM: banner de imagem acima do fluxo ---- */
.ecomm__figure { max-width: 760px; margin: 0 auto 44px; }
.ecomm__figure .figure { aspect-ratio: 21/9; }

/* ---- Fluxo ECOMM: pulso sequencial nos nós ---- */
.flow__node { transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.flow.is-visible .flow__node { animation: nodePop .5s var(--ease) both; }
.flow.is-visible .flow__node:nth-child(1){animation-delay:.05s} .flow.is-visible .flow__node:nth-child(3){animation-delay:.15s}
.flow.is-visible .flow__node:nth-child(5){animation-delay:.25s} .flow.is-visible .flow__node:nth-child(7){animation-delay:.35s}
.flow.is-visible .flow__node:nth-child(9){animation-delay:.45s} .flow.is-visible .flow__node:nth-child(11){animation-delay:.55s}
.flow.is-visible .flow__node:nth-child(13){animation-delay:.65s}
.flow.is-visible .flow__arrow { animation: arrowFade .5s var(--ease) both; }
@keyframes nodePop { from { opacity: 0; transform: translateY(12px) scale(.9); } }
@keyframes arrowFade { from { opacity: 0; } }
.flow__node--last { animation: lastPulse 2.4s ease-in-out infinite 1s !important; }
@keyframes lastPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(241,141,54,0); } 50% { box-shadow: 0 0 22px -2px rgba(241,141,54,0.5); } }

/* ---- Card de preço: ênfase máxima ---- */
.price-card { animation: priceGlow 4s ease-in-out infinite; }
@keyframes priceGlow { 0%,100% { box-shadow: var(--shadow-card); border-color: var(--border-orange); } 50% { box-shadow: 0 30px 80px -30px rgba(241,141,54,0.4); border-color: rgba(241,141,54,0.6); } }
.price-card .amount .num { background: linear-gradient(180deg, #ffd9b0, var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.continuity .highlight { background: var(--accent2-soft); border-color: var(--accent2-bd); }
.continuity .highlight svg { stroke: var(--accent2); }

/* ---- Reveal: direções + stagger ---- */
.reveal--left { transform: translateX(-44px); }
.reveal--right { transform: translateX(44px); }
.reveal--scale { transform: scale(.94); }
.reveal--left.is-visible, .reveal--right.is-visible, .reveal--scale.is-visible { transform: none; }

/* ---- Acessibilidade: desliga TODO o motion pesado ---- */
@media (prefers-reduced-motion: reduce) {
  .btn--lg.btn--primary, .price-card, .flow__node--last, .hero-float,
  .flow.is-visible .flow__node, .flow.is-visible .flow__arrow,
  .hero-float.is-visible .bar i { animation: none !important; }
  .hero-float .bar i { width: 70% !important; }
  .band__bg, .hero__bg { transform: none !important; }
}

/* ============================================================
   24. v3 — seções claras alternadas, ícones em cores
       complementares, hero refinado
   ============================================================ */

/* ---- Tema CLARO (flip dos tokens dentro da seção) ---- */
.theme-light {
  --text-1: #0A1A33;
  --text-2: rgba(10, 26, 51, 0.74);
  --text-3: rgba(10, 26, 51, 0.56);
  --text-4: rgba(10, 26, 51, 0.46);
  --border: rgba(10, 26, 51, 0.10);
  --border-strong: rgba(10, 26, 51, 0.18);
  --surface: rgba(10, 26, 51, 0.028);
  --surface-hover: rgba(10, 26, 51, 0.055);
  --navy-700: #ffffff;
  color: var(--text-1);
}
.section--gray  { background: #EEF1F7; }
.section--white { background: #FBFCFE; }
/* divisória sutil entre claro e escuro */
.theme-light { border-block: 1px solid rgba(10,26,51,0.06); }

/* textos que eram brancos precisam virar escuros no tema claro */
.theme-light .why-punch { color: var(--text-1); }
.theme-light .hl { color: var(--text-1); background-image: linear-gradient(180deg, transparent 60%, rgba(241,141,54,0.35) 0); }
.theme-light .hl-teal { color: var(--text-1); background-image: linear-gradient(180deg, transparent 60%, rgba(63,201,224,0.40) 0); }
.theme-light .eyebrow { color: #B85A0C; }
.theme-light .eyebrow::before { background: #B85A0C; }
.theme-light .section-title { color: var(--text-1); }
.theme-light .tag { color: var(--text-2); }

/* continuidade no claro */
.theme-light .continuity .highlight { background: rgba(63,201,224,0.12); border-color: rgba(20,140,165,0.45); color: var(--text-1); }
.theme-light .continuity .highlight b { color: var(--text-1); }
.theme-light .continuity .highlight svg { stroke: #11829B; }
.theme-light .continuity__tag { color: #B85A0C; }
.theme-light .continuity__tag svg { stroke: #B85A0C !important; }

/* steps / receive-note no claro: caixa clara com leve elevação */
.theme-light .step,
.theme-light .receive-note,
.theme-light .aud-col { box-shadow: 0 12px 30px -22px rgba(10,26,51,0.4); }
.theme-light .receive-note h4 { color: #B85A0C; }

/* ---- Ícones em cores complementares (laranja + teal) ---- */
/* Grid de análise: alterna laranja/teal, container com gradiente e mais presença */
.acard__icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(145deg, rgba(241,141,54,0.20), rgba(241,141,54,0.05));
  border-color: var(--border-orange);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.acard__icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.acard:nth-child(2n) .acard__icon {
  background: linear-gradient(145deg, rgba(63,201,224,0.20), rgba(63,201,224,0.05));
  border-color: var(--accent2-bd);
}
.acard:nth-child(2n) .acard__icon svg { stroke: var(--accent2); }
.acard:nth-child(2n) .acard__num { color: var(--accent2); }
.acard:hover .acard__icon { transform: translateY(-2px) scale(1.06); box-shadow: 0 10px 24px -12px rgba(241,141,54,0.5); }
.acard:nth-child(2n):hover { border-color: var(--accent2-bd); }
.acard:nth-child(2n):hover .acard__icon { box-shadow: 0 10px 24px -12px rgba(63,201,224,0.55); }

/* Diferenciais "Por que": ícones alternando teal */
.why-diffs li:nth-child(2n) .d-ico svg { stroke: var(--accent2); }
.why-diffs li { transition: border-color .3s var(--ease), transform .3s var(--ease); }
.why-diffs li:hover { transform: translateX(4px); border-color: var(--border-orange); }
.why-diffs li:nth-child(2n):hover { border-color: var(--accent2-bd); }

/* Passos: chips alternando laranja/teal */
.step:nth-child(2n) .step__n { border-color: var(--accent2-bd); background: rgba(63,201,224,0.10); color: var(--accent2); }

/* Hero bullets: tick com leve realce */
.hero__bullets li:nth-child(2) .tick { background: rgba(63,201,224,0.12); border-color: var(--accent2-bd); }
.hero__bullets li:nth-child(2) .tick svg { stroke: var(--accent2); }

/* Card de análise: faixa de destaque no topo no hover */
.acard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent 70%);
  opacity: 0; transition: opacity .3s var(--ease); border-radius: var(--radius) var(--radius) 0 0;
}
.acard:hover::before { opacity: 1; }
.acard:nth-child(2n)::before { background: linear-gradient(90deg, var(--accent2), transparent 70%); }

/* ---- Hero refinado ---- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -14% -6%; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.14; filter: blur(3px) saturate(1.1);
  will-change: transform; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 85% 75% at 52% 32%, transparent, var(--navy) 80%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(28px, 3.9vw, 46px); }     /* menor: primeira dobra mais suave */
.hero__sub { font-size: clamp(15px, 1.5vw, 18px); }
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1fr 1.18fr; gap: 56px; }   /* imagem maior */
}
.hero__figure .figure { aspect-ratio: 3 / 2; }                    /* proporção mais profissional */
.hero__bg { opacity: 0.20; filter: blur(2px) saturate(1.05); }    /* galpão de ecommerce, sutil */

/* ============================================================
   25. v4 — ajustes finos pedidos
   ============================================================ */
:root { --aqua: #34CFB8; --aqua-soft: rgba(52,207,184,0.18); --aqua-bd: rgba(52,207,184,0.45); }

/* ---- Bloco de dor: exclamação laranja em destaque + frase laranja ---- */
.symptoms .x {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(241,141,54,0.15); border: 1px solid var(--border-orange);
}
.symptoms .x svg { width: 15px; height: 15px; stroke: var(--orange); stroke-width: 2.2; }
.impact-phrase { color: var(--orange); }

/* ---- Seção "O que analisamos": ícones em UMA cor (verde água) ---- */
.acard__icon,
.acard:nth-child(2n) .acard__icon {
  background: linear-gradient(145deg, rgba(52,207,184,0.20), rgba(52,207,184,0.05));
  border-color: var(--aqua-bd);
}
.acard__icon svg,
.acard:nth-child(2n) .acard__icon svg { stroke: var(--aqua); }
.acard__num,
.acard:nth-child(2n) .acard__num { color: var(--aqua); }
.acard::before,
.acard:nth-child(2n)::before { background: linear-gradient(90deg, var(--aqua), transparent 70%); }
.acard:hover,
.acard:nth-child(2n):hover { border-color: var(--aqua-bd); }
.acard:hover .acard__icon,
.acard:nth-child(2n):hover .acard__icon { box-shadow: 0 10px 24px -12px rgba(52,207,184,0.55); }

/* ---- "Como funciona": números SEMPRE laranja ---- */
.step:nth-child(2n) .step__n {
  border-color: var(--border-orange); background: rgba(241,141,54,0.08); color: var(--orange);
}

/* ---- Entregáveis: mais destaque + imagem de relatório ---- */
.receive-list li { font-size: 16.5px; padding: 18px 0; font-weight: 500; }
.receive-list .check { width: 30px; height: 30px; }
.receive-list .check svg { width: 17px; height: 17px; }
.receive__fig .figure { aspect-ratio: 4 / 3; margin-bottom: 22px; }

/* ---- Aderência: caixas e ícones com mais destaque + imagem ---- */
.aud-figure.figure { aspect-ratio: 16 / 9; margin-bottom: 24px; }
.aud-col { transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.aud-col:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7); }
.aud-col--yes:hover { border-color: rgba(241,141,54,0.6); }
.aud-col--no:hover { border-color: var(--border-strong); }
.aud-col h3 { font-size: 21px; }
.aud-col h3 .badge-ico { width: 40px; height: 40px; }
.aud-col h3 .badge-ico svg { width: 21px; height: 21px; }
.aud-list .mk { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; }
.aud-list .mk svg { width: 15px; height: 15px; }
.aud-col--yes .aud-list .mk { background: rgba(241,141,54,0.15); border: 1px solid var(--border-orange); }
.aud-col--no .aud-list .mk { background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.aud-list li { padding: 13px 0; }

/* ---- Raposa oficial dentro das caixas (preço / CTA final) ---- */
img.price-card__fox, img.final__fox { object-fit: contain; }

/* ============================================================
   26. v5 — checks em verde água (hero, aderência, preço) + 147 em verde água
   ============================================================ */

/* Hero: bullets todos em verde água (antes 2 cores) */
.hero__bullets .tick,
.hero__bullets li:nth-child(2) .tick {
  background: var(--aqua-soft); border-color: var(--aqua-bd);
}
.hero__bullets .tick svg,
.hero__bullets li:nth-child(2) .tick svg { stroke: var(--aqua); }

/* Aderência: checks do "para quem é" em verde água */
.aud-col--yes h3 .badge-ico { border-color: var(--aqua-bd); background: var(--aqua-soft); }
.aud-col--yes h3 .badge-ico svg { stroke: var(--aqua); }
.aud-col--yes .aud-list .mk { background: var(--aqua-soft); border-color: var(--aqua-bd); }
.aud-col--yes .aud-list .mk svg { stroke: var(--aqua); }
/* "Talvez não seja para você se…" — marcadores em vermelho vibrante */
.aud-col--no .aud-list .mk { background: rgba(255,59,48,0.10); border-color: rgba(255,59,48,0.42); }
.aud-col--no .aud-list .mk svg { stroke: #FF3B30; }
.aud-col--no h3 .badge-ico { background: rgba(255,59,48,0.10); border-color: rgba(255,59,48,0.42); }
.aud-col--no h3 .badge-ico svg { stroke: #FF3B30 !important; }

/* Preço: checks dos inclusos em verde água */
.price-card .includes .check { background: var(--aqua-soft); }
.price-card .includes .check svg { stroke: var(--aqua); }

/* Preço: R$ 147 em destaque verde água */
.price-card .amount .num {
  background: linear-gradient(180deg, #C6F5EA, var(--aqua));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card .amount .cur { color: var(--aqua); }

/* ============================================================
   27. v2 — HERO com vídeo centralizado
   ============================================================ */
.hero--center { text-align: center; }
.hero--center .hero__center {
  max-width: 920px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero--center .hero__badge { margin-inline: auto; }
.hero--center h1 { font-size: clamp(25px, 3.5vw, 42px); margin-inline: auto; max-width: 880px; margin-bottom: 22px; }
.hero--center .hero__video { margin: 0 auto 30px; }   /* vídeo logo após o H1 */
.hero--center .hero__sub { margin-top: 4px; }
.hero--center .hero__sub { margin-inline: auto; }
.hero--center .hero__bullets { max-width: 600px; margin: 8px auto 30px; text-align: left; }
.hero--center .hero__actions { align-items: center; }
.hero--center .cta-microcopy { text-align: center; margin-inline: auto; }

.hero__video { width: 100%; max-width: 940px; margin: 46px auto 0; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-card);
  background: #04080F;
}
.video-frame video, .video-frame iframe { width: 100%; height: 100%; display: block; object-fit: cover; border: 0; }
.video-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(4,14,38,0.15), rgba(4,14,38,0.55)),
    var(--poster, none);
  background-size: cover; background-position: center;
  cursor: pointer; transition: opacity .4s var(--ease);
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.video-play {
  position: relative; width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(241,141,54,0.94); display: grid; place-items: center;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 14px 44px -8px rgba(241,141,54,0.6);
}
.video-play svg { width: 32px; height: 32px; margin-left: 5px; fill: #1A0A00; }
.video-play::after {
  content: ""; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(241,141,54,0.5); animation: pulseRing 2.6s ease-out infinite;
}
.video-play:hover { transform: scale(1.08); box-shadow: 0 18px 54px -8px rgba(241,141,54,0.75); }
.video-label {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 13px; letter-spacing: 1px;
  color: var(--white); background: rgba(4,14,38,0.55); backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong); border-radius: 100px; padding: 8px 18px;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .video-play::after { animation: none; } }
@media (max-width: 600px) {
  .video-play { width: 66px; height: 66px; }
  .video-play svg { width: 25px; height: 25px; }
  .hero__video { margin-top: 32px; }
}

/* ============================================================
   28. Borda animada laranja ao redor do vídeo (atrai o lead)
   ============================================================ */
.hero__video {
  position: relative;
  padding: 3px;                                   /* espessura da borda animada */
  border-radius: calc(var(--radius-lg) + 3px);
  overflow: hidden;
  background: rgba(241, 141, 54, 0.20);           /* trilho base da borda (laranja suave) */
  animation: videoGlowPulse 3s ease-in-out infinite;
  isolation: isolate;
}
/* feixe de luz girando (comet beam) */
.hero__video::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 150%; aspect-ratio: 1 / 1; z-index: 0;
  background: conic-gradient(from 0deg,
    transparent 0 56%, #ffb35c 70%, var(--orange) 82%, #7D3307 92%, transparent 100%);
  transform: translate(-50%, -50%);
  animation: videoBeam 4s linear infinite;
}
.hero__video .video-frame { position: relative; z-index: 1; }
@keyframes videoBeam { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes videoGlowPulse {
  0%, 100% { box-shadow: 0 0 24px -8px rgba(241, 141, 54, 0.40); }
  50%      { box-shadow: 0 0 50px -4px rgba(241, 141, 54, 0.70); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { animation: none; background: var(--border-orange); }
  .hero__video::before { display: none; }
}

/* ============================================================
   29. Mercado Livre, prova (parceiro/GMV), WhatsApp, skin-in-the-game
   ============================================================ */
:root { --wa: #25D366; --wa-dark: #1EBE5D; --ml-yellow: #FFE600; --ml-blue: #2D3277; }

/* Botão verde (falar com especialista / WhatsApp) */
.btn--wa { background: var(--wa); color: #053A1A; animation: waBtnGlow 3.2s ease-in-out infinite; }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn--wa svg { width: 18px; height: 18px; fill: currentColor; }
/* mesmo brilho que varre dos botões laranja + glow pulsante (verde) */
.btn--wa::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-130%) skewX(-18deg); transition: transform .7s var(--ease);
}
.btn--wa:hover::after { transform: translateX(130%) skewX(-18deg); }
@keyframes waBtnGlow { 0%, 100% { box-shadow: 0 8px 26px -12px rgba(37,211,102,0.5); } 50% { box-shadow: 0 12px 38px -8px rgba(37,211,102,0.85); } }
@media (prefers-reduced-motion: reduce) { .btn--wa { animation: none; } }

/* ===== Footer WhatsApp: menor e mais sutil ===== */
.footer .btn--wa { background: transparent; color: var(--text-2); border: 1px solid var(--border); animation: none; box-shadow: none; font-size: 13px; padding: 8px 15px; letter-spacing: 0; }
.footer .btn--wa svg { width: 15px; height: 15px; opacity: .85; }
.footer .btn--wa::after { display: none; }
.footer .btn--wa:hover { background: var(--surface); color: var(--white); border-color: var(--wa); transform: none; }

/* ===== Barra "agenda quase lotada" no popup de urgência ===== */
.agenda-progress { margin: 4px 0 22px; text-align: left; }
.agenda-progress__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.agenda-progress__label { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.agenda-progress__pct { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #FF6A3D; }
.agenda-track { height: 12px; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid var(--border); overflow: hidden; }
.agenda-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--orange), #FF3B30); box-shadow: 0 0 14px rgba(255,80,40,.5); transition: width 1.6s cubic-bezier(.22,1,.36,1); }
.modal.show .agenda-fill { width: 98%; }
@media (prefers-reduced-motion: reduce) { .agenda-fill { transition: none; } }

.nav__wa { display: none; }
@media (min-width: 900px) { .nav__wa { display: inline-flex; } }
/* botões do cabeçalho com o MESMO tamanho */
.nav__actions .btn { padding: 13px 24px; font-size: 14.5px; line-height: 1; }

/* WhatsApp FAB (canto inferior direito) */
.wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 62px; height: 62px;
  border-radius: 50%; background: var(--wa); display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6); animation: waPulse 2.6s ease-in-out infinite; }
.wa-fab svg { width: 33px; height: 33px; fill: #fff; }
.wa-fab:hover { background: var(--wa-dark); transform: scale(1.06); }
.wa-fab__label { position: absolute; right: 74px; top: 50%; transform: translateY(-50%); white-space: nowrap;
  background: #0A1A33; color: #fff; font-size: 13px; font-weight: 600; padding: 9px 15px; border-radius: 100px;
  border: 1px solid var(--border-strong); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); box-shadow: var(--shadow-card); }
.wa-fab:hover .wa-fab__label { opacity: 1; }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 30px -6px rgba(37,211,102,0.55); } 50% { box-shadow: 0 12px 42px -2px rgba(37,211,102,0.9); } }
@media (max-width: 600px) { .wa-fab { width: 54px; height: 54px; } .wa-fab svg { width: 28px; height: 28px; } }

/* Trust bar — parceiro oficial + GMV + clientes */
.trust { border-block: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 44px; padding-block: 30px; }
.trust__seal { display: flex; align-items: center; gap: 13px; }
.trust__seal .seal { width: 48px; height: 48px; border-radius: 12px; background: var(--ml-yellow); display: grid; place-items: center; flex: none; }
.trust__seal .seal svg { width: 30px; height: 30px; fill: var(--ml-blue); }
.trust__seal b { display: block; font-family: var(--font-display); font-size: 15px; line-height: 1.2; }
.trust__seal span { font-size: 12.5px; color: var(--text-3); }
.trust__divider { width: 1px; height: 44px; background: var(--border); }
.trust__stat { text-align: center; }
.trust__stat .n { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--orange); line-height: 1; }
.trust__stat .l { font-size: 13px; color: var(--text-2); margin-top: 6px; }
@media (max-width: 780px) { .trust__divider { display: none; } }

/* Badge ML inline */
.ml-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--ml-yellow); color: var(--ml-blue);
  font-family: var(--font-display); font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 6px; }
.ml-badge svg { width: 13px; height: 13px; fill: var(--ml-blue); }
/* Logo Mercado Livre (substitui o badge amarelo) */
.ml-logo { display: inline-flex; align-items: center; }
.ml-logo img { height: 27px; width: auto; display: block; }
.ml-push--sm .ml-logo img { height: 22px; }

/* Elementos flutuantes no hero */
.hero__floats { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.ml-push { position: absolute; width: max-content; max-width: 360px; background: #fff; color: #0A1A33; border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 30px 64px -22px rgba(0,0,0,0.72); display: flex; gap: 13px; align-items: center;
  border: 1px solid rgba(255,255,255,0.7); }
.ml-push__title, .ml-push__prod { white-space: nowrap; }   /* sem quebra de linha */
.ml-push__thumb { width: 54px; height: 54px; border-radius: 11px; overflow: hidden; background: #f4f5f7; flex: none; border: 1px solid rgba(0,0,0,0.05); }
.ml-push__thumb img { width: 100%; height: 100%; object-fit: contain; }
.ml-push__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; gap: 8px; }
.ml-push__time { font-size: 10.5px; color: #9aa6b4; white-space: nowrap; }
.ml-push__title { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: #15A34A; display: flex; align-items: center; gap: 7px; }
.ml-push__title::before { content: ""; width: 17px; height: 17px; flex: none; border-radius: 50%; background-color: #15A34A;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center; }
.ml-push__prod { font-size: 12.5px; color: #4a5a70; margin-top: 3px; line-height: 1.35; }
.ml-push__prod b { color: #15A34A; font-weight: 800; }   /* valor da venda em verde */
.ml-push__meta { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #8a93a6; margin-top: 5px; white-space: nowrap; }
.ml-push__meta svg { width: 12px; height: 12px; flex: none; stroke: #F18D36; fill: none; stroke-width: 1.8; }
.ml-push__meta .reg { color: #4a5a70; font-weight: 600; }
.ml-push__meta .nic { color: #F18D36; font-weight: 700; }
.ml-push--sm .ml-push__meta { font-size: 10px; }
.ml-push--xl .ml-push__meta { font-size: 12px; }

/* Entrada lateral (fade da esquerda / da direita) — reaproveita o sistema .reveal */
.hero__floats .ml-push.reveal { transition-duration: .8s; }
.float-prod { position: absolute; width: 86px; height: 86px; border-radius: 16px; overflow: hidden; background: #fff;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.6); animation: floatY 6s ease-in-out infinite; }
.float-prod img { width: 100%; height: 100%; object-fit: contain; padding: 9px; }
/* Mobile/tablet: cards viram um carrossel horizontal proporcional (em vez de flutuar) */
@media (max-width: 1024px) {
  .hero__floats {
    position: static; inset: auto; z-index: 1;
    display: flex; gap: 13px; overflow-x: auto; overflow-y: hidden;
    padding: 22px 16px 20px; margin-top: 6px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero__floats::-webkit-scrollbar { display: none; }
  .hero__floats .ml-push {
    position: static !important; inset: auto !important;
    transform: none !important; opacity: 1 !important; zoom: 1 !important; margin: 0 !important;
    flex: 0 0 auto; scroll-snap-align: center; width: 84vw; max-width: 320px;
  }
  /* tamanho uniforme/proporcional no carrossel */
  .hero__floats .ml-push--xl, .hero__floats .ml-push--sm { padding: 13px 15px; gap: 12px; }
  .hero__floats .ml-push--xl .ml-push__thumb, .hero__floats .ml-push--sm .ml-push__thumb { width: 52px; height: 52px; }
  .hero__floats .ml-push--xl .ml-push__title, .hero__floats .ml-push--sm .ml-push__title { font-size: 14px; }
  .hero__floats .ml-push--xl .ml-push__prod, .hero__floats .ml-push--sm .ml-push__prod { font-size: 12px; }
  .hero__floats .ml-push--xl .ml-push__fire, .hero__floats .ml-push--sm .ml-push__fire { width: 34px; height: 34px; top: -12px; right: -12px; }
  /* v2: levar o carrossel para depois do conteúdo do hero */
  .hero--center { display: flex; flex-direction: column; }
  .hero--center .container { order: 1; }
  .hero--center .hero__floats { order: 2; }
}

/* Skin in the game */
.skin__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
@media (min-width: 760px) { .skin__grid { grid-template-columns: repeat(3, 1fr); } }
.skin-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 26px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.skin-card:hover { border-color: var(--border-orange); transform: translateY(-3px); }
.skin-card .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(241,141,54,0.1); border: 1px solid var(--border-orange); display: grid; place-items: center; margin-bottom: 16px; }
.skin-card .ico svg { width: 23px; height: 23px; stroke: var(--orange); fill: none; stroke-width: 1.7; }
.skin-card h3 { font-size: 17px; margin-bottom: 9px; }
.skin-card p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

@media (prefers-reduced-motion: reduce) {
  .wa-fab, .ml-push, .float-prod { animation: none !important; }
}

/* ============================================================
   30. Seção Parceiro Oficial — medalha grande + contadores animados
   ============================================================ */
.partner { border-block: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent); }
.partner__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 38px 56px; padding-block: 58px; text-align: center; }
@media (min-width: 940px) { .partner__inner { flex-wrap: nowrap; text-align: left; } }
.partner__text h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 12px; }
.partner__text h2 b { color: var(--orange); }
.partner__text > p { color: var(--text-2); max-width: 540px; margin: 0 0 26px; font-size: 16px; }
@media (max-width: 940px) { .partner__text > p { margin-inline: auto; } }
.counters { display: flex; flex-wrap: wrap; gap: 24px 46px; }
@media (max-width: 940px) { .counters { justify-content: center; } }
.counter .count { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--orange); line-height: 1; display: block; }
.counter .cl { font-size: 13px; color: var(--text-2); margin-top: 7px; }

/* Selo de Parceiro — medalhão circular moderno com anel girando */
.seal { position: relative; width: 300px; aspect-ratio: 1; flex: none; margin-inline: auto; animation: floatY 7s ease-in-out infinite; }
@media (max-width: 600px) { .seal { width: 250px; } }
.seal__glow { position: absolute; inset: -8%; border-radius: 50%; background: radial-gradient(circle, rgba(241,141,54,0.32), transparent 62%); filter: blur(14px); animation: cardGlow 4s ease-in-out infinite; }
.seal__ring { position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, #A9781F, #FFEFB8, #E8B84B, #FFE08A, #C9982F, #FFEFB8, #A9781F);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
  animation: spin 9s linear infinite; }
.seal__ring2 { position: absolute; inset: 5%; border-radius: 50%; border: 1px solid rgba(241,141,54,0.35); }
.seal__core { position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle at 50% 28%, #0B1E45, #050F2A);
  border: 1px solid var(--border-strong); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px;
  box-shadow: inset 0 0 36px rgba(241,141,54,0.12); }
.seal__ml { display: inline-flex; align-items: center; gap: 7px; background: var(--ml-yellow); color: var(--ml-blue);
  font-family: var(--font-display); font-weight: 800; font-size: 16px; padding: 6px 13px; border-radius: 8px; letter-spacing: -0.3px; box-shadow: 0 6px 16px -6px rgba(255,230,0,0.5); }
.seal__ml svg { width: 16px; height: 16px; fill: var(--ml-blue); }
.seal__divider { width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); }
.seal__title { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 2px; color: #fff; }
.seal__sub { font-size: 10px; letter-spacing: 3.5px; color: var(--orange); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal, .seal__ring, .seal__glow { animation: none; } }

/* Brasão Mercado Livre em imagem (PNG limpo, sem anéis/mandala atrás) */
.seal--clean { width: auto; aspect-ratio: auto; background: none; border: none; box-shadow: none; min-height: 0; padding: 0; display: grid; place-items: center; animation: none; }
.seal--clean::before, .seal--clean::after { content: none !important; }
.seal__img { position: relative; z-index: 2; width: 100%; max-width: 360px; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45)); animation: floatY 7s ease-in-out infinite; }
@media (max-width: 600px) { .seal__img { max-width: 280px; } }
@media (prefers-reduced-motion: reduce) { .seal__img { animation: none; } }

/* ===== Sobre Diego Ferri ===== */
.ferri__grid { display: grid; grid-template-columns: 1fr minmax(340px, 440px); gap: 48px; align-items: start; }
@media (max-width: 880px) { .ferri__grid { grid-template-columns: 1fr; gap: 30px; max-width: 560px; margin-inline: auto; } }
.ferri__side { display: flex; flex-direction: column; gap: 18px; }
.ferri__side .ferri__chips { justify-content: center; margin-top: 0; }
.ferri__photo { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-strong); box-shadow: 0 30px 60px -22px rgba(0,0,0,0.55); aspect-ratio: 4/5; background: #0a1628; }
.ferri__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ferri__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,15,42,0.6)); pointer-events: none; }
.ferri__tag { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; display: flex; align-items: center; gap: 11px; background: rgba(8,18,40,0.74); backdrop-filter: blur(8px); border: 1px solid var(--border-strong); border-radius: 12px; padding: 10px 13px; }
.ferri__tag img { width: 28px; height: 28px; flex: none; }
.ferri__tag b { font-family: var(--font-display); color: #fff; font-size: 14px; display: block; line-height: 1.2; }
.ferri__tag span { color: var(--orange); font-size: 11.5px; font-weight: 600; }
.ferri__role { color: var(--orange); font-weight: 600; font-size: 15.5px; margin-top: 4px; }
.ferri__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
@media (max-width: 600px) { .ferri__cards { grid-template-columns: 1fr; } }
.fcard { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 16px 18px; }
.fcard h4 { font-family: var(--font-display); font-size: 14.5px; color: var(--white); margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.fcard h4 svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; flex: none; }
.theme-light .fcard h4 { color: var(--text-1); }
.fcard ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.fcard li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--text-2); line-height: 1.5; }
.fcard li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.fcard li b { color: var(--text-1); font-weight: 700; }
.ferri__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ferri__chip { font-size: 12.5px; color: var(--text-1); border: 1px solid var(--border); background: var(--surface); border-radius: 999px; padding: 6px 13px; }
.ferri__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 760px) { .ferri__stats { grid-template-columns: repeat(2, 1fr); } }
.fstat { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 18px; text-align: center; }
.fstat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); color: var(--orange); line-height: 1.1; }
.fstat span { display: block; margin-top: 7px; font-size: 12.5px; color: var(--text-2); line-height: 1.4; }

/* Mini-bio Diego Ferri (página de confirmação / reunião de entrega) */
.ferri-mini { display: flex; gap: 30px; align-items: center; max-width: 880px; margin-inline: auto; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px; }
.ferri-mini__photo { width: 210px; height: 262px; border-radius: 16px; object-fit: cover; object-position: center top; flex: none; border: 1px solid var(--border-strong); }
.ferri-mini__body { flex: 1; min-width: 0; }
.ferri-mini__body h3 { font-family: var(--font-display); color: var(--white); font-size: 24px; margin: 6px 0 2px; }
.theme-light .ferri-mini__body h3 { color: var(--text-1); }
.ferri-mini__role { color: var(--orange); font-weight: 600; font-size: 13.5px; }
.ferri-mini__txt { color: var(--text-2); font-size: 14px; line-height: 1.6; margin-top: 10px; }
.ferri-mini__facts { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ferri-mini__facts li { position: relative; padding-left: 23px; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.ferri-mini__facts svg { position: absolute; left: 0; top: 3px; width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 2.4; }
.ferri-mini__pills { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ferri-mini__pills li { font-size: 12px; font-weight: 600; color: var(--text-1); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; }
@media (max-width: 600px) { .ferri-mini { flex-direction: column; text-align: center; align-items: center; } .ferri-mini__pills { justify-content: center; } }

/* Co-marca Metric Up × Mercado Livre (slot do logo oficial) */
.cobrand { display: inline-flex; align-items: center; gap: 14px; background: #fff; border-radius: 14px; padding: 11px 20px; margin: 2px 0 22px; box-shadow: 0 18px 40px -20px rgba(0,0,0,0.6); }
.cobrand__fox { height: 30px; width: auto; }
.cobrand__x { color: #aab3c2; font-size: 18px; font-weight: 300; }
.cobrand__ml { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ml-blue); letter-spacing: -0.3px; }
.cobrand__ml .mk { width: 36px; height: 24px; border-radius: 6px; background: var(--ml-yellow); display: grid; place-items: center; }
.cobrand__ml .mk svg { width: 18px; height: 18px; fill: var(--ml-blue); }
@media (max-width: 940px) { .cobrand { margin-inline: auto; } }

/* Lockup Mercado Livre (placeholder do logo oficial) */
.ml-logo { display: inline-flex; align-items: center; gap: 11px; }
.ml-logo__pill { display: inline-flex; align-items: center; gap: 7px; background: var(--ml-yellow); color: var(--ml-blue);
  font-family: var(--font-display); font-weight: 800; font-size: 14px; padding: 6px 13px; border-radius: 8px; letter-spacing: -0.2px; }
.ml-logo__pill svg { width: 16px; height: 16px; fill: var(--ml-blue); }
.ml-logo__cap { font-size: 11px; color: var(--text-3); letter-spacing: 0.4px; line-height: 1.3; }

/* ============================================================
   33. Pop-up de urgência (após 1 min de navegação)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.modal.show { opacity: 1; pointer-events: auto; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(2,7,18,0.74); backdrop-filter: blur(5px); }
.modal__card { position: relative; z-index: 1; width: 100%; max-width: 450px; text-align: center;
  background: linear-gradient(165deg, #0A1C40, #061434); border: 1px solid var(--border-orange); border-radius: var(--radius-lg);
  padding: 42px 34px 32px; box-shadow: 0 40px 90px -28px rgba(0,0,0,0.85);
  transform: translateY(22px) scale(.96); transition: transform .45s var(--ease); }
.modal.show .modal__card { transform: none; }
.modal__close { position: absolute; top: 12px; right: 15px; width: 34px; height: 34px; background: none; border: none;
  color: var(--text-3); font-size: 26px; line-height: 1; cursor: pointer; border-radius: 8px; }
.modal__close:hover { color: #fff; background: var(--surface-hover); }
.modal__ic { width: 66px; height: 66px; border-radius: 50%; background: rgba(241,141,54,0.12); border: 1px solid var(--border-orange);
  display: grid; place-items: center; margin: 0 auto 18px; animation: cardGlow 2.6s ease-in-out infinite; }
.modal__ic svg { width: 32px; height: 32px; stroke: var(--orange); fill: none; stroke-width: 1.7; }
.modal__tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.modal__tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 9px var(--orange); animation: blink 1.2s ease-in-out infinite; }
.modal__card h3 { font-size: clamp(21px, 4.6vw, 26px); margin-bottom: 12px; line-height: 1.15; }
.modal__card h3 b { color: var(--orange); }
.modal__card > p { color: var(--text-2); font-size: 15.5px; margin-bottom: 24px; }
.modal__card .btn { width: 100%; }
.modal__micro { font-size: 12px; color: var(--text-3); margin-top: 14px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@media (prefers-reduced-motion: reduce) { .modal__ic, .modal__tag::before { animation: none; } .modal__card { transition: none; } }

/* ============================================================
   34. Prova social — avaliações de clientes
   ============================================================ */
.reviews { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 26px;
  display: flex; flex-direction: column; gap: 15px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.review:hover { border-color: var(--border-orange); transform: translateY(-3px); }
.review__stars { display: flex; gap: 3px; }
.review__stars svg { width: 16px; height: 16px; fill: #FFC53D; }
.review blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-1); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__av { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #1A0A00; background: linear-gradient(140deg, #FFC862, var(--orange)); }
.review figcaption b { display: block; font-size: 14px; color: var(--text-1); }
.review figcaption span { font-size: 12.5px; color: var(--text-3); }

/* ============================================================
   35. Fluxograma de metodologia (motion graphics)
   ============================================================ */
.flowchart { position: relative; margin-top: 52px; padding-top: 10px; }
.fc-track { position: absolute; left: 7%; right: 7%; top: 45px; height: 3px; border-radius: 3px; overflow: hidden;
  background: linear-gradient(90deg, var(--orange-700), var(--orange) 50%, var(--accent2)); }
.fc-track::before { content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent); animation: fcFlow 3.6s linear infinite; }
@keyframes fcFlow { 0% { transform: translateX(-130%); } 100% { transform: translateX(520%); } }
.fc-nodes { position: relative; display: flex; justify-content: space-between; gap: 6px; }
.fc-node { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 13px; }
.fc-ic { width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; position: relative; z-index: 1;
  border: 1px solid var(--border-orange); background: radial-gradient(circle at 50% 32%, rgba(241,141,54,0.22), var(--navy-700));
  box-shadow: 0 0 0 7px var(--navy), 0 10px 26px -10px rgba(241,141,54,0.5); animation: fcGlow 3s ease-in-out infinite; }
.fc-ic svg { width: 30px; height: 30px; stroke: var(--orange); fill: none; stroke-width: 1.7; }
.fc-node b { font-family: var(--font-display); font-size: 13.5px; text-align: center; }
.fc-node--goal .fc-ic { border-color: var(--orange); background: radial-gradient(circle at 50% 32%, rgba(241,141,54,0.55), #7D3307);
  box-shadow: 0 0 0 7px var(--navy), 0 0 28px -2px rgba(241,141,54,0.85); }
.fc-node--goal b { color: var(--orange); }
.fc-node:nth-child(2) .fc-ic { animation-delay: -0.4s; }
.fc-node:nth-child(3) .fc-ic { animation-delay: -0.8s; }
.fc-node:nth-child(4) .fc-ic { animation-delay: -1.2s; }
.fc-node:nth-child(5) .fc-ic { animation-delay: -1.6s; }
.fc-node:nth-child(6) .fc-ic { animation-delay: -2s; }
.fc-node:nth-child(7) .fc-ic { animation-delay: -2.4s; }
@keyframes fcGlow { 0%,100% { box-shadow: 0 0 0 7px var(--navy), 0 10px 24px -12px rgba(241,141,54,0.4); } 50% { box-shadow: 0 0 0 7px var(--navy), 0 12px 30px -8px rgba(241,141,54,0.75); } }
@media (max-width: 760px) {
  .fc-track { display: none; }
  .fc-nodes { flex-wrap: wrap; gap: 26px 0; }
  .fc-node { flex: 0 0 33.333%; }
  .fc-ic { width: 60px; height: 60px; box-shadow: 0 8px 20px -10px rgba(241,141,54,0.5); }
}
@media (prefers-reduced-motion: reduce) { .fc-track::before, .fc-ic { animation: none; } }

/* ===== Metodologia 360º — orbital (motion graphics) ===== */
.orbit { position: relative; width: min(470px, 88vw); aspect-ratio: 1; margin: 58px auto 0; }
.orbit__track { position: absolute; inset: 12%; border-radius: 50%; border: 1.5px dashed rgba(241,141,54,0.22); }
.orbit__sweep { position: absolute; inset: 10%; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(241,141,54,0.3) 80%, #FFE08A 93%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 24px), #000 calc(100% - 23px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 24px), #000 calc(100% - 23px));
  animation: spin 8s linear infinite; }
.orbit__sat { position: absolute; inset: 12%; animation: spin 6s linear infinite; }
.orbit__sat::after { content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: #FFE08A; box-shadow: 0 0 18px 5px rgba(241,141,54,0.85); }
.orbit__core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 36%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #0B1E45, #050F2A); border: 1px solid var(--border-orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
  box-shadow: inset 0 0 34px rgba(241,141,54,0.18), 0 0 46px -12px rgba(241,141,54,0.6); }
.orbit__core b { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 6.5vw, 44px); color: var(--orange); line-height: 1; }
.orbit__core span { font-size: 10px; letter-spacing: 4px; color: var(--text-3); margin-top: 5px; }
.orbit__node { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; width: 86px; }
.orbit__node .nic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(160deg, #112A55, #081634); border: 1px solid var(--border-orange);
  box-shadow: 0 0 0 6px var(--navy), 0 8px 22px -8px rgba(241,141,54,0.5); animation: fcGlow 3s ease-in-out infinite; }
.orbit__node .nic svg { width: 25px; height: 25px; stroke: var(--orange); fill: none; stroke-width: 1.7; }
.orbit__node b { font-family: var(--font-display); font-size: 12px; white-space: nowrap; }
.orbit__node:nth-child(6) .nic { animation-delay: -.4s; } .orbit__node:nth-child(7) .nic { animation-delay: -.8s; }
.orbit__node:nth-child(8) .nic { animation-delay: -1.2s; } .orbit__node:nth-child(9) .nic { animation-delay: -1.6s; }
.orbit__node:nth-child(10) .nic { animation-delay: -2s; } .orbit__node:nth-child(11) .nic { animation-delay: -2.4s; }
.orbit__node--goal .nic { border-color: var(--orange); background: linear-gradient(160deg, #F49A41, #9C4310);
  box-shadow: 0 0 0 6px var(--navy), 0 0 26px -2px rgba(241,141,54,0.9); }
.orbit__node--goal .nic svg { stroke: #1A0A00; }
.orbit__node--goal b { color: var(--orange); }
@media (max-width: 600px) { .orbit__node { width: 62px; } .orbit__node .nic { width: 44px; height: 44px; } .orbit__node .nic svg { width: 20px; height: 20px; } .orbit__node b { font-size: 10px; } }
@media (prefers-reduced-motion: reduce) { .orbit__sweep, .orbit__sat, .orbit__node .nic { animation: none; } }

/* Medalha */
.medal { position: relative; width: 200px; height: 220px; flex: none; margin-inline: auto; }
.medal__burst { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 196px; height: 196px; border-radius: 50%; z-index: 0;
  background: repeating-conic-gradient(var(--ml-yellow) 0 5deg, transparent 5deg 11deg); opacity: 0.45;
  animation: medalSpin 22s linear infinite; }
.medal__ribbon { position: absolute; bottom: 0; width: 50px; height: 104px; z-index: 0;
  background: linear-gradient(180deg, var(--orange), var(--orange-700));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%); }
.medal__ribbon--l { left: 64px; transform: rotate(10deg); }
.medal__ribbon--r { right: 64px; transform: rotate(-10deg); }
.medal__disc { position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 178px; height: 178px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle at 38% 30%, #FFF4AE, #FFE600 46%, #DCAF00 100%);
  display: grid; place-items: center; box-shadow: 0 20px 44px -14px rgba(0,0,0,0.6), inset 0 0 0 6px rgba(255,255,255,0.28); }
.medal__core { width: 128px; height: 128px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; gap: 3px;
  border: 2px solid rgba(255,255,255,0.16); text-align: center; padding: 6px; }
.medal__core svg { width: 30px; height: 30px; fill: var(--ml-yellow); }
.medal__core b { font-family: var(--font-display); font-size: 12px; letter-spacing: 1.5px; color: #fff; line-height: 1.15; }
.medal__core small { font-size: 8.5px; letter-spacing: 1.5px; color: var(--ml-yellow); text-transform: uppercase; }
@keyframes medalSpin { to { transform: translateX(-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .medal__burst { animation: none; } }

/* Medalha por imagem (Gemini) + texto no centro do selo */
.medal-img { position: relative; width: 320px; flex: none; margin-inline: auto; animation: floatY 7s ease-in-out infinite; }
@media (max-width: 600px) { .medal-img { width: 250px; } }
.medal-img .medal-svg { width: 100%; height: auto; display: block;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5)) drop-shadow(0 0 22px rgba(241,141,54,0.3)); }
.medal-img__text { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 3px; text-align: center; pointer-events: none; }
.medal-img__text svg { width: 30px; height: 30px; fill: var(--ml-yellow); margin-bottom: 3px; }
.medal-img__text b { font-family: var(--font-display); font-size: 19px; letter-spacing: 1.5px; color: #fff; line-height: 1.05; }
.medal-img__text small { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ml-yellow); }
@media (prefers-reduced-motion: reduce) { .medal-img { animation: none; } }

/* ============================================================
   32. Push automático de prova social (rodapé central)
   ============================================================ */
.sale-toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 75;
  transform: translateX(-50%) translateY(34px);
  display: flex; align-items: center; gap: 13px;
  background: #fff; color: #0A1A33; border-radius: 14px; padding: 13px 20px;
  box-shadow: 0 26px 60px -18px rgba(0,0,0,0.6); border: 1px solid rgba(0,0,0,0.06);
  opacity: 0; pointer-events: none; max-width: calc(100vw - 32px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.sale-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.sale-toast__ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(21,163,74,0.12); display: grid; place-items: center; flex: none; }
.sale-toast__ic svg { width: 23px; height: 23px; stroke: #15A34A; fill: none; stroke-width: 2.4; }
.sale-toast__body { display: flex; flex-direction: column; line-height: 1.25; }
.sale-toast__body .sale-toast__title { font-family: var(--font-display); font-size: 14px; color: #15A34A; display: inline-flex; align-items: center; gap: 6px; }
.sale-toast__body .sale-toast__title .star { width: 15px; height: 15px; fill: #FFC53D; }
.sale-toast__who { font-size: 12.5px; color: #56657a; margin-top: 1px; }
.sale-toast__who b { color: #0A1A33; font-weight: 700; }
.sale-toast__who .city { color: var(--orange); font-weight: 800; }
.sale-toast__nic { margin-top: 4px; align-self: flex-start; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--orange); background: rgba(241,141,54,0.1); border: 1px solid rgba(241,141,54,0.32); border-radius: 999px; padding: 2px 9px; }
.sale-toast__nic svg { width: 11px; height: 11px; stroke: var(--orange); fill: none; stroke-width: 1.9; }
@media (max-width: 600px) { .sale-toast { bottom: 92px; padding: 11px 15px; gap: 10px; } .sale-toast__body b { font-size: 13px; } }
@media (prefers-reduced-motion: reduce) { .sale-toast { transition: opacity .4s; } .sale-toast.show { transform: translateX(-50%); } }

/* ============================================================
   31. Cards de venda — glow flamejante + selo de fogo + tamanho destaque
   ============================================================ */
.ml-push { animation: cardGlow 2.6s ease-in-out infinite, floatY 6s ease-in-out infinite; }
/* fases diferentes do flutuar por card (glow, float) */
.hero__floats .ml-push:nth-child(1) { animation-delay: 0s, -0.4s; }
.hero__floats .ml-push:nth-child(2) { animation-delay: -0.6s, -2.1s; }
.hero__floats .ml-push:nth-child(3) { animation-delay: -1.2s, -3.4s; }
.hero__floats .ml-push:nth-child(4) { animation-delay: -0.3s, -4.6s; }
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 30px 64px -22px rgba(0,0,0,0.72), 0 0 0 0 rgba(241,141,54,0); }
  50%      { box-shadow: 0 30px 64px -22px rgba(0,0,0,0.72), 0 0 30px 2px rgba(241,141,54,0.6); }
}
/* selo de fogo na quina (produto "quente"/vendendo demais) */
.ml-push__fire { position: absolute; top: -13px; right: -13px; width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, #FFD24A, #F18D36 52%, #E0380F 100%);
  display: grid; place-items: center; box-shadow: 0 0 16px 2px rgba(240,90,20,0.7);
  animation: fireFlicker 1.5s ease-in-out infinite; }
.ml-push__fire svg { width: 19px; height: 19px; fill: #fff; }
@keyframes fireFlicker {
  0%, 100% { box-shadow: 0 0 13px 1px rgba(240,90,20,0.6); transform: scale(1) rotate(-2deg); }
  50%      { box-shadow: 0 0 26px 5px rgba(240,90,20,0.95); transform: scale(1.1) rotate(2deg); }
}
/* card pequeno */
.ml-push--sm { padding: 10px 13px; gap: 10px; }
.ml-push--sm .ml-push__thumb { width: 42px; height: 42px; border-radius: 9px; }
.ml-push--sm .ml-push__title { font-size: 12.5px; }
.ml-push--sm .ml-push__prod { font-size: 11px; }
.ml-push--sm .ml-push__top { margin-bottom: 3px; }
.ml-push--sm .ml-badge { font-size: 10px; padding: 2px 7px; }
.ml-push--sm .ml-push__fire { width: 30px; height: 30px; top: -11px; right: -11px; }
.ml-push--sm .ml-push__fire svg { width: 16px; height: 16px; }
/* card em destaque (maior) */
.ml-push--xl { padding: 18px 22px; gap: 16px; }
.ml-push--xl .ml-push__thumb { width: 66px; height: 66px; }
.ml-push--xl .ml-push__title { font-size: 17px; }
.ml-push--xl .ml-push__prod { font-size: 14px; }
.ml-push--xl .ml-push__fire { width: 42px; height: 42px; top: -15px; right: -15px; }
.ml-push--xl .ml-push__fire svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) {
  .ml-push, .ml-push__fire { animation: none !important; }
}

/* ============================================================
   37. Popup de captura de lead — pré-WhatsApp (mesma identidade do .modal)
   ============================================================ */
.mu-lead { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.mu-lead.is-open { display: flex; animation: muFade .25s ease; }
@keyframes muFade { from { opacity: 0; } to { opacity: 1; } }
.mu-lead__bd { position: absolute; inset: 0; background: rgba(2,7,18,0.74); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.mu-lead__card { position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: linear-gradient(165deg, #0A1C40, #061434); border: 1px solid var(--border-orange); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: 0 40px 90px -28px rgba(0,0,0,0.85); }
.mu-lead__x { position: absolute; top: 12px; right: 15px; width: 34px; height: 34px; background: none; border: none;
  color: var(--text-3); font-size: 26px; line-height: 1; cursor: pointer; border-radius: 8px; transition: color .2s, background .2s; }
.mu-lead__x:hover { color: #fff; background: var(--surface-hover); }
.mu-lead__head { text-align: center; margin-bottom: 18px; padding: 0 8px; }
.mu-lead__eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #25d366; margin-bottom: 10px; }
.mu-lead__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 9px #25d366; animation: blink 1.2s ease-in-out infinite; }
.mu-lead__head h3 { font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 23px); font-weight: 700; color: #fff; line-height: 1.2; margin: 0 0 8px; }
.mu-lead__head h3 b { color: var(--orange); }
.mu-lead__head p { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.5; }
.mu-lead__head p b { color: #25d366; }
.mu-lead__prog { margin-bottom: 20px; }
.mu-lead__prog-bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.mu-lead__prog-fill { height: 100%; width: 33.33%; border-radius: 999px; background: linear-gradient(90deg, #1aa84f, #25d366); transition: width .35s var(--ease); }
.mu-lead__prog-labels { display: flex; justify-content: space-between; margin-top: 9px; font-size: 11px; color: var(--text-3); font-weight: 600; }
.mu-lead__prog-labels span { display: flex; align-items: center; gap: 5px; transition: color .2s; }
.mu-lead__prog-labels span b { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.1); font-size: 10px; transition: .2s; }
.mu-lead__prog-labels span.on { color: #fff; }
.mu-lead__prog-labels span.on b { background: #25d366; color: #04210f; }
.mu-lead__step { display: none; flex-direction: column; gap: 13px; }
.mu-lead__step.is-active { display: flex; animation: muStep .3s ease; }
@keyframes muStep { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.mu-lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mu-lead__field { display: flex; flex-direction: column; gap: 6px; }
.mu-lead__field > label { font-size: 12px; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: .3px; }
.mu-lead__field input, .mu-lead__field select, .mu-lead__field textarea { width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 11px 13px; color: #fff; font-size: 14px; font-family: inherit; transition: border-color .2s, background .2s; }
.mu-lead__field textarea { resize: vertical; min-height: 54px; }
.mu-lead__field input:focus, .mu-lead__field select:focus, .mu-lead__field textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.06); }
.mu-lead__field select option { background: #0A1C40; color: #fff; }
.mu-lead__field input::placeholder, .mu-lead__field textarea::placeholder { color: rgba(255,255,255,0.35); }
.mu-lead__field.is-invalid input, .mu-lead__field.is-invalid select, .mu-lead__field.is-invalid textarea { border-color: #ef5b5b; background: rgba(239,91,91,0.06); }
.mu-lead__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; }
.mu-lead__checks label { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-2); text-transform: none; letter-spacing: 0; font-weight: 400; cursor: pointer; line-height: 1.3; }
.mu-lead__checks input { width: 15px; height: 15px; margin-top: 1px; accent-color: var(--orange); flex: none; }
.mu-lead__hint { font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-3); }
.mu-lead__nav { display: flex; gap: 10px; margin-top: 6px; }
.mu-lead__nav .mu-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: none; border-radius: var(--radius-sm);
  padding: 13px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.mu-btn--primary { background: #25d366; color: #04210f; box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.mu-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37,211,102,0.42); }
.mu-btn--ghost { flex: 0 0 auto; background: var(--surface-hover); color: #fff; padding-left: 16px; padding-right: 16px; }
.mu-btn--ghost:hover { background: rgba(255,255,255,0.12); }
.mu-btn--wa { background: #25d366; color: #04210f; }
.mu-btn--wa:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.mu-lead__err { display: none; margin: 12px 0 0; font-size: 12.5px; color: #ef8a8a; text-align: center; }
.mu-lead__secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 14px 0 0; font-size: 11px; color: var(--text-3); text-align: center; }
@media (max-width: 480px) { .mu-lead__row, .mu-lead__checks { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .mu-lead__eyebrow::before { animation: none; } .mu-lead.is-open, .mu-lead__step.is-active { animation: none; } }
