/* =========================================================
   LP GBP Kit — Agência Pilaris
   Mobile-first. Plus Jakarta Sans. Dark premium.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* base dark navy */
  --bg: #080B17;
  --surface: #0F1729;
  --surface-2: #141B2E;
  --surface-3: #1A2240;
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.16);
  --text: #FFFFFF;
  --text-soft: #C8CDD9;
  --muted: #8A92A6;

  /* brand + accents */
  --orange: #FB8500;
  --orange-bright: #FFA94D;
  --gold: #FBBF24;
  --cyan: #22D3EE;
  --lime: #A3E635;
  --indigo: #6366F1;
  --pink: #EC4899;
  --success: #22C55E;
  --danger: #EF4444;

  /* gradients */
  --grad-fire: linear-gradient(135deg, #FB8500 0%, #FBBF24 100%);
  --grad-fire-text: linear-gradient(135deg, #FFA94D 0%, #FBBF24 50%, #FCD34D 100%);
  --grad-cool: linear-gradient(135deg, #6366F1 0%, #22D3EE 100%);
  --grad-shine: linear-gradient(135deg, rgba(251,133,0,0.15) 0%, rgba(99,102,241,0.15) 100%);

  /* shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.45);
  --shadow-glow-orange: 0 0 32px rgba(251,133,0,0.35), 0 8px 28px rgba(251,133,0,0.25);
  --shadow-glow-gold: 0 0 32px rgba(251,191,36,0.30);

  /* spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* radii */
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-xl: 20px; --r-full: 9999px;

  /* motion */
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --d-fast: 120ms;
  --d-default: 200ms;

  /* layout */
  --max-w: 1100px;
  --max-w-narrow: 760px;
  --gutter: 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(251,133,0,0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(99,102,241,0.08), transparent 60%),
    radial-gradient(700px 400px at 100% 80%, rgba(34,211,238,0.06), transparent 60%);
  background-attachment: fixed;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.25em; }
em { font-style: normal; background: var(--grad-fire-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px; left: 8px;
  background: var(--orange); color: #080B17;
  padding: 8px 12px; border-radius: var(--r-sm);
  z-index: 999; font-weight: 700;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 2px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container.narrow { max-width: var(--max-w-narrow); }

.section { padding: var(--sp-9) 0; position: relative; }
.section + .section { border-top: 1px solid var(--border); }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02)); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin: 0 0 var(--sp-4);
  padding: 6px 12px;
  background: rgba(251,133,0,0.10);
  border: 1px solid rgba(251,133,0,0.25);
  border-radius: var(--r-full);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
}
.eyebrow-sm { font-size: 11px; }

.display {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--sp-5);
  text-wrap: balance;
}
h1, h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--sp-3);
}
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 var(--sp-5);
  text-wrap: pretty;
}
.body-lg { font-size: 17px; line-height: 1.6; margin: 0 0 var(--sp-4); color: var(--text-soft); }
.muted { color: var(--muted); }
.strike { text-decoration: line-through; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform var(--d-fast) var(--ease), box-shadow var(--d-default) var(--ease), background var(--d-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--grad-fire);
  color: #1A0F00;
  box-shadow: var(--shadow-glow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(251,133,0,0.5), 0 12px 32px rgba(251,133,0,0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-bright);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--orange-bright); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.btn-lg { min-height: 60px; padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-arrow::after {
  content: "→"; transition: transform var(--d-fast) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,23,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 64px;
  padding-top: 8px; padding-bottom: 8px;
}
.brand { display: inline-flex; align-items: center; color: var(--text); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand-logo {
  height: 26px;
  width: auto;
  display: block;
}
@media (min-width: 720px) { .brand-logo { height: 30px; } }

/* ---------- Hero ---------- */
.hero {
  padding: var(--sp-8) 0 var(--sp-9);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(251,133,0,0.18), transparent 60%),
    radial-gradient(600px 300px at 90% 50%, rgba(99,102,241,0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero .display em { /* gradient já vem do em base */ }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  font-size: 13px;
  color: var(--muted);
}
.hero-trust strong { color: var(--text); font-weight: 600; }
.hero-trust .dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }

.hero-visual {
  margin-top: var(--sp-6);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-visual svg,
.hero-visual img.hero-img { display: block; width: 100%; height: auto; }
/* Quando o img existir, esconde o SVG */
.hero-visual img.hero-img + svg.hero-svg { display: none; }

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.trust-bar p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.trust-cities {
  margin-top: var(--sp-2);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-3);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}
.trust-cities span {
  position: relative;
  padding-right: var(--sp-3);
}
.trust-cities span:not(:last-child)::after {
  content: "·";
  position: absolute; right: 0; color: var(--muted);
}

/* ---------- Bullet list (problema) ---------- */
.bullet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.bullet-list li {
  position: relative;
  padding: var(--sp-5) var(--sp-5) var(--sp-5) calc(var(--sp-7) + var(--sp-2));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-soft);
}
.bullet-list li strong { color: var(--text); }
.bullet-list li::before {
  content: "✕";
  position: absolute;
  left: var(--sp-4); top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(239,68,68,0.12);
  color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}

/* ---------- Pillars (mecanismo) ---------- */
.pillars {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pillars { grid-template-columns: repeat(5, 1fr); } }
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  position: relative;
  transition: border-color var(--d-default) var(--ease), transform var(--d-default) var(--ease);
}
.pillar:hover { border-color: var(--orange-bright); transform: translateY(-4px); }
.pillar-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--grad-fire);
  color: #1A0F00;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--sp-3);
}
.pillar h3 { margin: 0 0 var(--sp-2); font-size: 16px; }
.pillar p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ---------- Grid (cards genéricos) ---------- */
.grid { display: grid; gap: var(--sp-4); margin-top: var(--sp-5); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: border-color var(--d-default) var(--ease), transform var(--d-default) var(--ease);
}
.card:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--grad-shine);
  border: 1px solid var(--border-bright);
  color: var(--orange-bright);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}
.card p { margin: 0; color: var(--text-soft); }

/* ---------- Stack de valor ---------- */
.stack {
  margin-top: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stack-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.stack-row:last-of-type { border-bottom: 0; }
.stack-row-title {
  font-weight: 600;
  color: var(--text);
}
.stack-row-title small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.stack-row-price {
  font-weight: 700;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}
.stack-row.stack-bonus { background: rgba(251,191,36,0.06); border-left: 3px solid var(--gold); }
.stack-row.stack-bonus .stack-row-title { color: var(--gold); }
.stack-total {
  background: rgba(255,255,255,0.04);
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-2);
  border-top: 1px solid var(--border-bright);
}
.stack-total-label { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; }
.stack-total-value { font-size: 22px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.stack-final {
  background: var(--grad-fire);
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-2);
  align-items: center;
  color: #1A0F00;
}
.stack-final-label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.stack-final-value { font-size: 28px; font-weight: 800; font-variant-numeric: tabular-nums; }

/* ---------- Bonus card 24h ---------- */
.bonus-card {
  margin-top: var(--sp-6);
  background:
    linear-gradient(135deg, rgba(251,191,36,0.10) 0%, rgba(251,133,0,0.06) 100%),
    var(--surface);
  border: 2px dashed rgba(251,191,36,0.5);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: opacity var(--d-default) var(--ease);
}
.bonus-card.bonus-expired {
  border-style: solid;
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  opacity: 0.55;
}
.bonus-card.bonus-expired .bonus-timer-clock,
.bonus-card.bonus-expired .bonus-value { color: var(--muted); }

.bonus-timer {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 8px 16px 8px 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(251,191,36,0.4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  position: relative;
}
.bonus-timer::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.bonus-timer-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.bonus-timer-clock {
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.bonus-card h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: var(--sp-3);
}
.bonus-card p { color: var(--text-soft); margin: 0 0 var(--sp-3); }
.bonus-card .bonus-value {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding: 8px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.scarcity-no-bonus {
  background: var(--surface-3) !important;
  color: var(--text-soft) !important;
  animation: none !important;
}

/* ---------- Steps (como funciona) ---------- */
.steps {
  list-style: none; padding: 0;
  margin: var(--sp-6) 0 0;
  display: grid; gap: var(--sp-4);
  counter-reset: step;
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
}
.steps .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--grad-fire);
  color: #1A0F00;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.steps li > h3, .steps li > p { grid-column: 2; margin: 0; }
.steps li > p { color: var(--text-soft); margin-top: var(--sp-1); }

/* ---------- Compare table ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: var(--sp-6);
  background: var(--surface);
}
.compare {
  width: 100%; min-width: 560px;
  border-collapse: collapse;
}
.compare th, .compare td {
  text-align: left; padding: var(--sp-4) var(--sp-5);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.compare tbody th { font-weight: 600; color: var(--text); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare tr.highlight {
  background: linear-gradient(90deg, rgba(251,133,0,0.14), rgba(251,133,0,0.04));
  position: relative;
}
.compare tr.highlight th, .compare tr.highlight td { color: var(--text); }
.compare tr.highlight th {
  position: relative;
  padding-left: calc(var(--sp-5) + 12px);
}
.compare tr.highlight th::before {
  content: ""; position: absolute; left: var(--sp-4); top: 50%; transform: translateY(-50%);
  width: 4px; height: calc(100% - 16px); background: var(--orange); border-radius: 2px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid; gap: var(--sp-4);
  margin-top: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex; flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-stars { color: var(--gold); letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-soft);
  font-size: 15px; line-height: 1.55;
  margin: 0;
}
.testimonial-author {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-fire);
  color: #1A0F00;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.testimonial-name { font-weight: 700; color: var(--text); font-size: 14px; }
.testimonial-meta { font-size: 13px; color: var(--muted); }

/* ---------- Mega Price card (oferta principal) ---------- */
.price-mega {
  margin-top: var(--sp-6);
  position: relative;
  border-radius: var(--r-xl);
  padding: 2px;
  background: var(--grad-fire);
  box-shadow: var(--shadow-glow-orange);
}
.price-mega-inner {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(251,133,0,0.18), transparent 60%),
    linear-gradient(180deg, #0F1729 0%, #080B17 100%);
  border-radius: calc(var(--r-xl) - 2px);
  padding: var(--sp-8) var(--sp-6) var(--sp-7);
  text-align: center;
  position: relative;
}
.price-mega-inner > * { position: relative; z-index: 1; }
.price-mega .scarcity-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #1A0F00;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  box-shadow: var(--shadow-glow-gold);
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.4), 0 0 24px rgba(251,191,36,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(251,191,36,0), 0 0 32px rgba(251,191,36,0.4); }
}
.price-anchor { display: flex; justify-content: center; gap: var(--sp-2); font-size: 14px; margin-bottom: var(--sp-3); }
.price-main { display: inline-flex; align-items: baseline; gap: var(--sp-2); font-variant-numeric: tabular-nums; margin-bottom: var(--sp-3); }
.price-currency { font-size: 24px; color: var(--text-soft); font-weight: 600; }
.price-value { font-size: clamp(64px, 10vw, 96px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: var(--grad-fire-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-period { font-size: 16px; color: var(--muted); }
.price-sub { color: var(--text-soft); margin: 0 0 var(--sp-5); font-size: 15px; }
.price-note { color: var(--muted); font-size: 13px; margin: var(--sp-4) 0 0; }
.price-installments {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 14px;
  color: var(--text-soft);
}

.guarantee-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding: 10px 16px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}

/* legacy price-card (mantido pra fallback) */
.price-card {
  margin-top: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--orange);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
}

/* ---------- Proof case (Ar Cond) ---------- */
.proof-card {
  margin-top: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.section-alt .proof-card { background: var(--surface-2); }
.check-list { list-style: none; padding: 0; margin: var(--sp-4) 0; display: grid; gap: var(--sp-3); }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,0.15);
  color: var(--success);
  border-radius: 50%;
  font-weight: 700; font-size: 12px;
}
.proof-foot { color: var(--text-soft); margin: var(--sp-4) 0 0; font-style: italic; }

/* ---------- FAQ ---------- */
.faq {
  margin-top: var(--sp-6);
  display: grid;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--border-bright); }
.faq-item summary {
  list-style: none;
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  font-size: 18px; line-height: 1;
  color: var(--orange-bright);
  flex-shrink: 0;
  transition: transform var(--d-default) var(--ease);
}
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-body {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--text-soft);
}
.faq-body p { margin: 0; }

/* ---------- CTA help ---------- */
.cta-help {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-help p { color: var(--muted); margin: 0 0 var(--sp-3); font-size: 14px; }

/* ---------- P.S. block ---------- */
.ps-block {
  margin-top: var(--sp-7);
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  color: var(--text-soft);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}
.ps-block strong { color: var(--text); font-style: normal; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--sp-7) 0;
  background: rgba(0,0,0,0.3);
}
.footer-inner { display: grid; gap: var(--sp-2); text-align: center; color: var(--muted); font-size: 14px; }
.footer-inner p { margin: 0; }
.footer-brand strong { color: var(--text); }
.footer-contact a { color: var(--orange-bright); }

/* ---------- Responsive bumps ---------- */
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cta-group { flex-direction: row; }
  .hero-inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.5fr 1fr; align-items: center; gap: var(--sp-7); }
  .hero-inner > .hero-visual { margin-top: 0; }
}
