/* ============================================================
   CONVERSÃO BLACK — style.css
   Um único CSS para PT e ES. Classes agnósticas de idioma.
   Zero frameworks. Zero bloat. Velocidade é o produto.
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #0a0a0c;
  --surface: #101012;
  --surface-2: #16161a;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --txt: #f5f5f7;
  --muted: #a3a3ad;
  --muted-2: #6b6b75;
  --primary: #ff1a1a;
  --primary-deep: #cc0000;
  --primary-soft: rgba(255, 26, 26, 0.1);
  --primary-line: rgba(255, 26, 26, 0.28);
  --green: #25d366;
  --green-soft: rgba(37, 211, 102, 0.12);
  --gold: #fbbf24;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-red: 0 0 40px rgba(255, 26, 26, 0.25);
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select { font-family: inherit; }
::selection { background: var(--primary); color: #000; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.ic { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ic-fill { fill: currentColor; stroke: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: 14px;
  padding: 17px 30px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.45);
  position: relative;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255, 26, 26, 0.55); }
.btn-pulse { animation: btn-pulse 2.4s infinite; }
@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255, 26, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0); }
}
.btn-ghost { border: 1px solid var(--line); color: #fff; background: rgba(255, 255, 255, 0.02); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.06); }
.btn-wa { background: var(--green); color: #04140a; }
.btn-wa:hover { background: #2ee574; transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 0.8rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0.06em; font-size: 0.95rem; white-space: nowrap; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, #7a0000 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.72rem; font-weight: 900; letter-spacing: 0;
  box-shadow: 0 0 18px rgba(255, 26, 26, 0.35);
}
.logo .black { color: var(--primary); }
.nav-links { display: flex; gap: 26px; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 8px; padding: 3px; font-size: 0.72rem; font-weight: 800; }
.lang-switch a { padding: 4px 9px; border-radius: 6px; color: var(--muted-2); }
.lang-switch a.active { background: var(--primary); color: #000; }
.lang-switch a:not(.active):hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 70% 20%, rgba(255, 26, 26, 0.13), transparent 65%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(255, 26, 26, 0.06), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary-line);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: blink 1.6s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.grad {
  background: linear-gradient(92deg, #fff 10%, var(--primary) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-sub .mark { color: var(--primary); font-weight: 900; background: var(--primary-soft); padding: 0 5px; border-radius: 4px; white-space: nowrap; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hero-note .ic { color: var(--primary); }
.hero-note b { color: #fff; }

/* ---------- SERP mockup (simulação honesta) ---------- */
.hero-visual { position: relative; }
.serp-device {
  background: linear-gradient(180deg, #141416 0%, #0b0b0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 26, 26, 0.07);
  position: relative;
  animation: float-soft 7s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.serp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1c1c20;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  color: #e8e8ec;
}
.serp-bar .ic { color: var(--muted-2); width: 1em; height: 1em; }
.serp-caret { display: inline-block; width: 2px; height: 1.05em; background: var(--primary); margin-left: 2px; vertical-align: text-bottom; animation: blink 0.9s infinite; }
.serp-result {
  background: #111114;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.serp-result.sponsored {
  border-color: var(--primary-line);
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.07) 0%, #111114 80%);
  box-shadow: 0 0 24px rgba(255, 26, 26, 0.1);
}
.serp-tag { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.serp-head { display: flex; align-items: center; gap: 10px; margin: 8px 0 4px; }
.serp-fav {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7a0000);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; color: #fff;
}
.serp-head strong { font-size: 0.86rem; display: block; line-height: 1.2; }
.serp-head span { font-size: 0.68rem; color: var(--muted-2); }
.serp-title { font-size: 0.8rem; color: #9ec3ff; margin: 4px 0; font-weight: 600; }
.serp-meta { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--muted); }
.serp-meta .star { color: var(--gold); }
.serp-meta .open { color: var(--green); font-weight: 700; }
.serp-actions { display: flex; gap: 8px; margin-top: 10px; }
.serp-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  border-radius: 999px; padding: 6px 13px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.serp-btn.hot { background: var(--green-soft); border-color: rgba(37, 211, 102, 0.35); color: var(--green); }
.serp-btn .ic { width: 0.95em; height: 0.95em; }
.serp-map {
  height: 68px;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 68% 45%, rgba(255, 26, 26, 0.25), transparent 42%),
    linear-gradient(115deg, #15181c 0%, #101216 50%, #14161a 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
  overflow: hidden;
}
.serp-map::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}
.serp-map .ic { color: var(--primary); width: 1.3em; height: 1.3em; filter: drop-shadow(0 0 8px rgba(255, 26, 26, 0.6)); position: relative; }
.serp-map span { font-size: 0.72rem; font-weight: 700; color: #e8e8ec; position: relative; }
.serp-result.ghost { height: 44px; opacity: 0.4; }
.serp-result.ghost.short { height: 34px; opacity: 0.22; margin-bottom: 0; }
.serp-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 13px;
  padding: 10px 15px;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  animation: chip-in 8s ease-in-out infinite;
  opacity: 0;
}
.serp-chip .ic { color: var(--green); }
.serp-chip.chip-call { border-color: var(--primary-line); }
.serp-chip.chip-call .ic { color: var(--primary); }
.serp-chip small { display: block; font-weight: 500; color: var(--muted); font-size: 0.66rem; }
.chip-1 { top: 16%; right: -26px; }
.chip-2 { bottom: 20%; left: -30px; animation-delay: 4s; }
@keyframes chip-in {
  0%, 8% { opacity: 0; transform: translateY(14px); }
  14%, 46% { opacity: 1; transform: translateY(0); }
  54%, 100% { opacity: 0; transform: translateY(-10px); }
}
.serp-caption {
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted-2);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Faixa de confiança ---------- */
.trust-strip { border-block: 1px solid var(--line-soft); background: var(--bg-2); padding: 34px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ic-box {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-soft); border: 1px solid var(--primary-line);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.trust-item h3 { font-size: 0.9rem; font-weight: 800; line-height: 1.3; }
.trust-item p { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }

/* ---------- Seções genéricas ---------- */
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.kicker {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 14px;
}
.sec-title { font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.01em; }
.sec-title .red { color: var(--primary); }
.sec-sub { color: var(--muted); margin-top: 18px; font-size: 1.02rem; }

/* ---------- Dor (Síndrome da Agência Padrão) ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover { border-color: var(--primary-line); transform: translateY(-4px); }
.pain-card .ic-box {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.2rem;
}
.pain-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.pain-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Metodologia ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 24px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: var(--primary-line); transform: translateY(-4px); }
.step-card::after {
  content: attr(data-num);
  position: absolute;
  top: 8px; right: 16px;
  font-size: 3.6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.045);
  line-height: 1;
}
.step-card .ic-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-soft); border: 1px solid var(--primary-line);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.84rem; }

/* ---------- Comparativo ---------- */
.cmp {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  max-width: 920px;
  margin: 0 auto;
}
.cmp-row { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; align-items: stretch; }
.cmp-row + .cmp-row { border-top: 1px solid var(--line-soft); }
.cmp-row > div { padding: 20px 22px; display: flex; align-items: center; font-size: 0.92rem; }
.cmp-head { background: rgba(255, 255, 255, 0.03); font-weight: 800; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.1em; }
.cmp-head > div { color: var(--muted-2); }
.cmp-head .cmp-black { color: var(--primary); }
.cmp-crit { font-weight: 800; color: #fff; }
.cmp-them { color: var(--muted); justify-content: center; text-align: center; }
.cmp-black {
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: var(--primary-soft);
  border-left: 1px solid var(--primary-line);
}
.cmp-row:not(.cmp-head):hover { background: rgba(255, 255, 255, 0.015); }
.cmp-them .ic { color: var(--muted-2); margin-right: 8px; }
.cmp-black .ic { color: var(--primary); margin-right: 8px; }

/* ---------- Proximidade / WhatsApp direto ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .kicker { text-align: left; }
.split .sec-title { text-align: left; }
.split-copy p.lead { color: var(--muted); font-size: 1.05rem; margin: 20px 0 30px; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.feature-row .ic-box {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-soft); border: 1px solid var(--primary-line); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.feature-row:hover .ic-box { background: var(--primary); color: #000; }
.feature-row h4 { font-size: 1.05rem; font-weight: 800; }
.feature-row p { color: var(--muted); font-size: 0.88rem; margin-top: 3px; }

.chat-mock {
  background: #0e0e10;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  max-width: 460px;
  margin-left: auto;
}
.chat-top { display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--line-soft); padding-bottom: 18px; margin-bottom: 20px; }
.chat-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #500000);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.chat-top strong { font-size: 0.9rem; display: block; }
.chat-top span { font-size: 0.7rem; color: var(--green); display: flex; align-items: center; gap: 5px; }
.chat-top span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.6s infinite; }
.msg { max-width: 86%; padding: 12px 16px; font-size: 0.85rem; margin-bottom: 14px; line-height: 1.5; }
.msg time { display: block; font-size: 0.62rem; color: var(--muted-2); margin-top: 6px; text-align: right; }
.msg-client { background: #1a1a1e; border: 1px solid var(--line-soft); border-radius: 14px 14px 4px 14px; margin-left: auto; color: #e6e6ea; }
.msg-cb { background: var(--primary-soft); border: 1px solid var(--primary-line); border-radius: 14px 14px 14px 4px; }
.msg-stat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: 10px; padding: 10px 14px; margin-top: 10px;
}
.msg-stat .ic-box {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.msg-stat small { display: block; font-size: 0.62rem; color: var(--muted); }
.msg-stat b { font-size: 0.92rem; }
.chat-note { text-align: center; font-size: 0.68rem; color: var(--muted-2); margin-top: 6px; }

/* ---------- Cases ---------- */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.case-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.case-card:hover { border-color: var(--primary-line); }
.case-tag {
  position: absolute; top: 0; right: 0;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.64rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 8px 16px; border-radius: 0 0 0 14px;
}
.case-id { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.case-avatar {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, #1d1d22, #0c0c0e);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.case-id h3 { font-size: 1.25rem; font-weight: 800; }
.case-id p { font-size: 0.8rem; color: var(--muted-2); }
.case-story { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; min-height: 66px; }
.case-stats {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.case-stats .stat small { display: block; font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 4px; }
.case-stats .stat b { font-size: 1.35rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.case-stats .stat b.red { color: var(--primary); }
.case-foot {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-foot span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.case-foot b { font-size: 1.3rem; font-weight: 900; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.cases-note { text-align: center; color: var(--muted-2); font-size: 0.75rem; margin-top: 26px; }

/* ---------- Liderança ---------- */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 880px; margin: 0 auto; }
.founder-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 44px 34px;
  text-align: center;
  transition: border-color 0.3s;
}
.founder-card:hover { border-color: var(--primary-line); }
.founder-photo {
  width: 148px; height: 148px; border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  border: 2px solid var(--primary-line);
  box-shadow: 0 0 34px rgba(255, 26, 26, 0.14);
  background: linear-gradient(135deg, #202024, #0c0c0e);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.founder-photo .initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 900; color: rgba(255, 255, 255, 0.25);
}
.founder-card h3 { font-size: 1.4rem; font-weight: 900; }
.founder-role {
  display: inline-block;
  background: var(--primary-soft); color: var(--primary);
  border: 1px solid var(--primary-line);
  font-size: 0.66rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 6px 13px; border-radius: 7px;
  margin: 12px 0 20px;
}
.founder-quote { color: var(--muted); font-size: 0.9rem; max-width: 340px; margin: 0 auto; font-style: italic; }

/* ---------- Reversão de risco ---------- */
.guarantee {
  max-width: 860px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255, 26, 26, 0.1), transparent 70%),
    var(--surface);
  border: 1px solid var(--primary-line);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee .ic-seal {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--primary-soft); border: 1px solid var(--primary-line);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.guarantee .ic-seal .ic { width: 30px; height: 30px; }
.guarantee h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 18px; }
.guarantee p.g-lead { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto 30px; }
.guarantee p.g-lead strong { color: #fff; }
.g-points { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; margin-bottom: 34px; }
.g-points span { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--txt); }
.g-points .ic { color: var(--green); }

/* ---------- O que acontece depois do clique ---------- */
.after-click { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin: 0 auto 52px; }
.ac-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 20px;
}
.ac-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #000;
  font-weight: 900; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
}
.ac-step h4 { font-size: 0.88rem; font-weight: 800; line-height: 1.3; }
.ac-step p { font-size: 0.74rem; color: var(--muted); margin-top: 3px; }

/* ---------- Formulário ---------- */
.form-shell {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 0 90px rgba(255, 26, 26, 0.12);
  position: relative;
}
.form-progress { margin-bottom: 34px; }
.fp-labels { display: flex; justify-content: space-between; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 10px; }
.fp-labels .on { color: var(--primary); }
.fp-track { height: 6px; background: rgba(255, 255, 255, 0.06); border-radius: 999px; overflow: hidden; }
.fp-bar {
  height: 100%; width: 50%;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 26, 26, 0.6);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
}
.fp-bar.done { background: var(--green); box-shadow: 0 0 12px rgba(37, 211, 102, 0.5); }

.fstep { display: none; animation: step-in 0.45s ease; }
.fstep.active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fstep h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 26px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 9px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px 18px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a3a3ad' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 26, 26, 0.12);
}
.field input::placeholder { color: var(--muted-2); }
.field.invalid input, .field.invalid select, .field.invalid .phone-row { border-color: #ff5a5a; }
.field .err { display: none; color: #ff7a7a; font-size: 0.72rem; margin-top: 7px; font-weight: 600; }
.field.invalid .err { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.phone-row {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.phone-row:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255, 26, 26, 0.12); }
.phone-row select {
  width: auto;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background-color: rgba(255, 255, 255, 0.03) !important;
  box-shadow: none !important;
  padding: 16px 34px 16px 14px !important;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
}
.phone-row input { border: 0 !important; box-shadow: none !important; border-radius: 0 !important; flex: 1; min-width: 0; }

.pills { display: flex; gap: 12px; }
.pills label {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  margin: 0;
}
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills input:checked + span { color: inherit; }
.pills label:has(input:checked),
.pills label.checked {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: #fff;
}
.pills label:hover { border-color: rgba(255, 255, 255, 0.25); }

.form-nav { display: flex; gap: 14px; margin-top: 30px; }
.form-nav .btn-back { flex: 0 0 auto; }
.form-nav .btn-go { flex: 1; }
.form-secure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-top: 1px solid var(--line-soft);
  margin-top: 30px; padding-top: 22px;
  font-size: 0.72rem; color: var(--muted-2);
}
.form-secure .ic { width: 0.95em; height: 0.95em; }

/* honeypot: escondido de humanos, visível para bots */
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.form-success { text-align: center; padding: 26px 0 10px; }
.fs-check {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.18);
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fs-check .ic { width: 38px; height: 38px; stroke-width: 2.5; }
@keyframes pop-in { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 1.7rem; font-weight: 900; margin-bottom: 12px; }
.form-success p { color: var(--muted); max-width: 440px; margin: 0 auto 28px; font-size: 0.95rem; }
.form-success p b { color: #fff; }
.form-error {
  display: none;
  background: rgba(255, 26, 26, 0.08);
  border: 1px solid var(--primary-line);
  border-radius: 13px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #ffb4b4;
  margin-top: 20px;
  text-align: center;
}
.form-error.show { display: block; }
.form-error a { color: #fff; font-weight: 800; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 50px 0 90px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-inner .logo { opacity: 0.9; }
.footer-links { display: flex; gap: 24px; font-size: 0.8rem; color: var(--muted); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.72rem; color: var(--muted-2); margin-top: 22px; text-align: center; width: 100%; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--green);
  color: #04140a;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 15px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 12px 44px rgba(37, 211, 102, 0.5); }
.wa-float .ic { width: 1.35em; height: 1.35em; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Banner de sugestão de idioma ---------- */
.lang-banner {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  background: rgba(13, 13, 15, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6);
  max-width: calc(100vw - 32px);
}
.lang-banner .btn { padding: 9px 16px; font-size: 0.74rem; border-radius: 9px; }
.lang-banner .lb-close { color: var(--muted-2); display: flex; padding: 4px; }
.lang-banner .lb-close:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- CTA final ---------- */
.final-cta { text-align: center; padding-bottom: 20px; }
.final-cta h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.final-cta p { color: var(--muted); font-size: 1.08rem; max-width: 560px; margin: 0 auto 34px; }
.final-cta p b { color: var(--primary); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 120px; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .chip-1 { right: -8px; }
  .chip-2 { left: -8px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .chat-mock { margin: 0 auto; }
  .nav-links { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .pain-grid, .cases-grid, .founders-grid, .after-click { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-item { flex-direction: column; gap: 10px; }
  .form-shell { padding: 30px 22px; }
  .grid-2 { grid-template-columns: 1fr; }
  .guarantee { padding: 40px 24px; }
  .g-points { gap: 16px; flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .header-cta { display: none; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-row.cmp-head { display: none; }
  .cmp-row > div { padding: 14px 18px; }
  .cmp-crit { padding-bottom: 4px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); }
  .cmp-them { justify-content: flex-start; text-align: left; font-size: 0.85rem; padding-top: 0; padding-bottom: 4px; }
  .cmp-black { justify-content: flex-start; text-align: left; border-left: 0; border-radius: 8px; margin: 0 14px 16px; padding: 12px 14px; }
  .wa-float { left: 16px; right: 16px; justify-content: center; bottom: 16px; padding: 16px; }
  .wa-float span { font-size: 0.9rem; }
  .site-footer { padding-bottom: 110px; }
  .serp-chip { display: none; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn-back { width: 100%; }
}
