/* ============================================
   LaurinhIA — Landing Page
   Dark theme + teal accent + thematic colored cards
   ============================================ */

:root {
  /* Backgrounds */
  --bg: #0a1228;
  --bg-2: #0c1a36;
  --bg-3: #111e3a;
  --bg-darker: #060d20;

  /* Teal/Cyan accent */
  --teal: #2dd4bf;
  --teal-light: #5eead4;
  --teal-bright: #14e8c8;
  --teal-dark: #14b8a6;
  --teal-darker: #0d9488;
  --teal-soft: rgba(45, 212, 191, .14);
  --teal-glow: rgba(45, 212, 191, .35);

  /* Theme accents */
  --rose: #f87171;
  --rose-light: #fca5a5;
  --rose-soft: rgba(248, 113, 113, .12);
  --rose-glow: rgba(248, 113, 113, .25);

  --amber: #fbbf24;
  --amber-light: #fcd34d;
  --amber-soft: rgba(251, 191, 36, .12);
  --amber-glow: rgba(251, 191, 36, .25);

  --purple: #a855f7;
  --purple-light: #c084fc;
  --purple-soft: rgba(168, 85, 247, .12);
  --purple-glow: rgba(168, 85, 247, .25);

  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-soft: rgba(245, 158, 11, .12);

  /* Text */
  --text: #f8fafc;
  --text-soft: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Surfaces (glassmorphic) */
  --surface: rgba(255, 255, 255, .03);
  --surface-2: rgba(255, 255, 255, .05);
  --surface-3: rgba(255, 255, 255, .08);
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .12);

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --section-py: clamp(56px, 7vw, 96px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,.25);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.35);
  --shadow-xl: 0 25px 60px rgba(0,0,0,.45);
  --shadow-teal: 0 10px 40px -10px rgba(45, 212, 191, .55);
  --shadow-teal-strong: 0 12px 50px -8px rgba(45, 212, 191, .7);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--teal); color: var(--bg); }

/* ============= LAYOUT ============= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section { padding: var(--section-py) 0; position: relative; }
.section-bg-soft {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(45, 212, 191, .06), transparent 60%);
}
.section-bg-trafego {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(248, 113, 113, .04), transparent 60%);
}
.section-bg-gold {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(251, 191, 36, .06), transparent 60%);
}
.section-future {
  background: var(--bg-darker);
  position: relative;
}
.section-future::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(45, 212, 191, .05), transparent 60%);
  pointer-events: none;
}
.section-cta-final {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(45, 212, 191, .15), transparent 70%);
  pointer-events: none;
}

/* ============= HEADER ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 18, 40, .8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
  position: relative;
}
.nav {
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav a:hover { color: var(--text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-actions .btn {
  white-space: nowrap;
}
.header-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.header-link:hover { color: var(--text); }

@media (max-width: 1024px) {
  .nav { display: none; }
  .header-link { display: none; }
}

/* ============= LOGO ============= */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: var(--bg);
  box-shadow: var(--shadow-teal);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-accent { color: var(--teal); }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
}
.btn svg { transition: transform var(--transition); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: var(--bg);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-strong);
  filter: brightness(1.06);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-xl { padding: 20px 42px; font-size: 17px; }

.btn-secondary {
  background: transparent;
  color: var(--teal-light);
  border: 1px solid rgba(45, 212, 191, .35);
}
.btn-secondary:hover {
  border-color: var(--teal);
  background: rgba(45, 212, 191, .08);
  color: var(--teal-bright);
  transform: translateY(-2px);
}
.btn-secondary svg { color: currentColor; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-content .btn-row { justify-content: flex-start; margin-top: 0; }
.cta-final-block .btn-row { justify-content: center; }
section .container > div[style*="text-align: center"] .btn-row,
.section .container > div[style*="text-align: center"] .btn-row { justify-content: center; }
@media (max-width: 600px) {
  .btn-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-row .btn { width: 100%; justify-content: center; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 84px) 0 clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 20%, rgba(45, 212, 191, .14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(45, 212, 191, .08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }
.hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--text);
  margin: 22px 0 22px;
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 560px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.hero-subtext {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.55;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45,212,191,.25), rgba(255,255,255,.05));
  padding: 1px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.6),
    0 0 60px -15px rgba(45, 212, 191, .2);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-2xl) - 1px);
  display: block;
}
.image-card-hero { max-width: 460px; aspect-ratio: 1 / 1.05; }

/* Image floating label (overlay) */
.image-floating-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(15, 23, 42, .82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  z-index: 2;
  max-width: 78%;
}
.image-floating-label strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.image-floating-label span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}
.image-floating-label-teal {
  border-color: rgba(45, 212, 191, .35);
}
.image-floating-label-teal strong { color: var(--teal-light); }
.image-floating-label-teal-solid {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  border-color: var(--teal);
  box-shadow: 0 10px 30px -10px var(--teal-glow);
}
.image-floating-label-teal-solid strong { color: var(--bg); }
.image-floating-label-teal-solid span { color: rgba(10, 18, 40, .75); }

/* Hero floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, .8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  border: 1px solid var(--border-strong);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.floating-card strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.3;
}
.floating-card span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}
.floating-card-1 {
  top: 18%;
  left: -10%;
  animation: float 6s ease-in-out infinite;
}
.floating-card-2 {
  bottom: 22%;
  right: -10%;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
  max-width: 220px;
}
.floating-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.floating-icon svg { width: 16px; height: 16px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-content { max-width: 100%; }
  .image-card { max-width: 380px; }
  .floating-card-1 { left: 0%; }
  .floating-card-2 { right: 0%; }
}

/* ============= BADGES & EYEBROW ============= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
}
.badge-light {
  background: var(--surface-2);
  color: var(--teal-light);
  border: 1px solid rgba(45, 212, 191, .25);
  backdrop-filter: blur(8px);
}
.badge-light svg { color: var(--teal); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--teal-light); }
.eyebrow-rose { color: var(--rose); }
.eyebrow-gold { color: var(--gold); }

/* ============= SECTION HEADS ============= */
.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section h3 {
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}

/* ============= HIGHLIGHTS ============= */
.highlight {
  color: var(--teal);
  font-weight: 800;
}

/* Gradient highlights (signature visual from reference) */
.highlight-grad-teal {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.highlight-grad-rose {
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.highlight-grad-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.highlight-warn { color: var(--amber); font-weight: 800; }
.muted { color: var(--text-muted); font-weight: 600; }
.muted-soft { color: var(--text-muted); font-weight: 500; }
.muted-line {
  color: var(--text-muted);
  font-size: 15px;
  margin: 8px 0;
}

/* ============= TWO COLUMN ============= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 0; }
  .image-card { max-width: 420px; margin: 0 auto; }
}
.two-col-image { display: flex; justify-content: center; }
.two-col-text .eyebrow { margin-bottom: 14px; }
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text .lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}
.two-col-text p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15.5px;
}
.two-col-text p strong { color: var(--text); font-weight: 600; }
.lead-center {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Check-list em duas colunas (para 5+ itens curtos) */
.check-list-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
@media (max-width: 480px) {
  .check-list-2col { grid-template-columns: 1fr; }
}

/* ============= LISTAS ============= */
.check-list, .dash-list, .dash-list-soft, .cross-list, .bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.check-list li, .dash-list li, .dash-list-soft li, .cross-list li, .bullet-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dd4bf'><path d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/></svg>");
  background-position: center;
  background-size: 14px;
  background-repeat: no-repeat;
}
.check-list-sm li { font-size: 14px; padding-left: 28px; }
.check-list-sm li::before { width: 18px; height: 18px; background-size: 12px; }

.dash-list-soft li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
}

.cross-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
}

/* ============= PARADOX ============= */
.paradox-block {
  margin-top: 80px;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.paradox-block .lead-center { font-size: 22px; }
.paradox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}
.paradox-item {
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--text-soft);
  font-size: 14.5px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.paradox-item:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-light);
  transform: translateY(-2px);
}

/* Callouts */
.callout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
}
.callout p { margin: 0; color: var(--text); }
.callout p strong { font-weight: 700; }
.callout svg { flex-shrink: 0; }
.callout-amber {
  background: var(--amber-soft);
  border: 1px solid rgba(251, 191, 36, .25);
  color: var(--amber);
}
.callout-amber p strong { color: var(--amber-light); }

/* ============= PROBLEM CARDS (colored thematic) ============= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 64px;
}
.problem-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) {
  .problem-grid-3 { grid-template-columns: 1fr; }
}
.problem-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .problem-grid-2x2 { grid-template-columns: 1fr; }
}

.problem-card {
  padding: 30px 28px;
  border-radius: var(--radius-2xl);
  border: 1px solid;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, var(--card-glow, transparent) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
}
.problem-card:hover { transform: translateY(-4px); }

.problem-card.theme-rose {
  --card-glow: rgba(248, 113, 113, .14);
  background: linear-gradient(180deg, rgba(248,113,113,.04) 0%, rgba(15,23,42,.4) 100%);
  border-color: rgba(248, 113, 113, .22);
}
.problem-card.theme-rose .problem-icon { background: rgba(248, 113, 113, .14); color: var(--rose); }
.problem-card.theme-rose:hover { border-color: rgba(248, 113, 113, .4); }

.problem-card.theme-amber {
  --card-glow: rgba(251, 191, 36, .14);
  background: linear-gradient(180deg, rgba(251,191,36,.04) 0%, rgba(15,23,42,.4) 100%);
  border-color: rgba(251, 191, 36, .22);
}
.problem-card.theme-amber .problem-icon { background: rgba(251, 191, 36, .14); color: var(--amber); }
.problem-card.theme-amber:hover { border-color: rgba(251, 191, 36, .4); }

.problem-card.theme-purple {
  --card-glow: rgba(168, 85, 247, .14);
  background: linear-gradient(180deg, rgba(168,85,247,.04) 0%, rgba(15,23,42,.4) 100%);
  border-color: rgba(168, 85, 247, .22);
}
.problem-card.theme-purple .problem-icon { background: rgba(168, 85, 247, .14); color: var(--purple-light); }
.problem-card.theme-purple:hover { border-color: rgba(168, 85, 247, .4); }

.problem-card.theme-gold {
  --card-glow: rgba(251, 191, 36, .12);
  background: linear-gradient(180deg, rgba(251,191,36,.04) 0%, rgba(15,23,42,.4) 100%);
  border-color: rgba(251, 191, 36, .22);
}
.problem-card.theme-gold .problem-icon { background: rgba(251, 191, 36, .14); color: var(--gold-light); }
.problem-card.theme-gold:hover { border-color: rgba(251, 191, 36, .4); }

.problem-card.theme-teal {
  --card-glow: rgba(45, 212, 191, .14);
  background: linear-gradient(180deg, rgba(45,212,191,.04) 0%, rgba(15,23,42,.4) 100%);
  border-color: rgba(45, 212, 191, .25);
}
.problem-card.theme-teal .problem-icon { background: rgba(45, 212, 191, .14); color: var(--teal-light); }
.problem-card.theme-teal:hover { border-color: rgba(45, 212, 191, .45); }

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.problem-icon svg { width: 22px; height: 22px; }
.problem-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  background: rgba(251, 191, 36, .12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.problem-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.problem-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.35;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.problem-card p strong { color: var(--text); font-weight: 600; }
.problem-card .card-highlight {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-weight: 500;
  font-size: 14.5px;
}

/* ============= TRAFEGO / PROBLEM STATEMENT ============= */
.problem-statement-block {
  text-align: center;
  margin: 48px auto 64px;
  max-width: 820px;
}
.problem-statement-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.problem-statement-text {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.022em;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Comparison grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto 56px;
}
@media (max-width: 880px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comparison-divider { transform: rotate(90deg); justify-self: center; }
}
.comparison-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}
.comparison-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.comparison-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.comparison-icon-bad {
  background: rgba(248, 113, 113, .12);
  color: var(--rose);
}
.comparison-divider {
  display: grid;
  place-items: center;
  color: var(--text-dim);
  width: 40px;
}
.comparison-divider svg { width: 24px; height: 24px; }

/* Result box */
.result-box {
  padding: 40px 36px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  position: relative;
}
.result-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, rgba(248,113,113,.06), transparent);
  pointer-events: none;
}
.result-box > * { position: relative; }
.result-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rose-light);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--rose-soft);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.result-headline {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.result-headline strong { color: var(--rose-light); }
.result-final {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 14px;
}

/* ============= APRESENTANDO ============= */
.differential-block {
  margin-top: 80px;
  text-align: center;
  padding: 52px 40px;
  background:
    linear-gradient(135deg, rgba(45,212,191,.08), rgba(45,212,191,.02)),
    var(--surface);
  border: 1px solid rgba(45, 212, 191, .25);
  border-radius: var(--radius-2xl);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.differential-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--teal-glow), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.4;
}
.differential-block > * { position: relative; }
.differential-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 24px;
}
.differential-statement {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.number-big {
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-block;
  text-shadow: 0 0 60px var(--teal-glow);
}

.understands {
  margin-top: 64px;
  text-align: center;
}
.understands-intro {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.understands-intro strong {
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
}
.understands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}
.understands-item {
  padding: 11px 22px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-soft);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.understands-item:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: var(--teal-soft);
  transform: translateY(-2px);
}

/* ============= NÃO É FERRAMENTA ============= */
.solution-banner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.solution-banner h2 { margin-bottom: 24px; }
.solution-banner .lead-center {
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 500;
  margin: 24px auto 0;
}
.solution-banner .bullet-list {
  text-align: left;
  max-width: 540px;
  margin: 24px auto 32px;
}
.solution-banner .bullet-list li {
  font-size: 16px;
  color: var(--text-soft);
}
.solution-final {
  margin-top: 40px;
  padding: 36px 32px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
}
.solution-final-intro {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 15px;
}
.solution-statement {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============= JORNADA 360º ============= */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}
.journey-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.journey-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  background: var(--surface-2);
  box-shadow: 0 25px 50px -10px rgba(0,0,0,.5), 0 0 30px -10px var(--teal-glow);
}
.journey-card-highlight {
  background:
    linear-gradient(180deg, rgba(45,212,191,.08), transparent 70%),
    var(--surface-2);
  border-color: rgba(45, 212, 191, .25);
  box-shadow: 0 0 30px -15px var(--teal-glow);
}
.journey-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: var(--bg);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-teal);
}
.journey-icon svg { width: 24px; height: 24px; }
.journey-card h3 { font-size: 22px; }
.journey-tagline {
  color: var(--teal-light);
  font-size: 14.5px;
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 500;
}
.journey-where {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.journey-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin: 14px 0;
  line-height: 1.6;
  font-style: italic;
}
.journey-results {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.results-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 14px;
}

/* ============= GOLD (BASE PACIENTES) ============= */
.gold-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.gold-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}
.gold-pill {
  padding: 9px 18px;
  background: var(--surface-2);
  border: 1px solid rgba(251, 191, 36, .25);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  backdrop-filter: blur(10px);
}
.gold-statement {
  margin-top: 28px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.gold-statement strong {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* ============= FUTURO ============= */
.future-block {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.future-block .eyebrow { color: var(--teal-light); }
.future-content { margin-top: 44px; }
.future-row { margin-bottom: 0; }
.future-row .cross-list {
  max-width: 540px;
  margin: 16px auto 0;
  text-align: left;
}
.future-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 48px 0;
}
.future-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.future-pillar {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.future-pillar:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.future-pillar span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.future-pillar strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============= DIFERENCIAL ============= */
.diff-final {
  margin-top: 32px;
  padding: 24px 26px;
  background: var(--teal-soft);
  border: 1px solid rgba(45, 212, 191, .25);
  border-radius: var(--radius-md);
}
.diff-final-intro {
  color: var(--text-muted) !important;
  margin-bottom: 8px !important;
  font-weight: 600;
  font-size: 14px;
}
.diff-statement {
  font-size: 18px;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.5;
  margin: 0 !important;
}
.diff-statement strong { color: var(--teal-light); font-weight: 800; }

/* ============= FEATURE PILLS 2x2 ============= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.feature-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.feature-pill {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.feature-pill:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.feature-pill svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}
.feature-pill-lg {
  padding: 16px 18px;
  font-size: 14px;
}
.feature-pill-lg svg { width: 20px; height: 20px; }
.feature-grid-compact .feature-pill {
  padding: 10px 14px;
  font-size: 13px;
  justify-content: center;
}

/* ============= INFRA FINAL ============= */
.infra-final {
  margin-top: 32px;
  padding: 26px 28px;
  background: var(--teal-soft);
  border: 1px solid rgba(45, 212, 191, .25);
  border-radius: var(--radius-lg);
}
.infra-intro {
  color: var(--text-muted) !important;
  margin-bottom: 8px !important;
  font-size: 15px;
}
.infra-statement {
  font-size: 18px;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.5;
  margin: 0 !important;
}
.infra-statement strong { color: var(--teal-light); font-weight: 800; }

/* ============= DISCLAIMER ============= */
.disclaimer-inline {
  margin-top: 24px;
  font-size: 12.5px !important;
  color: var(--text-dim) !important;
  font-style: italic;
}

/* ============= CTA FINAL ============= */
.cta-final-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.alert-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose-soft);
  border: 1px solid rgba(248, 113, 113, .25);
  color: var(--rose-light);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 28px;
  text-align: left;
  max-width: 100%;
}
.alert-pill svg { color: var(--rose); flex-shrink: 0; }

.cta-final-block h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: -0.022em;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.cta-link {
  margin-top: 22px;
  font-size: 14px;
}
.cta-link a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(148, 163, 184, .3);
  transition: all var(--transition);
}
.cta-link a:hover {
  color: var(--teal-light);
  text-decoration-color: var(--teal);
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-muted);
  padding-top: 72px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  max-width: 340px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}
.footer-cols h4 {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-cols a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 13px;
  text-align: center;
  color: var(--text-dim);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= CHAT FLOAT ============= */
.chat-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  box-shadow: 0 12px 40px -8px var(--teal-glow);
  display: grid;
  place-items: center;
  transition: all var(--transition);
}
.chat-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 50px -8px var(--teal-glow);
}
.chat-float img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============= REVEAL ANIMATIONS ============= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============= MOBILE TWEAKS ============= */
@media (max-width: 640px) {
  body::before { background-size: 40px 40px; }
  .hero { padding-top: 32px; }
  .floating-card { padding: 10px 14px; max-width: 70%; }
  .floating-card-1 { left: 0; }
  .floating-card-2 { right: 0; }
  .btn-lg, .btn-xl { padding: 16px 26px; font-size: 15px; }
  .chat-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .chat-float img { width: 38px; height: 38px; }
  .problem-grid { gap: 16px; }
  .problem-card { padding: 26px 22px; }
  .differential-block, .solution-final, .result-box { padding: 32px 22px; }
  .feature-grid { gap: 10px; }
  .feature-pill { padding: 10px 12px; font-size: 13px; }
  .feature-grid-compact .feature-pill { padding: 8px 10px; font-size: 12px; }
  .cta-trust { gap: 16px; }
  .image-floating-label { left: 14px; bottom: 14px; padding: 10px 14px; }
  .image-floating-label strong { font-size: 13px; }
  .image-floating-label span { font-size: 11.5px; }
}

/* ============================================================
   ============= V2 COMPONENTES ADICIONAIS ====================
   ============================================================ */

/* ===== STEP PILLS (numbered process) ===== */
.step-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 9px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.step-pill-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-light);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== STAT CARDS (big colored numbers — section 3 v2) ===== */
.stat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .stat-grid-3 { grid-template-columns: 1fr; }
}
.stat-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid;
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, var(--card-glow, transparent), transparent);
  opacity: 0.6;
  pointer-events: none;
}
.stat-card > * { position: relative; z-index: 1; }
.stat-card.theme-rose {
  --card-glow: rgba(248,113,113,.14);
  background: linear-gradient(180deg, rgba(248,113,113,.04), rgba(15,23,42,.4));
  border-color: rgba(248, 113, 113, .22);
}
.stat-card.theme-amber {
  --card-glow: rgba(251,191,36,.14);
  background: linear-gradient(180deg, rgba(251,191,36,.04), rgba(15,23,42,.4));
  border-color: rgba(251, 191, 36, .22);
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.stat-card.theme-rose .stat-icon { background: rgba(248,113,113,.14); color: var(--rose); }
.stat-card.theme-amber .stat-icon { background: rgba(251,191,36,.14); color: var(--amber); }
.stat-icon svg { width: 26px; height: 26px; }
.stat-number {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.stat-card.theme-rose .stat-number {
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-card.theme-amber .stat-number {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-text-big {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 8px;
}
.stat-card p:last-child { margin-bottom: 0; }
.stat-card-subtle {
  font-size: 13px !important;
  color: var(--text-dim) !important;
  margin-top: 10px !important;
  font-style: italic;
}

/* ===== SCENARIO COMPARISON (Cenário Atual vs Com LaurinhIA) ===== */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .scenario-grid { grid-template-columns: 1fr; }
}
.scenario-card {
  padding: 38px 32px;
  border-radius: var(--radius-2xl);
  border: 1px solid;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.scenario-card-bad {
  background: linear-gradient(180deg, rgba(248,113,113,.05) 0%, rgba(15,23,42,.3) 100%);
  border-color: rgba(248,113,113,.22);
}
.scenario-card-good {
  background: linear-gradient(180deg, rgba(45,212,191,.06) 0%, rgba(15,23,42,.3) 100%);
  border-color: rgba(45,212,191,.28);
}
.scenario-tag {
  display: inline-block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.scenario-card-bad .scenario-tag {
  background: rgba(248,113,113,.12);
  color: var(--rose-light);
  border: 1px solid rgba(248,113,113,.25);
}
.scenario-card-good .scenario-tag {
  background: rgba(45,212,191,.12);
  color: var(--teal-light);
  border: 1px solid rgba(45,212,191,.3);
}
.scenario-card h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 16px;
}
.scenario-card p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 15px;
}
.scenario-card p strong { color: var(--text); font-weight: 600; }
.scenario-list {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scenario-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.scenario-card-bad .scenario-list li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(248,113,113,.14);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.scenario-card-good .scenario-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dd4bf'><path d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/></svg>");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}
.scenario-result {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.scenario-result strong { color: var(--text); font-weight: 600; }
.scenario-card-good .scenario-result strong { color: var(--teal-light); }

/* ===== ROI CLOSING (Section 7 v2) ===== */
.roi-closing {
  margin-top: 48px;
  padding: 40px 36px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}
.roi-closing h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 22px;
  font-weight: 800;
  line-height: 1.3;
}
.roi-closing p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 15.5px;
}
.roi-closing .check-list {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

/* ===== DELIVERABLES CARD (Section 8 v2 — what you receive) ===== */
.deliverables-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 44px;
  background:
    linear-gradient(135deg, rgba(45,212,191,.07), rgba(45,212,191,.02)),
    var(--surface);
  border: 1px solid rgba(45,212,191,.28);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.deliverables-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--teal-glow), transparent 60%);
  transform: translateX(-50%);
  opacity: 0.3;
  pointer-events: none;
}
.deliverables-card > * { position: relative; }
.deliverables-card .deliverables-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--text);
}
.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
@media (max-width: 600px) {
  .deliverables-list { grid-template-columns: 1fr; }
  .deliverables-card { padding: 36px 24px; }
}
.deliverables-list li {
  font-size: 14.5px;
  color: var(--text-soft);
}

/* ===== GUARANTEE OPTIONS (Section 11 v2) ===== */
.guarantee-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 32px 0;
}
@media (max-width: 880px) {
  .guarantee-options { grid-template-columns: 1fr; }
}
.guarantee-option {
  padding: 32px 28px;
  background:
    linear-gradient(180deg, rgba(45,212,191,.06), rgba(15,23,42,.3)),
    var(--surface);
  border: 1px solid rgba(45, 212, 191, .25);
  border-radius: var(--radius-xl);
  position: relative;
  backdrop-filter: blur(10px);
}
.guarantee-num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: var(--bg);
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-teal);
}
.guarantee-option h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
}
.guarantee-option p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

.guarantee-statement {
  margin-top: 32px;
  padding: 26px 28px;
  background: var(--teal-soft);
  border: 1px solid rgba(45,212,191,.25);
  border-radius: var(--radius-lg);
}
.guarantee-statement-intro {
  color: var(--text-muted) !important;
  margin-bottom: 8px !important;
  font-size: 15px !important;
}
.guarantee-commitment {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--text) !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.guarantee-commitment strong { color: var(--teal-light); }

.guarantee-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ===== PROMO BAND (small mid-section) ===== */
.promo-band {
  padding: 28px 36px;
  background:
    linear-gradient(135deg, rgba(45,212,191,.08), rgba(45,212,191,.02)),
    var(--surface-2);
  border: 1px solid rgba(45,212,191,.25);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}
.promo-band-brand {
  font-weight: 800;
  font-size: 18px;
  color: var(--teal-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
@media (max-width: 720px) {
  .promo-band {
    flex-direction: column;
    gap: 18px;
  }
  .promo-band-brand {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 14px;
  }
}
.promo-band-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex: 1;
  justify-content: space-around;
}
.promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.promo-feature-emoji { font-size: 18px; }

/* ===== FAQ ACCORDION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
  backdrop-filter: blur(10px);
}
.faq-item:hover {
  border-color: rgba(45,212,191,.3);
}
.faq-item.is-open {
  border-color: rgba(45,212,191,.35);
  background: var(--surface-2);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 300ms cubic-bezier(.4,0,.2,1), color var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-answer-inner p { margin-bottom: 10px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-answer-inner ul li {
  position: relative;
  padding-left: 18px;
}
.faq-answer-inner ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
}

/* ===== CHECK-LIST IN 2 COL FOR MANIFESTOS ===== */
.check-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  margin: 18px 0;
}
@media (max-width: 600px) {
  .check-list-grid { grid-template-columns: 1fr; }
}
.check-list-grid li {
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 15px;
}
.check-list-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dd4bf'><path d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/></svg>");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}

/* ===== PROBLEM CARD - extra subhead inside (for "Base Inativa" with mini-h3) ===== */
.problem-card .problem-subhead {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple-light);
  margin: 8px 0 12px;
  line-height: 1.3;
}
.problem-card.theme-rose .problem-subhead { color: var(--rose-light); }
.problem-card.theme-amber .problem-subhead { color: var(--amber-light); }
.problem-card.theme-gold .problem-subhead { color: var(--gold-light); }

.problem-card-list {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.problem-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.problem-card-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--text-dim);
}

/* ===== APRESENTANDO V2 (centered comparison block) ===== */
.apresentando-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.apresentando-block .lead-center {
  margin-top: 32px;
  margin-bottom: 12px;
}
.apresentando-block .cross-list,
.apresentando-block .check-list-grid {
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.apresentando-cta { margin-top: 36px; }

/* ===== MUTED-LARGE for transitional text ===== */
.muted-large {
  color: var(--text-muted);
  font-size: 16px;
  margin: 12px 0;
}

/* ============================================================
   ============= V3 COMPONENTES ADICIONAIS ====================
   ============================================================ */

/* Hero — terceiro floating card */
.floating-card-3 {
  position: absolute;
  bottom: 6%;
  left: -8%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, .8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  border: 1px solid var(--border-strong);
  z-index: 2;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -1.5s;
}
.floating-card-3 strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.3;
}
.floating-card-3 span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}

/* Repositiona cards para 3 cards distribuídos */
.has-3-cards .floating-card-1 {
  top: 14%;
  left: -10%;
}
.has-3-cards .floating-card-2 {
  top: 48%;
  right: -10%;
  bottom: auto;
  max-width: 230px;
}

@media (max-width: 980px) {
  .has-3-cards .floating-card-1 { left: 0; }
  .has-3-cards .floating-card-2 { right: 0; }
  .floating-card-3 { left: 0; }
}
@media (max-width: 640px) {
  .floating-card-3 { display: none; }
}

/* Mini-bullets de autoridade no hero (✓ inline mais compactos) */
.hero-mini-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-mini-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.45;
  font-size: 14.5px;
}
.hero-mini-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dd4bf'><path d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/></svg>");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}

/* Trust line inline (1 linha com bullets separados por ponto) */
.trust-inline {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-inline-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* IMPACT CALLOUT (transição problema → solução) */
.impact-callout {
  margin-top: 64px;
  padding: 44px 40px;
  background:
    linear-gradient(135deg, rgba(45,212,191,.08), rgba(45,212,191,.02)),
    var(--surface);
  border: 1px solid rgba(45, 212, 191, .28);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.impact-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--teal-glow), transparent 60%);
  transform: translateX(-50%);
  opacity: 0.35;
  pointer-events: none;
}
.impact-callout > * { position: relative; }
.impact-intro {
  font-size: 16.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.impact-intro strong { color: var(--text); font-weight: 600; }
.impact-bridge {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
}
.impact-statement {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto;
}
.impact-statement strong { color: var(--teal-light); font-weight: 800; }

/* Hero h1 V3 — modifier para headline em duas partes (subordinada + principal) */
.hero h1.h1-split {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
}
.hero h1.h1-split .h1-pre {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78em;
  margin-bottom: 10px;
}

/* ============= TIMELINE (Bloco 5 V3 — jornada do paciente) ============= */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 0 0 64px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal-soft) 100%);
}

.timeline-item {
  position: relative;
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:hover {
  border-color: rgba(45, 212, 191, .35);
  background: var(--surface-2);
  transform: translateX(4px);
}

.timeline-num {
  position: absolute;
  left: -64px;
  top: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: var(--bg);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: var(--shadow-teal);
  z-index: 1;
  border: 3px solid var(--bg);
}

.timeline-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.timeline-item p:last-child { margin-bottom: 0; }
.timeline-item p strong { color: var(--text); font-weight: 600; }

@media (max-width: 640px) {
  .timeline { padding-left: 52px; }
  .timeline::before { left: 19px; }
  .timeline-num {
    left: -52px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .timeline-item { padding: 22px 22px; }
}

/* Card example (Bloco 6 V3 — destaque "Exemplo:" no Upsell card) */
.card-example {
  margin-top: 14px !important;
  padding: 12px 16px;
  background: rgba(251, 191, 36, .08);
  border: 1px solid rgba(251, 191, 36, .2);
  border-radius: var(--radius-sm);
  font-size: 14px !important;
  color: var(--text-soft) !important;
  line-height: 1.5 !important;
}
.card-example strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* ============= AUTHORITY QUOTE (Bloco 7 V3 — citação de fechamento) ============= */
.authority-quote {
  margin-top: 64px;
  padding: 64px 56px;
  background:
    linear-gradient(135deg, rgba(45,212,191,.1), rgba(45,212,191,.02)),
    var(--surface);
  border: 1px solid rgba(45, 212, 191, .3);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.authority-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 200px;
  font-family: Georgia, serif;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}
.authority-quote::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--teal-glow), transparent 60%);
  transform: translateX(-50%);
  opacity: 0.25;
  pointer-events: none;
}
.authority-quote > * { position: relative; z-index: 1; }
.authority-quote-text {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.authority-quote-text strong { color: var(--teal-light); font-weight: 800; }
.authority-quote-meta {
  display: inline-block;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 640px;
}
.authority-quote-meta strong { color: var(--text); font-weight: 600; }

@media (max-width: 640px) {
  .authority-quote { padding: 44px 28px; }
  .authority-quote::before { font-size: 140px; left: 16px; top: -10px; }
}

/* ============= SCENARIO LIST DETAILED (Bloco 9 V3 — Antes vs Depois) ============= */
.scenario-list-detailed li {
  padding-left: 32px;
  margin-bottom: 18px;
  line-height: 1.4;
}
.scenario-list-detailed li:last-child { margin-bottom: 0; }
.scenario-list-detailed li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.scenario-list-detailed li span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}
.scenario-card-bad .scenario-list-detailed li::before {
  width: 22px;
  height: 22px;
  font-size: 12px;
}
.scenario-card-good .scenario-list-detailed li::before {
  width: 22px;
  height: 22px;
  background-size: 14px;
}

/* ============= POSITIONING BOX (Bloco 10 V3 — manifesto central) ============= */
.positioning-box {
  margin: 48px auto;
  padding: 52px 48px;
  background:
    linear-gradient(135deg, rgba(45,212,191,.1), rgba(45,212,191,.02)),
    var(--surface);
  border: 1px solid rgba(45, 212, 191, .3);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 760px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.positioning-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--teal-glow), transparent 60%);
  transform: translateX(-50%);
  opacity: 0.3;
  pointer-events: none;
}
.positioning-box > * { position: relative; z-index: 1; }

.positioning-lead {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.positioning-intro {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
}
.positioning-intro strong { color: var(--teal-light); font-weight: 700; }

.positioning-list {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.positioning-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.5;
}
.positioning-list li:last-child { margin-bottom: 0; }
.positioning-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dd4bf'><path d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 1 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/></svg>");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}

@media (max-width: 640px) {
  .positioning-box { padding: 40px 26px; }
}

/* ============= CLOSING STATEMENT (Bloco 10 V3 — quote de fechamento com divisores) ============= */
.closing-statement {
  text-align: center;
  margin: 48px auto;
  max-width: 720px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  position: relative;
  padding: 28px 0;
}
.closing-statement::before {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin: 0 auto 28px;
}
.closing-statement::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin: 28px auto 0;
}
.closing-statement strong {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* CTA secondary line (Bloco 10 V3 — texto pequeno abaixo do CTA principal) */
.cta-secondary-line {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.cta-secondary-line .trust-inline-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* ============================================================
   ============= V3 VIDEOS — section-head split + media =======
   ============================================================ */

/* Vídeo dentro do image-card (mesmas propriedades da img) */
.image-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-2xl) - 1px);
  display: block;
}

/* Section head dividida em duas colunas (head + video lado a lado) */
.section-head-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.section-head-split .section-head {
  margin-bottom: 0;
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.section-head-split .section-head .eyebrow,
.section-head-split .section-head h2,
.section-head-split .section-head p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.section-head-split .section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
}
.section-head-split .video-wrap {
  display: flex;
  justify-content: center;
}
.section-head-split.reverse > :first-child { order: 2; }

@media (max-width: 980px) {
  .section-head-split {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .section-head-split.reverse > :first-child { order: 0; }
  .section-head-split .image-card { max-width: 380px; }
}

/* Video accent menor (Bloco 10 — comemoração antes do CTA) */
.cta-video-accent {
  margin: 32px auto 8px;
  max-width: 280px;
  width: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45,212,191,.4), rgba(255,255,255,.1));
  padding: 1px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.6),
    0 0 60px -15px rgba(45, 212, 191, .35);
  position: relative;
  aspect-ratio: 1 / 1;
}
.cta-video-accent video {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-2xl) - 1px);
  display: block;
  object-fit: cover;
}
.cta-video-accent::after {
  content: '🎉';
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 24px;
  background: var(--bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

@media (max-width: 640px) {
  .cta-video-accent { max-width: 220px; }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
  display: inline-flex;
  margin-right: 10px;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-soft);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .15s ease;
}

.lang-switcher-btn:hover {
  border-color: rgba(45, 212, 191, .35);
  background: rgba(45, 212, 191, .06);
  color: var(--text);
}

.lang-switcher-btn .lang-globe {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--teal-light);
}

.lang-switcher-btn .lang-code {
  text-transform: uppercase;
}

.lang-switcher-btn .lang-caret {
  width: 12px;
  height: 12px;
  opacity: .7;
  transition: transform .2s ease;
}

.lang-switcher.is-open .lang-switcher-btn {
  border-color: rgba(45, 212, 191, .5);
  background: rgba(45, 212, 191, .08);
  color: var(--text);
}

.lang-switcher.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: linear-gradient(180deg, #0e1a36 0%, #0a1228 100%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .55), 0 0 0 1px rgba(45, 212, 191, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1100;
  list-style: none;
  margin: 0;
}

.lang-switcher.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--text-soft);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  transition: background .15s ease, color .15s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.lang-option.is-active {
  background: rgba(45, 212, 191, .1);
  color: var(--teal-light);
  font-weight: 600;
}

.lang-option-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-option-name {
  flex: 1;
}

.lang-option-check {
  width: 14px;
  height: 14px;
  color: var(--teal-light);
  opacity: 0;
  transition: opacity .15s ease;
}

.lang-option.is-active .lang-option-check {
  opacity: 1;
}

/* Compact on small screens — hide label text, keep icon + code */
@media (max-width: 640px) {
  .lang-switcher { margin-right: 6px; }
  .lang-switcher-btn {
    padding: 8px 10px;
    font-size: 12px;
    gap: 5px;
  }
  .lang-dropdown {
    min-width: 200px;
    right: -10px;
  }
}
