/* =====================================================================
   PULSO — Design System V2
   Identidade: pulso-landing (light + glassmorphism + teal)
   Componentes: inspirados na V4 Company
   ===================================================================== */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Tokens ─── */
:root {
  /* Cores Pulso (pulso-landing) */
  --primary: #2CB1BC;
  --primary-dark: #229DA7;
  --primary-light: #5CC8D0;
  --primary-glow: #33cfd3;
  --midnight: #102A43;
  --midnight-deep: #0d1f33;
  --midnight-2: #153550;
  --text: #102A43;
  --text-muted: #486581;
  --text-soft: rgba(72, 101, 129, 0.7);
  --bg: #F7F9FC;
  --bg-2: rgba(247, 249, 252, 0.8);
  --bg-card: rgba(247, 249, 252, 0.7);
  --surface: rgba(247, 249, 252, 0.95);
  --border: rgba(44, 177, 188, 0.12);
  --border-hover: rgba(44, 177, 188, 0.35);
  --border-mid: rgba(16, 42, 67, 0.08);

  /* Estado */
  --danger: #EF4444;
  --danger-dark: #b20710;
  --success: #16b011;

  /* V4-inspired accents (adaptados à paleta Pulso) */
  --v4-accent: var(--primary);
  --gradient-dark: linear-gradient(135deg, #0d1f33 0%, #102A43 40%, #153550 100%);
  --gradient-teal: linear-gradient(135deg, rgba(44,177,188,0.08) 0%, rgba(51,207,211,0.04) 100%);

  /* Typography */
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 100px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(16, 42, 67, 0.04);
  --shadow-md: 0 8px 32px rgba(16, 42, 67, 0.06);
  --shadow-lg: 0 16px 48px rgba(16, 42, 67, 0.08);
  --shadow-teal: 0 10px 25px -5px rgba(44, 177, 188, 0.25);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.4s;
  --dur-long: 1.75s;
}

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.2; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

p { line-height: 1.65; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--primary); color: white; }

/* ─── Background grid técnico (sutil) ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 177, 188, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 177, 188, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── EEG Canvas (heartbeat line) ─── */
#eeg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 1.75s ease-in-out;
}

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

section { padding: 80px 0; position: relative; }
section.tight { padding: 56px 0; }
section.loose { padding: 120px 0; }

/* ─── Glass Card ─── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: none;
  border-radius: var(--r-xl);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: rgba(247, 249, 252, 0.92);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.glass-card.no-hover,
.glass-card.no-hover:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

/* Accent bar (removido a pedido - sem bordas verticais esquerdas) */
.accent-bar {
  border-left: none !important;
}

/* Suavizar transição de temas no painel de prejuízo (1.75s) */
.section-pain .glass-card,
.section-pain .calc-wrap,
.section-pain .pain-card {
  transition: background 1.75s ease, color 1.75s ease, transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Em modo dark (section-pain.dark), cards viram dark glass */
.section-pain.dark .glass-card,
.section-pain.dark .calc-wrap,
.section-pain.dark .pain-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: none !important;
  color: white;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.section-pain.dark .glass-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
.section-pain.dark .calc-wrap h3,
.section-pain.dark .calc-wrap .calc-label,
.section-pain.dark .calc-wrap .calc-caption,
.section-pain.dark .calc-wrap .slider-head span,
.section-pain.dark .calc-formula,
.section-pain.dark .pain-card h3 {
  color: white !important;
}
.section-pain.dark .calc-wrap .calc-caption,
.section-pain.dark .calc-wrap .slider-head span,
.section-pain.dark .calc-wrap .calc-unit,
.section-pain.dark .pain-card p,
.section-pain.dark .calc-wrap > p {
  color: rgba(255, 255, 255, 0.7) !important;
}
/* Cores com melhor contraste para o modo escuro (coral claro ao invés de vermelho escuro) */
.section-pain.dark .calc-wrap .calc-loss,
.section-pain.dark .calc-formula .result {
  color: #ff8787 !important;
}
/* Melhor contraste para modo claro */
.calc-wrap .calc-unit,
.calc-wrap > p {
  color: var(--text-muted);
}
.calc-wrap .slider-head span {
  color: var(--text-muted);
}
.calc-formula {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(16, 42, 67, 0.03);
  border-radius: var(--r-md);
  border: 1px solid var(--border-mid);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.section-pain.dark .calc-formula {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.section-pain.dark .calc-formula .op { color: rgba(255, 255, 255, 0.25); }
.section-pain.dark .calc-wrap .live-badge {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.section-pain.dark .calc-wrap .live-badge .live-dot {
  background: var(--danger);
}
.section-pain.dark input[type="range"].calc-slider {
  background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.08)) !important;
}

/* ─── Section label (eyebrow) ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-label.centered { justify-content: center; }
.section-label.centered::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-label.centered::before { display: none; }
.section-label.danger { color: var(--danger); }
.section-label.danger::before, .section-label.danger::after { background: var(--danger); }

/* ─── Section header ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.left { text-align: left; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.left p { margin: 0; }

/* ─── Buttons (V4-style adapted) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--midnight);
  color: var(--bg);
  border: 1px solid var(--midnight);
  box-shadow: 0 10px 25px -5px rgba(16, 42, 67, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(16, 42, 67, 0.3);
  background: var(--primary);
  border-color: var(--primary);
}

.btn-teal {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-glow {
  background: var(--primary-glow);
  color: var(--midnight-deep);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(51, 207, 211, 0.35);
}
.btn-glow:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 15px 40px rgba(51, 207, 211, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--midnight);
}
.btn-ghost:hover {
  background: var(--midnight);
  color: white;
}

.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-xl { padding: 22px 48px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-icon { padding: 12px; }

/* ─── Navbar (pill glass) ─── */
.navbar {
  position: fixed;
  top: 16px;
  left: 12px;
  right: 12px;
  z-index: 50;
  display: flex;
  justify-content: center;
}
.navbar-inner {
  width: 100%;
  max-width: 1100px;
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 249, 252, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: none;
  border-radius: var(--r-full);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08), inset 0 0 0 1px rgba(255,255,255,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .navbar { top: 8px; left: 8px; right: 8px; }
  .navbar-inner { padding: 0 16px; height: 56px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 12px; }
}

/* Mobile nav open */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  z-index: 49;
  background: rgba(247, 249, 252, 0.98);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: none;
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--r-md);
  transition: background 0.2s;
}
.nav-mobile a:hover { background: rgba(44, 177, 188, 0.08); }
.nav-mobile a:last-child { border-bottom: none; }

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow.g1 {
  top: 10%; right: -100px;
  width: 600px; height: 600px;
  background: rgba(44, 177, 188, 0.08);
}
.hero-glow.g2 {
  bottom: 10%; left: -100px;
  width: 400px; height: 400px;
  background: rgba(44, 177, 188, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--primary); }
.hero h1 .accent-italic { color: var(--primary); font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { color: var(--primary); }

/* ─── Hero dashboard card (live insights mock) ─── */
.hero-card {
  width: 420px;
  padding: 32px;
  position: relative;
  z-index: 2;
}
.hero-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.hero-card .card-id {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card .card-id-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.1);
  border: 1px solid rgba(44, 177, 188, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.hero-card .card-id-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-card .card-id-sub {
  font-size: 10px;
  color: var(--text-muted);
}
.hero-card .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(44, 177, 188, 0.1);
  border: 1px solid rgba(44, 177, 188, 0.15);
  border-radius: var(--r-full);
  font-size: 10px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.hero-metric .label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.hero-metric .value {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-metric .bar {
  height: 4px;
  background: rgba(16, 42, 67, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.hero-metric .bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 1.2s var(--ease);
}

.hero-chart {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid rgba(44, 177, 188, 0.1);
}
.hero-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-chart-head .delta { color: var(--primary); }
.hero-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.hero-chart-bars .bar-v {
  flex: 1;
  background: rgba(44, 177, 188, 0.2);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s, height 1s var(--ease);
}
.hero-chart-bars .bar-v:hover { background: var(--primary); }

@media (max-width: 1024px) {
  .hero-card { width: 100%; max-width: 480px; margin: 0 auto; }
}

/* ─── Pain Points (Vira DARK/VERMELHO quando entra na viewport) ─── */
.section-pain {
  transition: background-color 1.75s ease, color 1.75s ease;
  position: relative;
}
.section-pain.dark {
  background: var(--midnight-deep) !important;
  color: white;
}
.section-pain.dark h2,
.section-pain.dark h3 { color: white; }
.section-pain.dark p { color: rgba(255,255,255,0.7); }
.section-pain.dark .section-label { color: #fca5a5; }
.section-pain.dark .section-label::before,
.section-pain.dark .section-label::after { background: #fca5a5; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

.pain-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--danger);
  flex-shrink: 0;
  transition: all 1.75s ease;
}
.section-pain.dark .pain-icon {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}
.pain-card h3 { font-size: 1.15rem; }
.pain-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 60px;
}
@media (max-width: 480px) {
  .pain-card { padding: 24px; }
  .pain-card p { padding-left: 0; margin-top: 8px; }
}

/* ─── Services Grid (4 cards) ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(44, 177, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .service-card { padding: 24px; }
  .service-card .service-icon { width: 44px; height: 44px; }
}

/* ─── Stats Grid (Resultados, V4-style numbers) ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(247,249,252,0.85) 0%, rgba(247,249,252,0.6) 100%);
}
.stat-value {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(44, 177, 188, 0.15));
}
.stat-value .unit { color: var(--text); font-weight: 700; }
.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Funil visual (Neuromaster) */
.funnel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .funnel {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .funnel-arrow { transform: rotate(90deg); justify-self: center; }
}
.funnel-step {
  padding: 24px 16px;
  text-align: center;
}
.funnel-step .step-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.funnel-step .step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.funnel-step .step-sub {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 4px;
}
.funnel-arrow {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

/* ─── Cards gradient (V4-style, adapted light) ─── */
.gradient-card {
  background: var(--gradient-dark);
  border-radius: var(--r-xl);
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.gradient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(44,177,188,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(51,207,211,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.gradient-card > * { position: relative; z-index: 1; }
.gradient-card h2 { color: white; }
.gradient-card p { color: rgba(255,255,255,0.7); }

/* ─── Pilars (V4-style squares 216x140) ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  padding: 28px 20px;
  background: rgba(247, 249, 252, 0.7);
  border: none;
  border-radius: var(--r-lg);
  text-align: left;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}
.pillar:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.pillar:hover .pillar-tag,
.pillar:hover h4 { color: white; }
.pillar:hover p { color: rgba(255,255,255,0.85); }
.pillar .pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color var(--dur) var(--ease);
}
.pillar h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  transition: color var(--dur) var(--ease);
}
.pillar p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color var(--dur) var(--ease);
}

/* ─── Timeline / Steps (3 passos V4-style) ─── */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .steps-3 { grid-template-columns: 1fr; }
}
.step-3 {
  background: rgba(247, 249, 252, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: none;
  border-radius: var(--r-xl);
  padding: 48px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.step-3:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-3 .step-num {
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 800;
  color: rgba(44, 177, 188, 0.1);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
  letter-spacing: -0.05em;
}
.step-3 .step-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(44, 177, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.step-3 h3 { margin-bottom: 12px; font-size: 1.5rem; }
.step-3 p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Setup 14 dias timeline (horizontal) */
.setup-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .setup-timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .setup-timeline { grid-template-columns: 1fr; }
}
.setup-phase {
  padding: 24px 20px;
  border: none;
  border-radius: var(--r-lg);
  background: rgba(247, 249, 252, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.setup-phase:hover {
  background: rgba(247, 249, 252, 0.92);
  transform: translateY(-2px);
}
.setup-phase .phase-days {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: rgba(44, 177, 188, 0.1);
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.setup-phase h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.setup-phase ul {
  list-style: none;
  padding: 0;
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.setup-phase ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.setup-phase ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ─── Plans (3 cards sem preço) ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 968px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.plan-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(247, 249, 252, 0.6);
}
.plan-card.featured {
  background: rgba(247, 249, 252, 0.95);
  box-shadow: 0 0 0 2px var(--primary), 0 20px 40px rgba(44, 177, 188, 0.15);
  transform: scale(1.02);
  z-index: 1;
}
.plan-card.featured:hover { transform: scale(1.02) translateY(-3px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 16px rgba(44, 177, 188, 0.3);
  text-transform: uppercase;
}
.plan-tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.plan-subline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.plan-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}
.plan-features li .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
  border: none;
  cursor: pointer;
}
.plan-cta-primary {
  background: var(--midnight);
  color: white;
}
.plan-cta-primary:hover { background: var(--primary); }
.plan-cta-outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--text);
}
.plan-cta-outline:hover { background: var(--text); color: white; }

/* ─── Risk Reversal block (versão simplificada, sem checklist de garantias) ─── */
.risk-block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .risk-block { padding: 40px 28px; }
}
.risk-block h2 { margin-bottom: 24px; }
.risk-block .risk-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ─── Deliverables grid (8 cards 4x2) ─── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .deliverables-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .deliverables-grid { grid-template-columns: 1fr; } }

.deliverable {
  padding: 24px 20px;
  background: rgba(247, 249, 252, 0.6);
}
.deliverable-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(44, 177, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all var(--dur) var(--ease);
}
.deliverable:hover .deliverable-icon {
  background: var(--primary);
  color: white;
}
.deliverable h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.deliverable p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Method tabs (V4-style menu lateral) ─── */
.method-tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: rgba(247, 249, 252, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .method-tabs { grid-template-columns: 1fr; }
}
.method-menu {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
  background: linear-gradient(180deg, rgba(44,177,188,0.06) 0%, rgba(44,177,188,0.02) 100%);
  border-right: none;
}
@media (max-width: 768px) {
  .method-menu { border-right: none; }
}
.method-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  font-family: inherit;
}
.method-tab:hover {
  background: rgba(44, 177, 188, 0.08);
  color: var(--text);
}
.method-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.method-tab .tab-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
}
.method-content {
  padding: 48px;
  background: rgba(247, 249, 252, 0.4);
}
@media (max-width: 768px) {
  .method-content { padding: 28px; }
}
.method-panel { display: none; }
.method-panel.active { display: block; animation: fade-in 0.4s var(--ease); }
.method-panel h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.method-panel .panel-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(44, 177, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.method-panel ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.method-panel ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text);
}
.method-panel ul li .bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Testimonials (hidden temporariamente) ─── */
.testimonials-section { display: none; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 968px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial {
  padding: 36px 28px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 14px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FAQ Accordion ─── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(247, 249, 252, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease);
}
.faq-item:hover {
  background: rgba(247, 249, 252, 0.85);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(44, 177, 188, 0.04); }
.faq-q.open { background: rgba(44, 177, 188, 0.06); }
.faq-q span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  transition: all var(--dur) var(--ease);
}
.faq-q.open .faq-chevron {
  background: var(--midnight);
  color: white;
  transform: rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Loss Calculator ─── */
.calc-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px;
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.calc-head .calc-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.calc-display {
  text-align: left;
  margin-bottom: 16px;
}
.calc-display .calc-caption {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.calc-display .calc-loss {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--danger);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.calc-display .calc-unit {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 6px;
  text-align: right;
  font-weight: 500;
}
.calc-formula {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(16, 42, 67, 0.03);
  border-radius: var(--r-md);
  border: 1px solid var(--border-mid);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.calc-formula .op { color: rgba(16, 42, 67, 0.2); padding: 0 4px; }
.calc-formula .result { color: var(--danger); font-weight: 800; }

.calc-slider-group { margin-bottom: 20px; }
.calc-slider-group .slider-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc-slider-group .slider-head .val {
  color: var(--text);
  font-weight: 700;
}

input[type="range"].calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, rgba(44, 177, 188, 0.2), rgba(44, 177, 188, 0.08));
  outline: none;
  cursor: pointer;
}
input[type="range"].calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(44, 177, 188, 0.4);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
input[type="range"].calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 16px rgba(44, 177, 188, 0.6);
}
input[type="range"].calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
}

/* ─── CTA Final (gradient card central) ─── */
.cta-final {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 56px;
  text-align: center;
  background: var(--gradient-dark);
  border-radius: var(--r-2xl);
  color: white;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-final { padding: 56px 28px; }
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(44,177,188,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(51,207,211,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { color: white; font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 20px; }
.cta-final h2 em {
  color: var(--primary-glow);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.cta-final p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ─── P.S. Halbert block ─── */
.ps-block {
  max-width: 680px;
  margin: 32px auto 0;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  text-align: left;
}
.ps-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-align: left;
  line-height: 1.7;
}
.ps-block strong { color: var(--primary-glow); font-weight: 700; }
.ps-block p + p { margin-top: 10px; }

/* ─── Form inline (V4-style) ─── */
.inline-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .inline-form { grid-template-columns: 1fr; }
}
.inline-form input,
.inline-form select {
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.inline-form input:focus,
.inline-form select:focus {
  border-color: var(--primary);
}
.inline-form input::placeholder { color: rgba(72, 101, 129, 0.5); }
.inline-form button {
  grid-column: 1 / -1;
  padding: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Modal ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-backdrop.open { display: flex; }
.modal-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(44, 177, 188, 0.2);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 24px 64px rgba(16, 42, 67, 0.3);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(16, 42, 67, 0.1); }
.modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-head .modal-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(44, 177, 188, 0.1);
  border: 1px solid rgba(44, 177, 188, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.modal-head h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.modal-head .modal-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.modal-form input {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}
.modal-form input::placeholder { color: rgba(72, 101, 129, 0.4); }
.modal-form input:focus {
  border-color: rgba(44, 177, 188, 0.5);
}
.modal-form .form-error {
  font-size: 12px;
  color: var(--danger);
  font-weight: 600;
}
.modal-form button {
  background: var(--midnight);
  color: white;
  border: 1px solid var(--midnight);
  padding: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}
.modal-form button:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.modal-form button:disabled { opacity: 0.6; cursor: wait; }
.modal-form .form-note {
  font-size: 10px;
  text-align: center;
  color: rgba(72, 101, 129, 0.6);
  font-weight: 500;
}
.modal-success {
  text-align: center;
  padding: 32px 0;
}
.modal-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.1);
  border: 1px solid rgba(44, 177, 188, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.modal-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-success p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── Footer ─── */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border-mid);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { height: 28px; }
.footer-brand .tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

/* ─── Compliance note ─── */
.compliance {
  font-size: 11px;
  color: var(--text-soft);
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--border-mid);
  background: rgba(247, 249, 252, 0.5);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(44, 177, 188, 0.15); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(44, 177, 188, 0.3); }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  will-change: opacity, transform;
}
.reveal.reveal-up { transform: translateY(48px); }
.reveal.reveal-blur { filter: blur(12px); transform: scale(0.96); }
.reveal.reveal-left { transform: translateX(-48px); }
.reveal.reveal-right { transform: translateX(48px); }
.reveal.reveal-zoom { transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ─── Pulse Dot (logo) ─── */
.pulse-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-pulse 2s var(--ease) forwards 0.3s;
}
@keyframes draw-pulse {
  to { stroke-dashoffset: 0; }
}

/* ─── Mobile adjustments ─── */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-trust { gap: 14px; font-size: 10px; }
  .pain-card { padding: 24px; }
  .pain-card p { padding-left: 0; }
  .service-card { padding: 24px; flex-direction: column; gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .step-3 { padding: 32px 24px; }
  .gradient-card { padding: 32px 24px; }
  .risk-block { padding: 32px 24px; }
  .method-content { padding: 24px; }
  .testimonial { padding: 28px 24px; }
  .faq-q { padding: 18px 20px; }
  .faq-q span { font-size: 0.95rem; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 0.9rem; }
  .cta-final { padding: 40px 24px; }
  .ps-block { padding: 20px; }
}

/* ─── Hide on mobile / desktop ─── */
.hide-mobile { display: initial; }
.hide-desktop { display: none; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .hide-desktop { display: initial; }
}

/* =====================================================================
   SERVICES SELECTOR (estilo V4 — pills + cards grandes)
   ===================================================================== */
.services-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.selector-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.selector-pill {
  padding: 12px 22px;
  background: rgba(247, 249, 252, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}
.selector-pill:hover {
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.selector-pill.active {
  background: var(--midnight);
  color: white;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.25);
}

.selector-panels {
  position: relative;
}
.selector-panel {
  display: none;
  animation: fade-in 0.4s var(--ease);
}
.selector-panel.active { display: block; }

.selector-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(247,249,252,0.95) 0%, rgba(247,249,252,0.7) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) {
  .selector-card { grid-template-columns: 1fr; }
}

.selector-card-visual {
  position: relative;
  min-height: 320px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
}
.selector-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(44,177,188,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(51,207,211,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.selector-card-visual > * { position: relative; z-index: 1; }
.selector-card-visual .visual-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.selector-card-visual .visual-icon svg {
  width: 56px;
  height: 56px;
}
.selector-card-visual .visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 177, 188, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 177, 188, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
@media (max-width: 880px) {
  .selector-card-visual { min-height: 220px; padding: 32px; }
  .selector-card-visual .visual-icon { width: 88px; height: 88px; }
  .selector-card-visual .visual-icon svg { width: 40px; height: 40px; }
}

.selector-card-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) {
  .selector-card-content { padding: 32px; }
}
.selector-card-content .content-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.selector-card-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.selector-card-content > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.selector-card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.selector-card-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.selector-card-content ul li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.selector-card-content .selector-cta {
  align-self: flex-start;
}

/* =====================================================================
   SECTION GRADIENT BACKGROUNDS (variando ritmo visual)
   ===================================================================== */
.section-gradient-teal {
  background: linear-gradient(180deg, rgba(247,249,252,1) 0%, rgba(232, 247, 245, 0.5) 50%, rgba(247,249,252,1) 100%);
}
.section-gradient-mesh {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(44,177,188,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(51,207,211,0.05) 0%, transparent 70%),
    var(--bg);
}
.section-gradient-deep {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(232, 247, 245, 0.7) 100%);
}

/* Decorative blob */
.section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.section-blob.blob-teal {
  background: rgba(44, 177, 188, 0.18);
}
.section-blob.blob-cyan {
  background: rgba(51, 207, 211, 0.12);
}

/* Image placeholder (até ter imagens reais) */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(16,42,67,0.04) 0%, rgba(44,177,188,0.06) 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 177, 188, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 177, 188, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.img-placeholder span {
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  background: rgba(247, 249, 252, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--r-sm);
}

/* =====================================================================
   PREMIUM INTERACTIVE MOCKUPS (CSS puro para abas do Seletor de Serviços)
   ===================================================================== */
.selector-card-visual .mockup-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* 1. Mockup Tráfego (Dashboard de Performance) */
.mockup-trafego {
  width: 90%;
  max-width: 320px;
  background: rgba(16, 42, 67, 0.95);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  font-family: inherit;
  color: white;
  text-align: left;
}
.mockup-trafego .db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  color: var(--primary-glow);
  font-weight: 800;
  text-transform: uppercase;
}
.mockup-trafego .db-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.mockup-trafego .db-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mockup-trafego .db-card .label { font-size: 9px; color: rgba(255, 255, 255, 0.5); }
.mockup-trafego .db-card .val { font-size: 14px; font-weight: 800; margin-top: 4px; color: white; }
.mockup-trafego .db-card .val.green { color: #16b011; }
.mockup-trafego .chart-container {
  height: 80px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-end;
  padding: 8px;
  gap: 6px;
}
.mockup-trafego .chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(44, 177, 188, 0.2) 100%);
  border-radius: 2px 2px 0 0;
  height: var(--h);
  transition: height 0.5s ease-in-out;
}

/* 2. Mockup Branding */
.mockup-branding {
  width: 90%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.mockup-branding .brand-card {
  background: white;
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-branding .brand-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.mockup-branding .brand-title { font-size: 11px; font-weight: 800; color: var(--midnight); text-transform: uppercase; }
.mockup-branding .brand-sub { font-size: 9px; color: var(--text-muted); }
.mockup-branding .palette-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.mockup-branding .color-swatch {
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: flex-end;
  padding: 4px;
  font-size: 7px;
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* 3. Mockup Web (Browser Window) */
.mockup-web {
  width: 90%;
  max-width: 320px;
  background: white;
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.1);
  text-align: left;
}
.mockup-web .browser-bar {
  background: #E8EFEF;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}
.mockup-web .browser-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(16, 42, 67, 0.2); }
.mockup-web .browser-address {
  flex: 1;
  background: white;
  border-radius: var(--r-full);
  font-size: 8px;
  padding: 2px 8px;
  color: var(--text-muted);
  text-align: center;
}
.mockup-web .browser-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-web .web-hero {
  background: var(--gradient-teal);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
}
.mockup-web .web-title { width: 60%; height: 6px; background: var(--midnight); margin: 0 auto 4px; border-radius: 3px; }
.mockup-web .web-text { width: 80%; height: 4px; background: var(--text-muted); opacity: 0.5; margin: 0 auto 8px; border-radius: 2px; }
.mockup-web .web-btn { width: 30%; height: 8px; background: var(--primary); margin: 0 auto; border-radius: var(--r-full); }

/* 4. Mockup Social (Instagram Grid) */
.mockup-social {
  width: 90%;
  max-width: 320px;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  padding: 12px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  text-align: left;
}
.mockup-social .profile-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mockup-social .profile-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 1.5px; }
.mockup-social .profile-avatar-inner { width: 100%; height: 100%; border-radius: 50%; background: #eee; border: 1.5px solid white; }
.mockup-social .profile-info { flex: 1; }
.mockup-social .profile-name { font-size: 9px; font-weight: 800; color: var(--midnight); }
.mockup-social .profile-meta { font-size: 7px; color: var(--text-muted); }
.mockup-social .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.mockup-social .post-item {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.mockup-social .post-item::after {
  content: '♥';
  position: absolute;
  bottom: 4px;
  right: 4px;
  color: white;
  font-size: 8px;
  opacity: 0.8;
}

/* 5. Mockup IA (WhatsApp Chat) */
.mockup-ia {
  width: 90%;
  max-width: 320px;
  background: #efeae2;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.1);
  font-family: inherit;
  text-align: left;
}
.mockup-ia .chat-header {
  background: #075e54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}
.mockup-ia .chat-avatar { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }
.mockup-ia .chat-name { font-size: 10px; font-weight: 700; }
.mockup-ia .chat-status { font-size: 7px; color: rgba(255,255,255,0.8); }
.mockup-ia .chat-messages {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-ia .msg {
  max-width: 75%;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 8.5px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.mockup-ia .msg.received {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: var(--midnight);
}
.mockup-ia .msg.sent {
  background: #d9fdd3;
  align-self: flex-end;
  border-top-right-radius: 0;
  color: var(--midnight);
}

/* 6. Mockup SEO (Google Results) */
.mockup-seo {
  width: 90%;
  max-width: 320px;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  padding: 14px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  text-align: left;
}
.mockup-seo .google-bar {
  display: flex;
  align-items: center;
  background: #F1F3F4;
  border-radius: var(--r-full);
  padding: 6px 12px;
  gap: 8px;
  margin-bottom: 12px;
}
.mockup-seo .google-bar span { font-size: 8px; color: var(--text-muted); }
.mockup-seo .seo-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup-seo .seo-item {
  border-radius: var(--r-sm);
  padding: 8px;
}
.mockup-seo .seo-item.top-rank {
  background: rgba(44, 177, 188, 0.04);
  border: 1.5px dashed var(--primary);
  position: relative;
}
.mockup-seo .seo-item.top-rank .badge {
  position: absolute;
  top: -8px; right: 8px;
  background: var(--primary);
  color: white;
  font-size: 6px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--r-full);
  text-transform: uppercase;
}
.mockup-seo .seo-url { font-size: 7px; color: #5f6368; margin-bottom: 2px; }
.mockup-seo .seo-title { font-size: 10px; font-weight: 700; color: #1a0dab; margin-bottom: 4px; }
.mockup-seo .seo-desc { font-size: 8px; color: #4d5156; line-height: 1.4; }

/* ─── Gradiente Suave para Seções de Fundo Claro ─── */
.section-gradient-soft {
  background: radial-gradient(circle at 10% 20%, rgba(44, 177, 188, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(51, 207, 211, 0.02) 0%, transparent 60%),
              var(--bg);
}

.bg-white {
  background-color: #ffffff;
}
.bg-light {
  background-color: var(--bg);
}

