/* ═══════════════════════════════════════════════════════
   DOMUS Pro · Auto Peças — Landing v3 "SaaS Modern"
   Stack: Inter Variable · Petróleo #0F6E56 · Zinc neutrals · Gold #C9A952
   Inspired by Linear / Stripe / Vercel aesthetics
═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ────────────────────────────────── */
:root {
  /* Brand */
  --brand:        #0F6E56;
  --brand-mid:    #15876B;
  --brand-light:  #1FA17F;
  --brand-dim:    rgba(15, 110, 86, 0.07);
  --brand-dim-md: rgba(15, 110, 86, 0.12);

  /* Gold accent — muted, not saturated */
  --gold:         #C9A952;
  --gold-light:   #E8D088;
  --gold-dim:     rgba(201, 169, 82, 0.15);

  /* Neutral scale (zinc) */
  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --bg-2:         #F8FAFC;
  --surface:      #F1F5F9;
  --surface-2:    #E8EDF3;
  --border:       #E2E8F0;
  --border-mid:   #CBD5E1;

  /* Text */
  --text-1:       #0F172A;
  --text-2:       #475569;
  --text-3:       #94A3B8;

  /* Status */
  --green:        #16A34A;
  --green-dim:    rgba(22, 163, 74, 0.10);
  --red:          #DC2626;
  --red-dim:      rgba(220, 38, 38, 0.08);
  --whatsapp:     #25D366;
  --whatsapp-hov: #20BD5A;

  /* Shadows — layered, subtle */
  --shadow-xs:
    0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm:
    0 1px 3px rgba(15, 23, 42, 0.04),
    0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md:
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 6px 16px rgba(15, 23, 42, 0.07),
    0 12px 28px rgba(15, 23, 42, 0.05);
  --shadow-lg:
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 12px 28px rgba(15, 23, 42, 0.08),
    0 24px 56px rgba(15, 23, 42, 0.07);
  --shadow-brand:
    0 4px 14px rgba(15, 110, 86, 0.18),
    0 1px 3px rgba(15, 110, 86, 0.12);

  /* Geometry */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1160px;

  /* Section rhythm */
  --section-py: 7rem;
  --section-py-sm: 4rem;
}

/* Dark theme */
[data-theme="dark"] {
  --bg:           #080E1A;
  --bg-2:         #0D1525;
  --surface:      #131E31;
  --surface-2:    #1A2840;
  --border:       #1E2F48;
  --border-mid:   #243856;

  --text-1:       #F0F4FC;
  --text-2:       #94A3B8;
  --text-3:       #64748B;

  --shadow-sm:    0 2px 10px rgba(0,0,0,0.4);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
  --shadow-brand: 0 4px 20px rgba(15, 110, 86, 0.6);

  --brand-dim:    rgba(31, 161, 127, 0.15);
  --brand-dim-md: rgba(31, 161, 127, 0.22);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'calt', 'cv01', 'cv02';
  transition: background 0.25s, color 0.25s;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ─── GLOBAL: selection / scrollbar / focus ────────── */
::selection { background: var(--brand); color: #fff; }
::-moz-selection { background: var(--brand); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
* { scrollbar-width: thin; scrollbar-color: var(--border-mid) var(--bg-2); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── LAYOUT ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (max-width: 400px) {
  .container { padding-inline: 1rem; }
}

/* ─── TYPOGRAPHY SCALE ──────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-1);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }

p { color: var(--text-2); }

/* ─── SECTION HEADER (shared) ───────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p   { font-size: 1.0625rem; color: var(--text-2); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-dim);
  padding: 0.3em 0.85em;
  border-radius: 99px;
  border: 1px solid var(--brand-dim-md);
  margin-bottom: 1rem;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  min-height: 46px;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn svg { flex-shrink: 0; transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(2px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  box-shadow: 0 6px 20px rgba(15, 110, 86, 0.28);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand-dim);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border: 1px solid var(--whatsapp);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hov);
  border-color: var(--whatsapp-hov);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--brand);
  border: 1px solid var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 169, 82, 0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.875rem 1.875rem;
  min-height: 52px;
}

.btn-block { width: 100%; }

/* btn-glow = subtle extra shadow on primary, no animation */
.btn-glow.btn-primary {
  box-shadow: var(--shadow-brand);
}

/* ─── HEADER ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

[data-theme="dark"] .site-header {
  background: rgba(8, 14, 26, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.brand-pro {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--brand);
  color: var(--gold);
  padding: 0.12em 0.45em;
  border-radius: 3px;
  margin-left: 0.25em;
  vertical-align: middle;
}

.brand-product {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 2px;
}

/* Nav */
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text-1);
  background: var(--surface);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-login-btn {
  font-size: 0.875rem;
  padding: 0.4rem 1rem;
  min-height: 36px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.header-phone:hover { color: var(--brand); background: var(--brand-dim); }
.header-phone span { display: none; }
@media (min-width: 900px) { .header-phone span { display: inline; } }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

@media (max-width: 768px) {
  .theme-toggle { width: 44px; height: 44px; }
}

.theme-toggle:hover { color: var(--brand); border-color: var(--brand-dim-md); background: var(--brand-dim); }

[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  border: 1px solid var(--border);
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--brand); }

@media (max-width: 768px) {
  .nav-links, .header-phone { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: var(--bg);
}

/* subtle radial gradient behind hero content */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(15, 110, 86, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201, 169, 82, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Remove old patterns/decos visually even if elements remain */
.hero-pattern,
.hero-deco { display: none !important; }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero content */
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: dotPulse 2.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
}

.eyebrow-beta {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--brand-dim);
  color: var(--brand);
  padding: 0.15em 0.55em;
  border-radius: 99px;
  border: 1px solid var(--brand-dim-md);
}

/* ICP chips no hero — sinaliza os 3 perfis (oficina/autopeças/híbrido) */
.hero-icp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.icp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--brand-dim);
  color: var(--brand);
  border: 1px solid var(--brand-dim-md);
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

[data-theme="dark"] .icp-chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
  .icp-chip { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
}

.eyebrow-text, .eyebrow-sep, .eyebrow-countdown {
  color: var(--text-2);
  font-size: 0.8125rem;
}

.eyebrow-countdown strong { color: var(--text-1); font-weight: 600; }

/* Hero title */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.375rem;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-1);
}

.hero-title-kicker {
  font-size: 0.875em;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

.hero-title-money {
  color: var(--brand);
  white-space: nowrap;
}

@media (max-width: 540px) {
  .hero-title-money { white-space: normal; }
}

.hero-title-period {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-3);
  vertical-align: middle;
}

.hero-title-end { color: var(--text-1); }

.hero-highlight {
  position: relative;
  color: var(--brand);
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-subtitle strong { color: var(--text-1); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Trust bar */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.2;
}

.trust-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.2;
}

/* Hero image */
.hero-image {
  position: relative;
  z-index: 1;
}

/* Remove old bracket decorations */
.hero-image-bracket { display: none !important; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(15, 110, 86, 0.45) 100%
  );
  pointer-events: none;
}

/* Offer badge */
.hero-offer-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  box-shadow:
    var(--shadow-md),
    0 0 28px rgba(201,169,82,0.14);
  text-align: center;
  min-width: 130px;
  animation: offerFloat 4s ease-in-out infinite;
}

@keyframes offerFloat {
  0%, 100% { transform: translateY(0px);  box-shadow: var(--shadow-md), 0 0 28px rgba(201,169,82,0.14); }
  50%       { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 36px rgba(201,169,82,0.22); }
}

[data-theme="dark"] .hero-offer-badge { background: var(--surface); }

.hero-offer-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.hero-offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  line-height: 1;
  color: var(--brand);
}

.hero-offer-currency { font-size: 1rem; font-weight: 700; }
.hero-offer-value    { font-size: 2.75rem; font-weight: 900; letter-spacing: -0.04em; }
.hero-offer-period   { font-size: 0.75rem; font-weight: 600; color: var(--text-3); }

.hero-offer-old {
  font-size: 0.6875rem;
  color: var(--text-3);
  margin-top: 0.3rem;
}
.hero-offer-old s { text-decoration-color: var(--text-3); }

.hero-offer-save {
  display: inline-flex;
  align-items: center;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 99px;
  padding: 0.18rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.5rem;
  white-space: nowrap;
}

/* Mini review overlay */
.hero-mini-review {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.6);
}

[data-theme="dark"] .hero-mini-review {
  background: rgba(13, 21, 37, 0.92);
  border-color: rgba(30, 47, 72, 0.8);
}

.hero-mini-review .mini-review-stars {
  font-size: 0.8125rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-mini-review p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.hero-mini-review .mini-review-author {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ─── SECTION DIVIDER — hide old squiggle ──────────── */
.section-divider { display: none; }

/* ─── STATS BAR ─────────────────────────────────────── */
.stats-bar {
  position: relative;
  background: var(--brand);
  padding: 2.5rem 0;
  overflow: hidden;
}

/* remove old pattern */
.stats-bar-pattern { display: none !important; }

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 100% at 100% 50%, rgba(201, 169, 82, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-bar-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 160px;
}

.stat-bar-number {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  white-space: nowrap;
}

.stat-bar-prefix,
.stat-bar-unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.stat-bar-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.stat-bar-label strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.stat-bar-label span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

.stat-bar-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stat-bar-divider { display: none; }
  .stats-bar-grid   { justify-content: center; gap: 1.5rem; }
  .stat-bar-item    { flex: 1 1 140px; }
}

@media (max-width: 540px) {
  .stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .stat-bar-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    flex: unset;
    background: var(--brand);
    padding: 1.25rem 1rem;
  }
  .stat-bar-number { font-size: 0.9em; }
}

/* ─── TESTIMONIAL ───────────────────────────────────── */
.testimonial {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.testimonial-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 720px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  font-weight: 800;
  color: var(--brand-dim-md);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  user-select: none;
}

.testimonial-quote {
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.testimonial-quote strong { color: var(--brand); font-weight: 600; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
}

.testimonial-author span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-3);
}

.testimonial-time { font-style: italic; }

/* ─── FOUNDING MEMBER (substitui depoimento ilustrativo) ─── */
.founding-card {
  max-width: 820px;
  padding: 2.5rem 2.5rem 2.25rem;
  text-align: left;
}

.founding-card::before {
  background: linear-gradient(90deg, var(--gold), var(--brand));
}

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, rgba(212, 165, 64, 0.18), rgba(212, 165, 64, 0.08));
  color: var(--gold);
  border: 1px solid rgba(212, 165, 64, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.founding-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.founding-num {
  color: var(--gold);
  white-space: nowrap;
}

.founding-lead {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 60ch;
}

.founding-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 1rem;
}

.founding-perks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem;
  align-items: start;
  padding: 0.875rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.founding-perks .fp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: rgb(22, 163, 74);
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.founding-perks li > div {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.founding-perks li strong {
  display: block;
  color: var(--text-1);
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.founding-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.founding-foot {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin: 0;
}

[data-theme="dark"] .founding-perks li {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 640px) {
  .founding-card { padding: 1.75rem 1.5rem; }
  .founding-cta-row .btn { width: 100%; }
}

/* ─── HERO GUARANTEE OVERLAY (substitui hero-mini-review ilustrativo) ─── */
.hero-guarantee-overlay {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.hero-guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: rgb(22, 163, 74);
  flex-shrink: 0;
}

.hero-guarantee-overlay p {
  grid-column: 2;
  margin: 0;
}

.hero-guarantee-overlay .mini-review-author {
  grid-column: 2;
  margin-top: 0.125rem;
}

/* ─── PROBLEM ───────────────────────────────────────── */
.problem {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.problem-small-grid {
  display: grid;
  gap: 1rem;
  grid-template-rows: repeat(3, 1fr);
}

/* Problem stat cards */
.problem-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.problem-stat:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-mid);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.10);
  display: grid;
  place-items: center;
  color: #d97706;
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #d97706;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.stat-label strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}
.stat-label span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* Problem featured card */
.problem-featured {
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.problem-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.problem-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.problem-featured-number {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  line-height: 1;
  color: #d97706;
  margin-bottom: 0.5rem;
}

.featured-currency { font-size: 1.25rem; font-weight: 700; color: #d97706; }
.featured-value    { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; color: #d97706; }
.featured-suffix   { font-size: 1.5rem; font-weight: 700; color: #d97706; }

.problem-featured-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}

.problem-featured-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.problem-featured-desc strong { color: var(--text-1); }

.problem-featured-footer {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-dim);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.problem-featured-footer svg { flex-shrink: 0; }
.problem-featured-footer strong { color: inherit; }

.problem-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.problem-total-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-total-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d97706;
  flex-shrink: 0;
}

.problem-total-value {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #d97706;
}

.problem-total-sub {
  font-size: 0.8rem;
  color: var(--text-3);
  white-space: nowrap;
}

.problem-source {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .problem-layout { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .problem-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem;
  }
  .problem-total-label {
    font-size: 0.8125rem;
  }
  .problem-total-value {
    font-size: 1.75rem;
  }
}

/* ─── CALCULATOR ────────────────────────────────────── */
.calculator-section {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.calculator-wrap {
  max-width: 860px;
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.calculator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.calculator-header h2 { margin-bottom: 0.75rem; }
.calculator-header p  { font-size: 1rem; }
.calculator-header strong { color: var(--text-1); }

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-form { display: flex; flex-direction: column; gap: 1.75rem; }

.calc-field {}

.calc-field label {
  display: block;
  margin-bottom: 0.75rem;
}

.calc-field label strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}

.calc-field label span {
  font-size: 0.8125rem;
  color: var(--text-3);
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Range slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    var(--brand) 0%,
    var(--brand) var(--fill, 24%),
    var(--surface-2) var(--fill, 24%),
    var(--surface-2) 100%
  );
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(15, 110, 86, 0.3);
  cursor: pointer;
  transition: transform 0.15s;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(15, 110, 86, 0.3);
  cursor: pointer;
}

.calc-output {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid var(--brand-dim-md);
  border-radius: var(--radius-sm);
  padding: 0.3em 0.75em;
  min-width: 80px;
  text-align: center;
  white-space: nowrap;
  font-style: normal;
}

/* Result panel */
.calc-result {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-result-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fcd34d;
  margin-bottom: 0.5rem;
}

.calc-result-value {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.calc-currency { font-size: 1.125rem; font-weight: 700; color: #fcd34d; }
#calc-total    { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; color: #fcd34d; }
.calc-period   { font-size: 0.875rem; font-weight: 600; color: rgba(252,211,77,0.55); }

.calc-result-yearly {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.calc-result-yearly strong { color: rgba(255,255,255,0.9); }

.calc-result-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1.25rem;
}

.calc-savings { margin-bottom: 1.5rem; }

.calc-savings-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

.calc-savings-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.calc-savings-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.calc-savings-note strong { color: rgba(255,255,255,0.9); }

.roi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 169, 82, 0.20);
  border: 1px solid rgba(201, 169, 82, 0.40);
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.calc-cta {
  background: var(--gold);
  color: var(--brand);
  border: none;
  font-weight: 700;
  animation: ctaPulse 2.4s ease-in-out infinite;
  position: relative;
}

.calc-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 28px rgba(201, 169, 82, 0.55);
}

.calc-cta svg {
  transition: transform 0.22s ease;
}

.calc-cta:hover svg {
  transform: translateX(5px);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(201, 169, 82, 0.35); }
  50%       { box-shadow: 0 4px 28px rgba(201, 169, 82, 0.70), 0 0 0 6px rgba(201, 169, 82, 0.12); }
}

.btn-pulse {
  animation: btnPulse 2.4s ease-in-out infinite;
}
.btn-pulse:hover {
  animation: none;
  box-shadow: 0 8px 28px rgba(15, 110, 86, 0.45);
}
.btn-pulse svg { transition: transform 0.22s ease; }
.btn-pulse:hover svg { transform: translateX(5px); }

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-brand); }
  50%       { box-shadow: 0 4px 24px rgba(15, 110, 86, 0.45), 0 0 0 6px rgba(15, 110, 86, 0.10); }
}

.calc-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.calc-cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.calc-cta-trust span::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: 700;
}

.calc-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .calculator { grid-template-columns: 1fr; }
  .calculator-wrap { padding: 1.5rem; }
}

/* ─── MINI REVIEWS ──────────────────────────────────── */
.mini-reviews {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.mini-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.mini-review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.mini-review:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  border-color: var(--border-mid);
}

.mini-review-stars {
  font-size: 0.9375rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.mini-review p {
  font-size: 0.9375rem;
  color: var(--text-1);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.mini-review-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}

.mini-review-author span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-3);
}

.mini-reviews-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  font-style: italic;
}

@media (max-width: 768px) {
  .mini-reviews-grid { grid-template-columns: 1fr; }
}

/* ─── BEFORE / AFTER ────────────────────────────────── */
.before-after {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.before-card,
.after-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg);
}

/* mockup substitui a img — mantém seletor original caso sobrem imgs */
.before-card img,
.after-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* ── BA MOCKUP ─────────────────────────────── */
.ba-mockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.5rem 1.25rem;
  gap: 1.5rem;
  min-height: 200px;
}

.ba-mockup-before {
  background: var(--surface);
}

.ba-mockup-after {
  background: var(--brand);
}

/* Grid de 3 KPIs */
.bam-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.bam-kpi-value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.bam-kpi-bad  { color: #d97706; }
.bam-kpi-good { color: var(--gold-light); }

.ba-mockup-before .bam-kpi-label { color: var(--text-3); font-size: 0.75rem; }
.ba-mockup-after  .bam-kpi-label { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

/* Rodapé */
.bam-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding-top: 1rem;
}

.bam-foot-bad {
  color: var(--text-3);
  border-top: 1px solid var(--border);
}
.bam-foot-bad strong { color: #d97706; font-weight: 700; }

.bam-foot-good {
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.bam-foot-good strong { color: var(--gold-light); font-weight: 700; }

.before-after-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.625rem 1rem;
}

.before-after-label.before {
  background: var(--surface);
  color: var(--text-3);
}

.before-after-label.after {
  background: var(--green-dim);
  color: var(--green);
}

.before-card h3,
.after-card h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem 0.5rem;
  color: var(--text-1);
}

.before-after-list {
  padding: 0 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.before-after-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.45;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.before-after-list li:last-child { border-bottom: none; }

.before-after-list strong { color: var(--text-1); font-weight: 600; }

.ba-x {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-dim);
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.ba-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

/* Separador com cor temática por card */
.before-card .before-after-list li {
  border-bottom-color: rgba(220, 38, 38, 0.10);
}
.after-card .before-after-list li {
  border-bottom-color: rgba(22, 163, 74, 0.12);
}

.before-after-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.before-after-bottom.loss {
  background: var(--red-dim);
  color: var(--red);
  border-top: 1px solid rgba(220, 38, 38, 0.12);
}

.before-after-bottom.win {
  background: var(--green-dim);
  color: var(--green);
  border-top: 1px solid rgba(22, 163, 74, 0.12);
}

.before-after-bottom span { opacity: 0.7; }
.before-after-bottom strong { font-weight: 700; }

/* Arrow */
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}

.before-after-cta { text-align: center; }

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ─── SOLUTION ──────────────────────────────────────── */
.solution {
  padding: var(--section-py) 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}

/* Depth: subtle gold glow + light flare */
.solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 5% 20%, rgba(201,169,82,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 95% 80%, rgba(201,169,82,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 50%, rgba(255,255,255,0.015) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Text overrides (light mode navy bg needs white text) ── */
[data-theme="light"] .solution .section-tag {
  background: rgba(201,169,82,0.15);
  color: var(--gold-light);
  border-color: rgba(201,169,82,0.28);
}

[data-theme="light"] .solution h2 {
  color: #fff;
}

[data-theme="light"] .solution .section-header > p {
  color: rgba(255,255,255,0.65);
}

[data-theme="light"] .solution .solution-content h3 {
  color: #fff;
}

[data-theme="light"] .solution .solution-content p {
  color: rgba(255,255,255,0.65);
}

[data-theme="light"] .solution .solution-bullets li {
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

[data-theme="light"] .solution .sol-bullet-icon {
  color: var(--gold);
}

[data-theme="light"] .solution .solution-metric {
  background: rgba(201,169,82,0.15);
  color: var(--gold-light);
  border-color: rgba(201,169,82,0.28);
}

[data-theme="light"] .solution .solution-number {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.10);
}

[data-theme="light"] .solution .solution-image {
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 16px 56px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.30),
    0 0 100px rgba(201,169,82,0.26),
    0 0 40px  rgba(201,169,82,0.18);
}

.solution-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 5rem; }
.solution .container { position: relative; z-index: 1; }

.solution-item {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.solution-item.reverse {
  direction: rtl;
}
.solution-item.reverse > * { direction: ltr; }

.solution-number {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-dim);
  border: 2px solid var(--brand-dim-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.35rem;
  /* sobrescreve o que vinha antes */
  font-size: 1rem;
  color: var(--border-mid);
  line-height: 1;
  width: 4rem;
  flex-shrink: 0;
  user-select: none;
}

.solution-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}

.solution-content p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.solution-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.solution-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.sol-bullet-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.solution-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible; /* chips overflow the card edge */
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* clip-path on the mockup itself keeps internal content rounded */
.solution-image > .sol-mockup {
  border-radius: var(--radius-lg);
}

.solution-image img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}

/* ── Metric badge ──────────────────────────── */
.solution-metric {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid var(--brand-dim-md);
  padding: 0.28rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

/* ── Floating chips ──────────────────────── */
@keyframes chipFloat {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-6px);  }
}

.sol-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-1);
  background: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.9);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.22),
    0 1px 4px rgba(0,0,0,0.12);
  animation: chipFloat 3.2s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.01em;
}

/* Positions */
.sol-chip-tl { top: -22px;    left: 16px;  }
.sol-chip-tr { top: -22px;    right: 16px; }
.sol-chip-bl { bottom: -22px; left: 16px;  }
.sol-chip-br { bottom: -22px; right: 16px; }

/* Indicator dots — slightly bigger, colored glow ring */
.sol-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sol-chip-dot-green {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.20);
}
.sol-chip-dot-blue {
  background: var(--blue, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.20);
}
.sol-chip-dot-gold {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,82,0.20);
}

/* Navy bg context — stronger shadow so chip stands out from the glow */
[data-theme="light"] .solution .sol-chip {
  box-shadow:
    0 6px 28px rgba(0,0,0,0.38),
    0 2px 6px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.6);
}

/* Hide on small screens to avoid layout clutter */
@media (max-width: 900px) {
  .sol-chip { display: none; }
}

/* ── Solution mockups — inspirado no app ──── */
.sol-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}

/* Topo do card — igual ao app */
.sol-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0.6rem;
  border-bottom: 1px solid var(--border);
}

.sol-mock-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary, var(--brand));
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sol-mock-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sol-badge-done { background: var(--green-dim); color: var(--green); border: 1px solid rgba(22,163,74,.2); }
.sol-badge-open { background: var(--blue-dim,rgba(59,130,246,.1)); color: var(--blue,#3b82f6); border: 1px solid rgba(59,130,246,.2); }
.sol-badge-wa   { background: rgba(37,211,102,.10); color: #16a34a; border: 1px solid rgba(37,211,102,.2); }

/* Nome do cliente + veículo */
.sol-mock-client {
  padding: 0.65rem 1rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sol-mock-client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
}
.sol-mock-client-vehicle {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* Linhas de dados */
.sol-mock-rows {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
  gap: 0;
  flex: 1;
}

.sol-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 0.78rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.sol-mock-row:last-child { border-bottom: none; }
.sol-mock-row em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
  margin-left: 0.3rem;
}

/* Total */
.sol-mock-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sol-mock-total strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

/* ── WhatsApp mockup ── */
.sol-mockup-wa { background: #f0f2f5; }
[data-theme="dark"] .sol-mockup-wa { background: #1a1f2e; }

.sol-wa-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #25D366; flex-shrink: 0;
}

.sol-mockup-wa .sol-mock-header {
  background: #075e54;
  border-bottom: none;
}
.sol-mockup-wa .sol-mock-tag { color: rgba(255,255,255,0.85); text-transform: none; font-size: 0.78rem; }

.sol-wa-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.sol-wa-bubble {
  align-self: flex-start;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  color: #111;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  max-width: 85%;
}
[data-theme="dark"] .sol-wa-bubble { background: #2a3142; color: var(--text-1); }

.sol-wa-card {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 90%;
}
[data-theme="dark"] .sol-wa-card { background: #2a3142; }

.sol-wa-card-icon { font-size: 1.2rem; flex-shrink: 0; }
.sol-wa-card-title { font-size: 0.74rem; font-weight: 600; color: var(--text-1); }
.sol-wa-card-sub   { font-size: 0.65rem; color: var(--text-3); }

.sol-wa-approved {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: #25D366;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
}

/* ── Garantia mockup ── */
.sol-gar-rows {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
  flex: 1;
}

.sol-gar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.78rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.sol-gar-row:last-child { border-bottom: none; }
.sol-gar-row strong { color: var(--text-1); font-weight: 600; }

.sol-gar-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--green-dim);
  font-size: 0.72rem;
  color: var(--green);
}
.sol-gar-status strong { color: var(--green); font-weight: 700; }
.sol-gar-status span:last-child { color: var(--text-3); font-size: 0.65rem; }

.sol-gar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: dotPulse 2.2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .solution-item,
  .solution-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .solution-number { font-size: 3rem; width: auto; }
  .solution-image  { order: -1; }
}

/* ─── HOW START ─────────────────────────────────────── */
.how-start {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

/* Grid 3 colunas com conectores */
.timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 3rem;
}

/* ── Cards ── */
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ── Step 2 — navy ── */
.step-featured {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: var(--shadow-brand), 0 8px 32px rgba(15,110,86,0.25);
}

/* ── Ícone badge ── */
.step-badge {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step-featured .step-badge {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.step-icon { color: var(--text-3); }
.step-featured .step-icon { color: #fff; }

.step-number {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
}

.step-featured .step-number {
  background: var(--gold);
  color: var(--brand);
  border-color: var(--brand);
}

/* ── Conteúdo ── */
.step-content { flex: 1; }

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.step-featured .step-content h3 { color: #fff; }

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}
.step-featured .step-content p { color: rgba(255,255,255,0.68); }
.step-featured .step-content p strong { color: #fff; }
.step-content p strong { color: var(--text-1); }

/* ── Time badges — pill colorido ── */
.step-time {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.step-time-green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.20);
}
.step-time-gold {
  background: rgba(201,169,82,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,169,82,0.28);
}
.step-time-blue {
  background: var(--blue-dim, rgba(59,130,246,0.10));
  color: var(--blue, #3b82f6);
  border: 1px solid rgba(59,130,246,0.20);
}

/* ── Badge "Diferencial único" ── */
.step-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(201,169,82,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,169,82,0.30);
  border-radius: 99px;
  padding: 0.25em 0.7em;
  align-self: flex-start;
}

/* ── Conector entre cards ── */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: var(--border-mid, var(--border));
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .timeline {
    grid-template-columns: 1fr;
  }
  .step-connector {
    padding: 0.5rem 0;
    transform: rotate(90deg);
  }
}

.how-start-cta { text-align: center; }

/* ─── GUARANTEES ────────────────────────────────────── */
.guarantees {
  padding: var(--section-py) 0;
  background: var(--bg-2);
  position: relative;
}

/* Gold top line */
.guarantees::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 5%,
    var(--gold) 25%,
    var(--gold-light) 50%,
    var(--gold) 75%,
    transparent 95%
  );
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Base card */
.guarantee-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.guarantee-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Color variants — icon only, border top accent */
.guarantee-card--green  { border-top: 3px solid var(--green); }
.guarantee-card--amber  { border-top: 3px solid #d97706; }
.guarantee-card--gold   { border-top: 3px solid var(--gold); }

.guarantee-card--green  .guarantee-icon { background: var(--green-dim);              color: var(--green); }
.guarantee-card--amber  .guarantee-icon { background: rgba(245,158,11,0.10);         color: #d97706; }
.guarantee-card--gold   .guarantee-icon { background: var(--gold-dim);               color: var(--gold); }

/* Featured card — "30 dias devolução" */
.guarantee-card--featured {
  border: 1.5px solid var(--gold);
  border-top: 3px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201,169,82,0.12), var(--shadow-md);
}
.guarantee-card--featured .guarantee-icon {
  background: var(--gold-dim);
  color: var(--gold);
}
.guarantee-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(201,169,82,0.18), var(--shadow-lg);
  transform: translateY(-4px);
}

.guarantee-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201,169,82,0.30);
  border-radius: 99px;
  padding: 0.25em 0.7em;
  margin-bottom: 1rem;
}

/* Icon base */
.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-dim);
  display: grid;
  place-items: center;
  color: var(--brand);
  margin-bottom: 1.125rem;
}

.guarantee-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.625rem;
}

.guarantee-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.guarantee-card p strong { color: var(--text-1); }

/* ── Zero hero CTA ── */
.guarantees-cta {
  text-align: center;
}

.guarantees-zero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1.75rem;
}

.guarantees-zero-num {
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guarantees-zero-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .guarantees-zero-num { font-size: 5rem; }
}

@media (max-width: 900px) {
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .guarantee-grid { grid-template-columns: 1fr; }
}

/* ─── COMPARE ───────────────────────────────────────── */
.compare {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.compare-scroll-outer {
  position: relative;
}

.compare-scroll-outer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  background: linear-gradient(to right, transparent, var(--bg-2));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}

.compare-scroll-outer.at-end::after {
  opacity: 0;
}

/* Ícone de seta indicando scroll */
.compare-scroll-outer::before {
  content: '›';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--text-3);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s;
  line-height: 1;
}

.compare-scroll-outer.at-end::before {
  opacity: 0;
}

@media (min-width: 680px) {
  .compare-scroll-outer::after,
  .compare-scroll-outer::before { display: none; }
}

.compare-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--bg);
}

@media (max-width: 520px) {
  .compare-table { min-width: 0; width: 100%; }
  .compare-table th,
  .compare-table td { padding: 0.6rem 0.75rem; font-size: 0.8125rem; }
  .compare-table .c-label { width: 35%; font-size: 0.8rem; }
}

.compare-table thead tr {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  border-right: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: none;
}

.compare-table .c-label {
  text-align: left;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-2);
  width: 30%;
}

.compare-table tbody tr:nth-child(even) .c-label {
  background: var(--surface);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg-2); }
.compare-table tbody tr:hover .c-label { background: var(--surface); }

/* ── Winner column — elevated ── */
.c-winner {
  background: var(--brand-dim) !important;
  border-left: 2px solid var(--brand) !important;
  border-right: 2px solid var(--brand) !important;
  font-weight: 600;
  color: var(--brand);
}

/* Winner header — navy bg */
.compare-table thead .c-winner {
  background: var(--brand) !important;
  border-top: 2px solid var(--brand);
  border-radius: var(--radius) var(--radius) 0 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.compare-table thead .c-winner .c-logo {
  color: #fff;
  font-size: 1.1rem;
}
.compare-table thead .c-winner .c-logo span { color: var(--gold-light); }
.compare-table thead .c-winner .c-price    { color: var(--gold-light); font-weight: 600; }

/* Badge above logo */
.c-winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(201,169,82,0.20);
  color: var(--gold-light);
  border: 1px solid rgba(201,169,82,0.35);
  border-radius: 99px;
  padding: 0.25em 0.65em;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.c-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
}
.c-logo span { color: var(--brand); }

.c-price {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

/* ── Check / Negative ── */
.c-check { color: var(--green); font-weight: 700; font-size: 1rem; }
.c-x     { font-size: 0.875rem; }

.c-neg {
  display: inline-flex;
  align-items: center;
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: 99px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Paper / Excel column — faded ── */
.c-paper .c-logo {
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: var(--text-3);
}
.c-paper .c-price { color: var(--text-3); }

.c-paper-cell {
  opacity: 0.45;
}

/* ── Compare CTA ── */
.compare-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: center;
}

.compare-cta-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
}

/* ─── PRICING ───────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(201,169,82,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(201,169,82,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pricing .container { position: relative; z-index: 1; }

/* Text overrides on navy bg (light mode) */
[data-theme="light"] .pricing .section-tag {
  background: rgba(201,169,82,0.15);
  color: var(--gold-light);
  border-color: rgba(201,169,82,0.28);
}
[data-theme="light"] .pricing h2        { color: #fff; }
[data-theme="light"] .pricing .section-header > p { color: rgba(255,255,255,0.65); }
[data-theme="light"] .pricing .section-header > p strong { color: #fff; }

/* ── Launch banner — gold/amber ── */
.launch-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201,169,82,0.14);
  border: 1.5px solid rgba(201,169,82,0.32);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-inline: auto;
}

.launch-banner-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(201,169,82,0.20);
  color: var(--gold-light);
  flex-shrink: 0;
}

.launch-banner-content {
  flex: 1;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.launch-banner-content strong { color: var(--gold-light); font-weight: 700; }

/* Countdown timer dentro do banner */
.launch-banner-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(201,169,82,0.25);
  flex-shrink: 0;
}
.launch-timer-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gold-light);
  line-height: 1;
}
.launch-timer-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* ── Plan cards ── */
.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
  margin-top: 2rem;
  align-items: center;
  scroll-margin-top: 88px;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

@keyframes pro-glow {
  0%, 100% { box-shadow: 0 0 20px 4px rgba(212,175,55,0.45), 0 16px 48px rgba(0,0,0,0.40), 0 4px 12px rgba(0,0,0,0.20); }
  50%       { box-shadow: 0 0 44px 14px rgba(212,175,55,0.78), 0 16px 48px rgba(0,0,0,0.40), 0 4px 12px rgba(0,0,0,0.20); }
}

/* PRO — elevated */
.plan-card-pro {
  border: 2px solid #d4af37;
  box-shadow: 0 0 20px 4px rgba(212,175,55,0.45), 0 16px 48px rgba(0,0,0,0.40), 0 4px 12px rgba(0,0,0,0.20);
  animation: pro-glow 2.4s ease-in-out infinite;
  transform: scale(1.04);
  z-index: 2;
}
.plan-pro-value-note {
  font-size: 0.78rem;
  color: #d4af37;
  margin-top: -6px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.plan-card-pro:hover {
  transform: scale(1.05) translateY(-2px);
}
.plan-card-basico:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Badge */
.plan-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: var(--gold);
  color: var(--brand);
  padding: 0.3em 1.1em;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-card-header { margin-bottom: 1.5rem; }

.plan-card-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.plan-card-tagline {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.plan-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.plan-card-currency { font-size: 1.125rem; font-weight: 700; }
.plan-card-value    { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; }
.plan-card-period   { font-size: 0.875rem; font-weight: 600; color: var(--text-3); }

.plan-card-old {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.plan-card-old s { text-decoration-color: var(--text-3); }

/* Savings badge */
.plan-savings-badge {
  display: inline-flex;
  align-items: center;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 99px;
  padding: 0.22rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Features */
.plan-card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.4;
}

.pf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-bold   { font-weight: 600; }
.pf-bold strong { color: var(--text-1); }

.plan-card-footer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 0.875rem;
}

/* Pricing footnote */
.pricing-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2.5rem;
  line-height: 2;
}
.pricing-footnote strong { color: rgba(255,255,255,0.70); font-weight: 600; }

@media (max-width: 600px) {
  .plan-cards { grid-template-columns: 1fr; }
  .plan-card-pro { transform: none; margin-top: 1rem; }
  .plan-card-pro:hover { transform: translateY(-2px); }
  .launch-banner-timer { display: none; }
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.faq-item[open] {
  border-color: var(--brand-dim-md);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background 0.15s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item summary:hover { background: var(--bg-2); }

.faq-content {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
  padding: 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.faq-cta p { margin-bottom: 0.5rem; }
.faq-cta p:first-child {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-1);
}
.faq-cta p:nth-child(2) { color: var(--text-2); margin-bottom: 1.25rem; }

/* ─── FINAL CTA ─────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 14, 26, 0.92) 0%,
    rgba(15, 110, 86, 0.88) 60%,
    rgba(15, 110, 86, 0.75) 100%
  );
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.final-cta-eyebrow .eyebrow-dot { background: var(--gold); }

.final-cta-content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.final-cta-content h2 em {
  font-style: normal;
  color: var(--gold-light);
}

.final-cta-lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.final-cta-lead strong { color: rgba(255,255,255,0.92); }

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.final-cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.final-guarantee {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.final-guarantee svg { color: var(--gold-light); }
.final-guarantee strong { color: #fff; }

.final-cta-phone {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.final-cta-phone:hover { color: rgba(255,255,255,0.7); }
.final-cta-phone strong { color: rgba(255,255,255,0.8); }

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--brand);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer-brand .brand-mark strong { color: #fff; }
.footer-brand .brand-pro { background: rgba(255,255,255,0.12); color: var(--gold); }
.footer-brand .brand-product { color: rgba(255,255,255,0.4); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

/* Seals */
.footer-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.seal {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.seal svg { color: rgba(255,255,255,0.35); }

.seal strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.seal span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── MOBILE CTA BAR ────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.625rem;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
}

.mobile-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  color: #fff;
  background: var(--whatsapp);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  flex: 1;
  min-height: 48px;
  transition: background 0.15s;
}

.mobile-cta-whatsapp:hover { background: var(--whatsapp-hov); }

.mobile-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  flex: 1;
  min-height: 48px;
  transition: background 0.15s;
}

.mobile-cta-primary:hover { background: var(--brand-mid); }

/* ─── WHATSAPP FLOAT ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 99px;
  padding: 0.75rem 1.125rem 0.75rem 0.875rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
  .whatsapp-float { display: none; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DARK MODE OVERRIDES ───────────────────────────── */
[data-theme="dark"] .hero { background: var(--bg); }
[data-theme="dark"] .hero-offer-badge { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .testimonial-card { background: var(--surface); }
[data-theme="dark"] .problem-stat { background: var(--surface); }
[data-theme="dark"] .problem-featured { background: var(--surface); }
[data-theme="dark"] .calculator-wrap { background: var(--surface); }
[data-theme="dark"] .mini-review { background: var(--surface); }
[data-theme="dark"] .before-card,
[data-theme="dark"] .after-card { background: var(--surface); }
[data-theme="dark"] .step-badge { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .guarantee-card { background: var(--surface); }
[data-theme="dark"] .compare-table { background: var(--surface); }
[data-theme="dark"] .compare-table thead tr { background: var(--bg); }
[data-theme="dark"] .compare-table .c-label { background: var(--bg); }
[data-theme="dark"] .compare-table tbody tr:nth-child(even) .c-label { background: var(--surface-2); }
[data-theme="dark"] .plan-card { background: var(--surface); }
[data-theme="dark"] .faq-item { background: var(--surface); }
[data-theme="dark"] .faq-cta { background: var(--surface); }
[data-theme="dark"] .launch-banner { background: var(--brand-dim); }
[data-theme="dark"] .mobile-cta-bar { background: var(--surface); border-top-color: var(--border); }

/* ─── RESPONSIVE: Hero ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-image {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 5.5rem;
  }
}

@media (max-width: 600px) {
  :root {
    --section-py: 4rem;
  }
  .hero {
    padding: 4rem 0 3rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn { width: 100%; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .header-login-btn { display: none; }
  .section-header { margin-bottom: 2.5rem; }
  .testimonial-card { padding: 1.75rem; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .solution-item { gap: 1.5rem; }
  .solution-number { font-size: 2.5rem; }
  .final-cta-buttons .btn { width: 100%; }
}

/* ─── HERO PHONE HINT ───────────────────────────────── */
.hero-phone-hint {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.hero-phone-hint a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-phone-hint a:hover { color: var(--gold); }

/* ─── PRICING TRUST STRIP ───────────────────────────── */
.pricing-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}
.pts-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  color: var(--text-1);
}
.pts-item svg { color: var(--gold); flex-shrink: 0; }
.pts-item div { display: flex; flex-direction: column; }
.pts-item strong { font-size: 0.95rem; font-weight: 700; }
.pts-item span { font-size: 0.78rem; color: var(--text-3); }
.pts-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}
@media (max-width: 768px) {
  .pricing-trust-strip { gap: 0.25rem; padding: 1rem; }
  .pts-item { padding: 0.5rem 1rem; }
  .pts-divider { display: none; }
}
@media (max-width: 480px) {
  .pricing-trust-strip { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .pts-item { padding: 0; }
}

/* ─── CALC SUPPORT LINE ─────────────────────────────── */
.calc-support-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-3);
  text-decoration: none;
}
.calc-support-line:hover { color: var(--gold); }
.calc-support-line span { display: block; }
.calc-support-line strong { color: var(--text-2); font-weight: 700; font-size: 0.95rem; }

/* ─── SKIP TRIAL ────────────────────────────────────── */
.skip-trial {
  margin-top: 2.5rem;
}
.skip-trial-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.skip-trial-divider::before,
.skip-trial-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.skip-trial-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
}
.skip-trial-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 0.75rem;
}
.skip-trial-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}
.skip-trial-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.skip-trial-note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin: 0;
}
@media (max-width: 560px) {
  .skip-trial-box { padding: 1.5rem 1.25rem; }
  .skip-trial-btns .btn { width: 100%; }
}

/* ─── PRINT ─────────────────────────────────────────── */
@media print {
  .site-header,
  .mobile-cta-bar,
  .whatsapp-float,
  .hero-offer-badge,
  .hero-mini-review { display: none !important; }
}

/* ─── CAPTURA DE LEAD (HUBSPOT FORM) ────────────────── */
.lead-capture-section {
  background: var(--bg-subtle, #f8f9fa);
  padding: 80px 0;
  border-top: 1px solid var(--border, #e5e7eb);
}

.lead-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-wrap .section-header {
  margin-bottom: 32px;
}

.lead-form-wrap .section-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary, #111);
  margin: 12px 0 8px;
}

.lead-form-wrap .section-header p {
  color: var(--text-muted, #6b7280);
  font-size: 0.95rem;
}

#hubspot-lead-form {
  text-align: left;
}
