/* =========================================================
   AGÊNCIA 12V — MARKETING PARA LOJAS DE BATERIA
   Tema: energia / elétrico / carga / 12 volts
   Paleta: near-black + volt (verde-limão elétrico) + ciano
   ========================================================= */

:root {
  /* Base escura */
  --bg:        #07090F;
  --bg-2:      #0B0E16;
  --bg-3:      #11141F;
  --surface:   #141826;
  --surface-2: #1A1F30;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(200,255,61,.18);

  /* Energia */
  --volt:      #C8FF3D;   /* carga / acento principal */
  --volt-2:    #9EE817;
  --volt-soft: #e8ffb0;
  --electric:  #18E0FF;   /* elétrico / tech */
  --electric-2:#2BA8FF;
  --spark:     #FF6A2C;   /* urgência / alerta */
  --spark-2:   #FF3D6E;

  /* Neutros */
  --white:   #ffffff;
  --ink-100: #eef1f7;
  --ink-200: #c7cedb;
  --ink-300: #9aa3b5;
  --ink-400: #6b7384;
  --ink-500: #4a5161;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm:  0 6px 20px rgba(0,0,0,.35);
  --shadow-md:  0 18px 50px rgba(0,0,0,.45);
  --shadow-lg:  0 30px 80px rgba(0,0,0,.55);
  --glow-volt:  0 0 0 1px rgba(200,255,61,.35), 0 14px 40px rgba(200,255,61,.20);
  --glow-elec:  0 0 0 1px rgba(24,224,255,.35), 0 14px 40px rgba(24,224,255,.18);

  --grad-charge: linear-gradient(120deg, var(--volt), var(--electric));
  --grad-charge-soft: linear-gradient(120deg, rgba(200,255,61,.14), rgba(24,224,255,.12));

  --container: 1200px;
  --container-wide: 1320px;
  --transition: .28s cubic-bezier(.4,0,.2,1);

  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-sans);
  color: var(--ink-200);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--volt); color: var(--bg); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #232838; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2e3548; }

/* ===== UTILITÁRIOS ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: var(--container-wide); }

.grad-text {
  background: var(--grad-charge);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.volt { color: var(--volt); }
.elec { color: var(--electric); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--grad-charge);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4.4vw, 52px); }
h3 { font-size: 21px; letter-spacing: -.01em; }
h4 { font-size: 16px; }
p { color: var(--ink-300); }
strong { color: var(--ink-100); }

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-200); line-height: 1.6; }

/* badge / pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  background: rgba(200,255,61,.08);
  border: 1px solid var(--line-2);
  color: var(--volt-soft);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 0 rgba(200,255,61,.6);
  animation: ping 2s infinite;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
}
.btn svg { flex-shrink: 0; }
.btn--primary {
  background: var(--grad-charge);
  color: #04210a;
  box-shadow: 0 12px 30px rgba(200,255,61,.28);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(200,255,61,.42); }
.btn--ghost {
  background: rgba(255,255,255,.03);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
}
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); background: rgba(200,255,61,.06); }
.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,.32);
}
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(37,211,102,.45); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--xl { padding: 21px 42px; font-size: 18px; gap: 13px; }
.btn--block { width: 100%; white-space: normal; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,15,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.header.is-scrolled {
  background: rgba(7,9,15,.92);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

/* Marca / logo */
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px rgba(200,255,61,.35));
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--white);
}
.brand__text em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--volt);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; gap: 26px; align-items: center; }
.nav__list a {
  color: var(--ink-200);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
}
.nav__list a:hover { color: var(--volt); }
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--grad-charge);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__list a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; font-size: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 6px;
  z-index: 110;
}
.nav__toggle span {
  display: block; height: 2px;
  background: var(--volt);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav.is-open ~ .nav__toggle span:nth-child(1),
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== FUNDOS DECORATIVOS ===== */
.bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.glow--volt { background: rgba(200,255,61,.30); }
.glow--elec { background: rgba(24,224,255,.26); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(24,224,255,.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(200,255,61,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero__title { margin: 20px 0 22px; }
.hero__lead { max-width: 560px; margin-bottom: 16px; }
.hero__bullets {
  display: flex; flex-direction: column; gap: 11px;
  margin: 22px 0 34px;
}
.hero__bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-200); font-size: 15.5px; font-weight: 500;
}
.hero__bullets li svg { width: 22px; height: 22px; color: var(--volt); flex-shrink: 0; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__note { font-size: 13.5px; color: var(--ink-400); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: var(--volt); }

/* Visual do hero — bateria carregando */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 440px;
}

/* Cartão flutuante de stat no hero */
.float-card {
  position: absolute;
  background: rgba(20,24,38,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.float-card__ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--grad-charge-soft);
  color: var(--volt);
}
.float-card__ic svg { width: 22px; height: 22px; }
.float-card strong { display: block; font-family: var(--font-display); font-size: 19px; color: var(--white); line-height: 1; }
.float-card span { font-size: 12px; color: var(--ink-300); }
.float-card--a { top: 8%; left: -4%; animation-delay: 0s; }
.float-card--b { bottom: 12%; right: -6%; animation-delay: 1.2s; }
.float-card--c { bottom: 0%; left: 6%; animation-delay: 2.1s; }

/* ===== MARQUEE / FAIXA ===== */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--ink-400);
  white-space: nowrap;
}
.marquee__track span::after {
  content: "⚡"; color: var(--volt); font-size: 13px;
}

/* ===== STAT BAR ===== */
.stats {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 0;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -12px; top: 14%; height: 72%;
  width: 1px; background: var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-charge);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 14px; color: var(--ink-300); margin-top: 10px; }
.stat__src { font-size: 11px; color: var(--ink-500); margin-top: 4px; }

/* ===== SEÇÕES ===== */
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 84px 0; }
.section--alt { background: var(--bg-2); }
.section--surface { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.section__head { max-width: 760px; margin-bottom: 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { margin-bottom: 18px; }
.section__head p { font-size: 18px; }

/* ===== CARDS DE DOR ===== */
.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.pain::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--spark), var(--spark-2));
  opacity: .8;
}
.pain:hover { transform: translateY(-5px); border-color: rgba(255,106,44,.4); }
.pain__ic {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(255,106,44,.12);
  color: var(--spark);
}
.pain__ic svg { width: 26px; height: 26px; }
.pain h3 { margin-bottom: 9px; }
.pain p { font-size: 15px; }

/* ===== COMPARATIVO (genérica vs 12V) ===== */
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vs-card {
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  border: 1px solid var(--line);
  position: relative;
}
.vs-card--bad { background: var(--surface); }
.vs-card--good {
  background:
    radial-gradient(ellipse at top right, rgba(200,255,61,.10), transparent 60%),
    var(--surface-2);
  border-color: var(--line-2);
  box-shadow: var(--glow-volt);
}
.vs-card__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.vs-card--bad .vs-card__tag { background: rgba(255,61,110,.1); color: var(--spark-2); }
.vs-card--good .vs-card__tag { background: rgba(200,255,61,.12); color: var(--volt); }
.vs-card h3 { font-size: 24px; margin-bottom: 22px; }
.vs-list { display: flex; flex-direction: column; gap: 15px; }
.vs-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.vs-list li svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 1px; }
.vs-card--bad .vs-list svg { color: var(--spark-2); }
.vs-card--good .vs-list svg { color: var(--volt); }
.vs-card--good .vs-list li strong { color: var(--white); }

/* ===== A INVERSÃO 12V ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-charge);
}
.pillar:hover { transform: translateY(-5px); border-color: var(--volt); }
.pillar__ic {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--grad-charge-soft); color: var(--volt);
}
.pillar__ic svg { width: 26px; height: 26px; }
.pillar__tag {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--electric);
  margin-bottom: 6px;
}
.pillar h3 { margin-bottom: 9px; }
.pillar p { font-size: 15px; }

.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dual__card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex; gap: 18px; align-items: center;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition);
}
.dual__card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.dual__ic {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-charge-soft); color: var(--volt);
}
.dual__ic svg { width: 28px; height: 28px; }
.dual__card h4 { color: var(--white); margin-bottom: 4px; font-size: 17px; }
.dual__card p { font-size: 14.5px; }

/* ===== TIMELINE / MÉTODO (cronologia) ===== */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 31px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--volt), var(--electric), rgba(24,224,255,.1));
}
.tl-item {
  position: relative;
  padding: 0 0 44px 86px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item__node {
  position: absolute;
  left: 0; top: 0;
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1.5px solid var(--line-2);
  color: var(--volt);
  box-shadow: 0 0 0 6px var(--bg), 0 10px 30px rgba(200,255,61,.15);
  z-index: 2;
}
.tl-item__node svg { width: 30px; height: 30px; }
.tl-item__step {
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--electric); margin-bottom: 7px;
}
.tl-item h3 { font-size: 23px; margin-bottom: 10px; }
.tl-item p { font-size: 15.5px; max-width: 640px; }
.tl-item__meta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; font-size: 13px; color: var(--volt-soft);
  background: rgba(200,255,61,.07); border: 1px solid var(--line-2);
  padding: 6px 13px; border-radius: 999px;
}

/* ===== FUNIL ===== */
.funnel-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.funnel { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.funnel__row {
  width: 100%;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; color: var(--bg);
  background: var(--grad-charge);
  position: relative;
  transition: transform var(--transition);
}
.funnel__row:hover { transform: scale(1.02); }
.funnel__row span:first-child { font-family: var(--font-display); }
.funnel__row .funnel__val { font-family: var(--font-display); font-size: 19px; }
.funnel__row:nth-child(1) { width: 100%; }
.funnel__row:nth-child(2) { width: 86%; opacity: .94; }
.funnel__row:nth-child(3) { width: 70%; opacity: .88; }
.funnel__row:nth-child(4) { width: 54%; opacity: .82; }
.funnel__row:nth-child(5) {
  width: 40%; opacity: 1;
  background: linear-gradient(120deg, var(--volt), var(--volt-2));
  box-shadow: 0 12px 34px rgba(200,255,61,.4);
}
.funnel__feats { display: flex; flex-direction: column; gap: 18px; }
.funnel__feat { display: flex; gap: 15px; }
.funnel__feat__ic {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-charge-soft); color: var(--electric);
}
.funnel__feat__ic svg { width: 24px; height: 24px; }
.funnel__feat h4 { color: var(--white); margin-bottom: 4px; font-size: 17px; }
.funnel__feat p { font-size: 14.5px; }

/* ===== RESULTADOS / DADOS ===== */
.results-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.chart-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.chart-card__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.chart-card__head h4 { font-size: 17px; color: var(--white); }
.chart-card__head span { font-size: 13px; color: var(--ink-400); }
.chart-card__delta {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--volt); display: inline-flex; align-items: center; gap: 5px;
  background: rgba(200,255,61,.1); padding: 5px 11px; border-radius: 8px;
}
.chart {
  display: flex; align-items: flex-end; gap: 12px;
  height: 200px; padding-top: 10px;
}
.chart__bar {
  flex: 1; border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--surface-2), #20283a);
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  transition: height 1s cubic-bezier(.4,0,.2,1);
}
.chart__bar--on { background: var(--grad-charge); box-shadow: 0 0 26px rgba(200,255,61,.35); }
.chart__bar small {
  position: absolute; bottom: -26px; font-size: 12px; color: var(--ink-400);
}
.chart__bar b {
  position: absolute; top: -24px; font-family: var(--font-display);
  font-size: 13px; color: var(--white); opacity: 0; transition: opacity .5s ease .6s;
}
.is-visible .chart__bar b { opacity: 1; }

.results-list { display: flex; flex-direction: column; gap: 22px; }
.result-item { display: flex; gap: 16px; align-items: flex-start; }
.result-item__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; line-height: 1; min-width: 96px;
  background: var(--grad-charge); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.result-item p { font-size: 15px; }
.result-item p strong { color: var(--white); }

/* ===== CASES ===== */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.case:hover { transform: translateY(-5px); border-color: var(--line-2); }
.case__badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--electric); margin-bottom: 16px;
}
.case__big {
  font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1;
  background: var(--grad-charge); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.case p { font-size: 14.5px; margin-bottom: 18px; }
.case__foot { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.case__logo {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface-2); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--volt); font-size: 15px;
}
.case__foot small { display: block; color: var(--ink-400); font-size: 12px; }
.case__foot strong { font-size: 14px; color: var(--ink-100); }
.case--placeholder {
  border-style: dashed; border-color: var(--line-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-400); min-height: 240px;
}
.case--placeholder svg { width: 34px; height: 34px; color: var(--volt); margin-bottom: 14px; }

/* ===== DEPOIMENTOS ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.quote:hover { border-color: var(--line-2); transform: translateY(-4px); }
.quote__stars { display: flex; gap: 3px; color: var(--volt); margin-bottom: 16px; }
.quote__stars svg { width: 28px; height: 28px; }
.quote blockquote { font-size: 15.5px; color: var(--ink-100); line-height: 1.6; margin-bottom: 20px; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote__av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-charge); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--bg);
}
.quote figcaption strong { display: block; font-size: 14.5px; color: var(--white); }
.quote figcaption span { font-size: 12.5px; color: var(--ink-400); }

/* ===== OFERTA ===== */
.offer {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top left, rgba(200,255,61,.10), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(24,224,255,.10), transparent 55%),
    var(--surface);
  border: 1px solid var(--line-2);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.offer__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.offer__grid--authority { grid-template-columns: 1.2fr .8fr; }
/* permite que colunas/filhos encolham e o texto quebre em vez de estourar */
.offer__content, .offer__box, .vs-card, .funnel, .results-list, .chart-card, .float-card { min-width: 0; }
.offer h2 { margin-bottom: 18px; }
.offer__list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.offer__list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-100); }
.offer__list li svg { width: 23px; height: 23px; color: var(--volt); flex-shrink: 0; margin-top: 1px; }
.offer__box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.offer__box .pill { margin-bottom: 18px; }
.offer__price { font-family: var(--font-display); font-size: 19px; color: var(--ink-200); margin-bottom: 4px; }
.offer__price b { color: var(--white); }
.offer__free {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 40px);
  background: var(--grad-charge); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1; margin-bottom: 8px;
}
.offer__box p { font-size: 13.5px; margin-bottom: 22px; }
.offer__guarantee {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  margin-top: 18px; font-size: 13px; color: var(--ink-300);
}
.offer__guarantee svg { width: 28px; height: 28px; color: var(--volt); }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item[open] { border-color: var(--line-2); }
.faq__q {
  list-style: none; cursor: pointer;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--white);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .faq__ic {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(200,255,61,.1); color: var(--volt);
  display: grid; place-items: center; transition: transform var(--transition);
  font-size: 20px; line-height: 1;
}
.faq__item[open] .faq__ic { transform: rotate(45deg); }
.faq__a { padding: 0 26px 24px; color: var(--ink-300); font-size: 15px; }

/* ===== CTA FINAL ===== */
.final {
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(200,255,61,.14), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden;
}
.final__inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.final h2 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 20px; }
.final p { font-size: 19px; margin-bottom: 36px; }
.final__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final__trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.final__trust li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-300); }
.final__trust svg { width: 19px; height: 19px; color: var(--volt); }

/* ===== FOOTER ===== */
.footer { background: #050609; border-top: 1px solid var(--line); padding-top: 70px; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px;
}
.footer__brand p { font-size: 14px; max-width: 320px; margin-top: 18px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-200);
  transition: all var(--transition);
}
.footer__social a:hover { color: var(--volt); border-color: var(--line-2); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer h4 { color: var(--white); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer ul a:hover { color: var(--volt); }
.footer__contact li { display: flex; align-items: center; gap: 10px; color: var(--ink-300); font-size: 14px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--volt); flex-shrink: 0; }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom small { font-size: 12.5px; color: var(--ink-500); }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px; background: #25d366; color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 14px 32px rgba(37,211,102,.45); z-index: 90;
  animation: pulse-wa 2.4s infinite; transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 31px; height: 31px; }

/* ===== HERO: CARD DE BUSCA "#1 NO GOOGLE" ===== */
.searchcard {
  width: min(100%, 380px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  position: relative;
  z-index: 3;
}
.searchcard__bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 16px; margin-bottom: 8px;
  font-size: 14px; color: var(--ink-100);
}
.searchcard__bar svg { width: 17px; height: 17px; color: var(--ink-400); flex-shrink: 0; }
.searchcard__cursor { display:inline-block; width:2px; height:15px; background: var(--volt); margin-left:1px; animation: blink 1.1s steps(1) infinite; }
.searchcard__hint { font-size: 11px; color: var(--ink-500); text-align: center; margin: 4px 0 12px; letter-spacing:.3px; }
.sr { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 14px; }
.sr + .sr { margin-top: 8px; }
.sr--top {
  background: linear-gradient(120deg, rgba(200,255,61,.12), rgba(24,224,255,.06));
  border: 1px solid var(--line-2);
}
.sr--dim { opacity: .45; }
.sr__logo {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.sr--top .sr__logo { background: var(--grad-charge); color: var(--bg); }
.sr--dim .sr__logo { background: var(--surface-2); color: var(--ink-400); }
.sr__info { flex: 1; min-width: 0; }
.sr__info strong { display: block; font-size: 13.5px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr__meta { font-size: 11.5px; color: var(--ink-300); margin-top: 2px; }
.sr__badge {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 6px;
  font-size: 10.5px; font-weight: 700; color: var(--bg); background: var(--volt);
  padding: 2px 8px; border-radius: 6px; letter-spacing: .3px;
}
.sr__wa {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  animation: pulse-wa 2.2s infinite;
}
.sr__wa svg { width: 19px; height: 19px; }
/* radar atrás do card */
.radar { position: absolute; width: 460px; height: 460px; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 0; pointer-events: none; }
.radar span { position:absolute; inset:0; margin:auto; border-radius:50%; border:1px solid rgba(200,255,61,.14); }
.radar span:nth-child(1){ width:160px;height:160px; }
.radar span:nth-child(2){ width:290px;height:290px; }
.radar span:nth-child(3){ width:430px;height:430px; }
.radar::after { content:""; position:absolute; inset:0; border-radius:50%; background: conic-gradient(from 0deg, rgba(200,255,61,.20), transparent 30%); animation: orbit 7s linear infinite; }

/* ===== SIMULADOR INTERATIVO ===== */
.calc {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
  position: relative; overflow: hidden;
}
.calc__controls { display: flex; flex-direction: column; gap: 28px; }
.calc__field label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; color: var(--ink-100); margin-bottom: 14px; font-size: 14.5px; }
.calc__field label b { font-family: var(--font-display); color: var(--volt); font-size: 19px; }
.calc__range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px;
  background: var(--bg-2); outline: none; cursor: pointer;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad-charge); cursor: pointer; box-shadow: 0 4px 14px rgba(200,255,61,.45); border: 3px solid var(--surface);
}
.calc__range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--volt); cursor: pointer; border: 3px solid var(--surface); }
.calc__out { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; text-align: center; }
.calc__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px,5.5vw,56px); background: var(--grad-charge); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1.05; }
.calc__big-label { font-size: 13px; color: var(--ink-300); margin: 6px 0 24px; }
.calc__row { display: flex; justify-content: space-around; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.calc__stat strong { display:block; font-family: var(--font-display); font-size: 26px; color: var(--white); }
.calc__stat span { font-size: 12px; color: var(--ink-400); }
.calc__note { font-size: 11.5px; color: var(--ink-500); margin-top: 16px; line-height:1.5; }

/* ===== INVERSÃO: BARRAS ANIMADAS (Mercado vs 12V) ===== */
.compare { max-width: 760px; margin: 0 auto 34px; display: grid; gap: 26px; }
.cmp__metric { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 12px; display:flex; align-items:center; gap:9px; }
.cmp__metric::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--volt); }
.cmp__bar { display: flex; align-items: center; gap: 14px; }
.cmp__bar + .cmp__bar { margin-top: 9px; }
.cmp__name { width: 70px; flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--ink-200); }
.cmp__track { flex: 1; height: 32px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.cmp__fill {
  height: 100%; width: 0; border-radius: 8px;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700; white-space: nowrap;
  transition: width 1.3s cubic-bezier(.3,0,.15,1);
}
.cmp__bar--mkt .cmp__fill { background: linear-gradient(90deg, #3a1f2a, var(--spark-2)); color: #fff; }
.cmp__bar--12v .cmp__fill { background: var(--grad-charge); color: var(--bg); box-shadow: 0 0 22px rgba(200,255,61,.3); }

/* ===== ANIMAÇÕES ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: translateX(0); }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 14px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 14px 32px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(200,255,61,.6); }
  70%,100% { box-shadow: 0 0 0 9px rgba(200,255,61,0); }
}
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 50% { opacity: 0; } }

/* SVG do hero — animações de carga e elétron */
@keyframes charge-fill { 0%,100% { height: 40%; } 50% { height: 86%; } }
@keyframes dash-flow { to { stroke-dashoffset: -200; } }
@keyframes spark-blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes orbit { to { transform: rotate(360deg); } }

.anim-charge { animation: charge-fill 3.4s ease-in-out infinite; transform-origin: bottom; }
.anim-flow { stroke-dasharray: 10 12; animation: dash-flow 2.4s linear infinite; }
.anim-spark { animation: spark-blink 1.6s ease-in-out infinite; }
.anim-orbit { animation: orbit 14s linear infinite; transform-origin: center; }
.anim-orbit--rev { animation: orbit 20s linear infinite reverse; transform-origin: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .hero__content, .hero__visual { min-width: 0; }
  .hero__content { text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__bullets { display: inline-flex; text-align: left; margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__note { justify-content: center; }
  .hero__visual { min-height: auto; order: 2; }
  .float-card--a { left: 0; } .float-card--b { right: 0; }
  .pains, .cases, .quotes { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .versus, .funnel-wrap, .results-grid, .offer__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .calc { grid-template-columns: 1fr; gap: 30px; }
  .offer { padding: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 76px 0; }
  .section--tight { padding: 60px 0; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: rgba(11,14,22,.98); backdrop-filter: blur(18px);
    flex-direction: column; justify-content: center; padding: 40px 32px; gap: 30px;
    transform: translateX(110%); transition: transform .38s cubic-bezier(.4,0,.2,1);
    border-left: 1px solid var(--line-2);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 22px; align-items: stretch; text-align: left; }
  .nav__list a { font-size: 18px; }
  .nav__cta { width: 100%; }
  .nav__toggle { display: flex; }
  .stat:nth-child(odd)::after { display: none; }
  .pains, .cases, .quotes, .pillars, .dual { grid-template-columns: 1fr; }
  .hero { padding: 26px 0 46px; }
  .hero__title { font-size: clamp(29px, 8.6vw, 40px); }
  .hero__lead { font-size: 16px; }
  .hero__bullets { gap: 9px; margin: 16px auto 22px; }
  .hero__bullets li { font-size: 14px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { min-height: 0; padding: 8px 0; }
  .searchcard { width: min(100%, 340px); }
  .radar { width: 320px; height: 320px; }
  .radar span:nth-child(3) { display: none; }
  .calc { padding: 26px 20px; }
  .calc__out { padding: 24px; }
  .cmp__name { width: 56px; font-size: 12px; }
  .cmp__track { height: 28px; }
  .float-card--a, .float-card--b, .float-card--c { display: none; }
  .timeline::before { left: 25px; }
  .tl-item { padding-left: 70px; }
  .tl-item__node { width: 52px; height: 52px; }
  .tl-item__node svg { width: 24px; height: 24px; }
  .offer { padding: 30px 24px; }
  .final__cta { flex-direction: column; }
  .final__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .stat::after { display: none !important; }
  .offer { padding: 26px 20px; }
  .vs-card { padding: 28px 22px; }
}
