/* =============================================
   LP SaaS — Premium Stylesheet
   Inspired by: Stripe, Linear, Vercel, Framer
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080808;
  --bg:       #0a0a0a;
  --bg-1:     #111111;
  --bg-2:     #161616;
  --bg-3:     #1e1e1e;
  --border:   rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --orange:   #FF6B00;
  --orange-2: #FF8C38;
  --orange-3: #FF5200;
  --orange-glow: rgba(255,107,0,0.18);
  --orange-glow-strong: rgba(255,107,0,0.35);
  --white:    #FFFFFF;
  --gray-1:   #EDEDED;
  --gray-2:   #A8A8A8;
  --gray-3:   #6E6E6E;
  --gray-4:   #2A2A2A;
  --green:    #22C55E;
  --red:      #EF4444;
  --font:     'Inter', system-ui, -apple-system, sans-serif;
  --font-plus: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius:   12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow:   0 4px 32px rgba(0,0,0,0.4);
  --shadow-orange: 0 0 40px rgba(255,107,0,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(255,107,0,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-1);
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,0.06); }

.btn-xl { font-size: 17px; padding: 18px 36px; border-radius: var(--radius-lg); }

.btn-pulse {
  animation: pulse-orange 2.5s infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,107,0,0); }
}

/* === SECTION UTILITIES === */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-plus);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-2);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { font-size: 22px; color: var(--orange); }
.logo-accent { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--gray-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--orange-2); box-shadow: 0 4px 20px rgba(255,107,0,0.35); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
.hero-glow-2 {
  top: 200px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,140,56,0.1) 0%, transparent 70%);
  animation-delay: 2s;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
  }
}

.hero-content {
  text-align: left;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-plus);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--gray-2);
  line-height: 1.6;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-sub strong { color: var(--gray-1); font-weight: 600; }

.hero-premium-list {
  list-style: none;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-premium-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-1);
  margin-bottom: 10px;
}
.hero-premium-list li svg {
  width: 18px;
  height: 18px;
  color: #10b981; /* Verde confirmação */
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-3);
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-trust-bar .sep {
  color: var(--border);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-val {
  font-family: var(--font-plus);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 11px;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-3);
  font-size: 12px;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 10;
  transition: color 0.2s;
}
.scroll-cue:hover {
  color: var(--orange);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item {
  padding: 0 32px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-plus);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* DASHBOARD MOCKUP */
.dashboard-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.dashboard-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(from 0deg, var(--orange), transparent 40%, transparent 60%, var(--orange) 100%);
  z-index: -1;
  animation: rotate-ring 6s linear infinite;
  opacity: 0.5;
}
@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dashboard-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,107,0,0.12);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.dash-title { font-size: 12px; color: var(--gray-3); flex: 1; text-align: center; }
.dash-actions { display: flex; }
.dash-tag { font-size: 11px; color: var(--green); font-weight: 600; }

.dash-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 240px;
}
.dash-sidebar {
  background: var(--bg-1);
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--gray-3);
  cursor: pointer;
  transition: all 0.2s;
}
.dash-nav-item:hover, .dash-nav-item.active {
  background: rgba(255,107,0,0.08);
  color: var(--orange);
}
.dash-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.dash-metrics-row { display: flex; gap: 16px; }
.dash-metric {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  flex: 1;
}
.metric-label { display: block; font-size: 10px; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.metric-value { display: block; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.metric-change { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 4px; margin-top: 4px; }
.metric-change.up { background: rgba(34,197,94,0.15); color: var(--green); }

.dash-chart-area { flex: 1; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; }
.chart-label { font-size: 10px; color: var(--gray-3); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; height: 100%; }
.bar {
  width: 100%;
  height: var(--h);
  background: rgba(255,107,0,0.35);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s;
  min-height: 6px;
}
.bar.active { background: var(--orange); box-shadow: 0 0 8px rgba(255,107,0,0.5); }
.bar-wrap span { font-size: 9px; color: var(--gray-3); }

.dash-systems-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sys-chip {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--gray-2);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 100px;
}
.chip-more { background: rgba(255,107,0,0.1); border-color: rgba(255,107,0,0.2); color: var(--orange); }

/* =============================================
   LOGOS BELT
   ============================================= */
.logos-belt {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  overflow: hidden;
}
.logos-label {
  font-size: 12px;
  color: var(--gray-3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.logos-track { overflow: hidden; }
.logos-slide {
  display: flex;
  gap: 20px;
  animation: logos-scroll 20s linear infinite;
  width: max-content;
}
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-pill {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--gray-2);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

/* =============================================
   PAIN SECTION
   ============================================= */
.pain-section {
  padding: 120px 0;
  text-align: center;
}
.pain-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.pain-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pain-col-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.pain-col-icon.bad { background: rgba(239,68,68,0.15); color: var(--red); }
.pain-col-icon.good { background: rgba(34,197,94,0.15); color: var(--green); }

.pain-col {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pain-col.pain-good { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.03); }
.pain-col.pain-bad { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.03); }

.pain-list { display: flex; flex-direction: column; gap: 12px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.pain-item:hover { background: rgba(255,255,255,0.03); }
.pain-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.pain-item strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.pain-item p { font-size: 12px; color: var(--gray-3); margin: 0; }

.pain-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  gap: 16px;
}
.vs-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-3);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 50%, var(--bg) 100%);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}
.step-item.visible { opacity: 1; transform: translateY(0); }

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.step-circle.active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(255,107,0,0.4);
}
.step-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.step-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: -50%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-2), var(--border));
}

.step-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  width: 100%;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.highlight-card {
  border-color: rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.04);
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title {
  font-family: var(--font-plus);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--gray-2); line-height: 1.6; margin-bottom: 14px; }
.step-tag {
  display: inline-block;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--gray-3);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.step-tag.success {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
  color: var(--green);
}

/* =============================================
   SYSTEMS
   ============================================= */
.systems-section {
  padding: 120px 0;
  text-align: center;
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.system-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.system-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,0,0.1);
}
.system-card.featured {
  border-color: rgba(255,107,0,0.25);
  background: linear-gradient(135deg, rgba(255,107,0,0.05) 0%, var(--bg-1) 60%);
}

.sys-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
}
.sys-badge.bestseller { background: rgba(255,107,0,0.9); color: white; }
.sys-badge.growth { background: rgba(59,130,246,0.9); color: white; }
.sys-badge.demand { background: rgba(34,197,94,0.9); color: white; }

.sys-card-visual {
  padding: 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  height: 200px;
  overflow: hidden;
}
.sys-mockup {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 4px; }
.mock-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-3); }
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FEBC2E; }
.mock-dots span:nth-child(3) { background: #28C840; }
.mock-url { font-size: 10px; color: var(--gray-3); flex: 1; text-align: center; }

.mock-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }

/* Imobi Mockup */
.mock-map-area {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-pin { font-size: 18px; }
.mini-price { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.mini-addr { font-size: 10px; color: var(--gray-3); }
.mock-card-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--gray-2);
}
.mock-card-sm strong { margin-left: auto; color: var(--white); }

/* Delivery Mockup */
.delivery-items { display: flex; flex-direction: column; gap: 6px; }
.d-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-2);
  padding: 6px 10px;
  background: var(--bg-2);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.d-item strong { margin-left: auto; color: var(--white); }
.delivery-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--orange);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: white;
  font-weight: 600;
}
.cart-total { font-weight: 700; }

/* Barber Mockup */
.barber-schedule { display: flex; flex-direction: column; gap: 6px; }
.sched-header { font-size: 11px; font-weight: 600; color: var(--orange); margin-bottom: 4px; }
.sched-item {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--gray-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.sched-item.confirmed {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
  color: var(--gray-1);
}

.sys-card-content { padding: 24px; }
.sys-niche { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.niche-tag {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--gray-3);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
}
.sys-title {
  font-family: var(--font-plus);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.sys-desc { font-size: 13px; color: var(--gray-2); line-height: 1.6; margin-bottom: 16px; }
.sys-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.sys-benefits li { font-size: 12px; color: var(--gray-2); }
.sys-benefits li::marker { content: ''; }

.sys-monetization {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mono-label { font-size: 10px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.mono-value { font-size: 14px; font-weight: 700; color: var(--white); }

.sys-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--gray-1);
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.sys-btn:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* =============================================
   BONUS SECTION
   ============================================= */
.bonus-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 50%, var(--bg) 100%);
}
.bonus-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.bonus-title {
  font-family: var(--font-plus);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.bonus-sub {
  font-size: 17px;
  color: var(--gray-2);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.bonus-vault {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,0,0.08);
}
.vault-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, transparent 100%);
}
.vault-title-row { display: flex; align-items: center; gap: 16px; }
.vault-icon { font-size: 32px; }
.vault-title {
  font-family: var(--font-plus);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.vault-sub { font-size: 13px; color: var(--gray-3); }
.vault-value-badge {
  text-align: right;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
}
.vault-value-label { display: block; font-size: 10px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 4px; }
.vault-value-price {
  font-family: var(--font-plus);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
}
.vault-item {
  background: var(--bg-2);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.vault-item:hover {
  background: var(--bg-3);
  z-index: 1;
}
.vault-item-icon { font-size: 24px; }
.vault-item-name { font-size: 11px; color: var(--gray-3); font-weight: 500; line-height: 1.3; }
  transform: scale(1.02);
}
.vault-item.hidden { display: none; }

/* PREVIEW ICONS */
.vault-item-preview {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.vault-item:hover .vault-item-preview { transform: scale(1.12) translateY(-2px); }

.vault-item-preview.neg {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  box-shadow: 0 4px 12px rgba(26,35,126,0.4);
}
.vault-item-preview.mkt {
  background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
  box-shadow: 0 4px 12px rgba(74,20,140,0.4);
}
.vault-item-preview.soc {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  box-shadow: 0 4px 12px rgba(21,101,192,0.4);
}
.vault-item-preview.srv {
  background: linear-gradient(135deg, #bf360c 0%, #e64a19 100%);
  box-shadow: 0 4px 12px rgba(191,54,12,0.4);
}
.vault-item-preview.more {
  background: linear-gradient(135deg, rgba(255,107,0,0.3) 0%, rgba(255,107,0,0.15) 100%);
  border: 1px dashed rgba(255,107,0,0.4);
  animation: sparkle 2s ease-in-out infinite;
}

.vault-item-name {
  font-size: 10px;
  color: var(--gray-2);
  font-weight: 600;
  line-height: 1.3;
}
.vault-item-tag {
  font-size: 9px;
  color: var(--gray-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

.vault-more { background: rgba(255,107,0,0.05); }
.vault-more .vault-item-name { color: var(--orange); font-weight: 700; }
.vault-more .vault-item-tag { color: var(--orange); border-color: rgba(255,107,0,0.2); background: rgba(255,107,0,0.08); }

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(8deg); }
}

/* VAULT STATS ROW */
.vault-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.vault-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.vault-stat:last-child { border-right: none; }
.vstat-icon { font-size: 24px; flex-shrink: 0; }
.vault-stat strong { display: block; font-size: 13px; color: var(--white); font-weight: 700; margin-bottom: 2px; }
.vault-stat p { font-size: 11px; color: var(--gray-3); line-height: 1.4; margin: 0; }

.vault-footer {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-1);
}
.vault-footer-text { font-size: 14px; color: var(--gray-2); text-align: left; }
.vault-footer-text strong { color: var(--white); } }

/* =============================================
   VALUE SECTION
   ============================================= */
.value-section {
  padding: 120px 0;
  text-align: center;
}
.value-table-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.value-table {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
}
.vt-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.vt-row:hover { background: rgba(255,255,255,0.02); }
.vt-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-1); }
.vt-icon { font-size: 18px; }
.vt-price { font-size: 14px; font-weight: 600; color: var(--gray-2); }
.bonus-row { background: rgba(255,107,0,0.04); }
.bonus-row .vt-price { color: var(--orange); }
.vt-tag {
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vt-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-2);
}
.striked {
  text-decoration: line-through;
  color: var(--gray-3);
}
.vt-today-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(255,107,0,0.05) 100%);
}
.vt-today-label { display: flex; flex-direction: column; gap: 4px; }
.today-flag {
  font-size: 11px;
  background: var(--orange);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  width: fit-content;
}
.vt-today-label span:last-child { font-size: 13px; color: var(--gray-2); }
.vt-today-price {
  font-family: var(--font-plus);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.value-cta-box { text-align: center; }
.vcta-text { font-size: 15px; color: var(--gray-2); margin-bottom: 20px; }
.vcta-text strong { color: var(--orange); }
.vcta-note { font-size: 13px; color: var(--gray-3); margin-top: 12px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 14px; color: var(--white); }
.testi-info span { font-size: 12px; color: var(--gray-3); }
.testi-verified {
  margin-left: auto;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.testi-bubble {
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
  position: relative;
}
.testi-bubble::before {
  content: '"';
  font-size: 40px;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: -8px;
  left: 12px;
  line-height: 1;
}
.testi-bubble p { font-size: 13px; color: var(--gray-2); line-height: 1.6; }
.testi-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius-sm);
}
.result-label { font-size: 10px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.result-value { font-size: 15px; font-weight: 700; color: var(--white); }

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee-section {
  padding: 80px 0;
  text-align: center;
}
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-seal { flex-shrink: 0; }
.seal-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--orange), var(--orange-2), var(--orange));
  padding: 4px;
  animation: rotate-ring 8s linear infinite;
}
.seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.seal-days { font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; }
.seal-text { font-size: 10px; font-weight: 700; color: var(--white); letter-spacing: 0.1em; }
.seal-sub { font-size: 9px; color: var(--gray-3); letter-spacing: 0.1em; }

.guarantee-title {
  font-family: var(--font-plus);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.guarantee-desc {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.guarantee-desc strong { color: var(--white); }
.guarantee-points {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.guarantee-points span {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 50%, var(--bg) 100%);
}
.pricing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-2);
  max-width: 700px;
  margin: 0 auto 48px;
}
.urgency-sep { color: rgba(255,107,0,0.3); }

.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,0,0.12);
}

.pricing-card-header {
  padding: 36px;
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,107,0,0.04) 100%);
  border-bottom: 1px solid var(--border);
}
.pricing-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pricing-price-area { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pricing-old { display: flex; align-items: center; gap: 8px; }
.old-label { font-size: 13px; color: var(--gray-3); }
.old-price { font-size: 20px; color: var(--gray-3); text-decoration: line-through; }
.pricing-current { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.price-by { font-size: 14px; color: var(--gray-2); }
.price-main { display: flex; align-items: flex-start; gap: 4px; }
.price-currency { font-size: 28px; font-weight: 700; color: var(--white); margin-top: 10px; }
.price-value { font-family: var(--font-plus); font-size: 80px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
.price-installment { font-size: 13px; color: var(--gray-3); }

.badge-economy {
  margin-top: 12px;
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pricing-divider { height: 1px; background: var(--border); }

.pricing-includes { padding: 32px 36px; }
.includes-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.anchoring-grid { display: flex; flex-direction: column; gap: 12px; }
.include-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-1);
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.include-item:last-child { border-bottom: none; padding-bottom: 0; }
.inc-icon { font-size: 18px; flex-shrink: 0; }

.anchor-item { justify-content: flex-start; }
.anchor-item span:nth-child(2) { flex: 1; text-align: left; }
.anchor-price { font-weight: 600; color: var(--gray-2); }
.strike { text-decoration: line-through; color: var(--gray-3); opacity: 0.7; }

.anchor-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: right;
  font-size: 15px;
  color: var(--gray-2);
}
.anchor-total strong { font-size: 18px; font-weight: 700; color: var(--gray-3); margin-left: 8px; }

.pricing-cta-area {
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(255,107,0,0.06) 0%, transparent 100%);
}
.pricing-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-3);
  margin-top: 24px;
}
.cta-subtext {
  font-size: 13px;
  color: var(--gray-3);
  margin-top: 12px;
}
.risk-reversal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}
.risk-reversal-list span {
  font-size: 14px;
  color: var(--gray-2);
  font-weight: 500;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--gray-1);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); color: var(--white); }
.faq-question[aria-expanded="true"] { color: var(--orange); }
.faq-icon {
  font-size: 20px;
  color: var(--gray-3);
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
}
.faq-answer.open { max-height: 200px; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-content { position: relative; z-index: 2; }
.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.final-title {
  font-family: var(--font-plus);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.final-sub {
  font-size: 18px;
  color: var(--gray-2);
  margin-bottom: 40px;
  line-height: 1.7;
}
.final-guarantee {
  font-size: 13px;
  color: var(--gray-3);
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--gray-3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--gray-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--gray-1); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   VSL SECTION
   ============================================= */
.vsl-section { padding: 40px 0 80px; text-align: center; }
.vsl-wrapper { max-width: 900px; margin: 0 auto; background: var(--bg-1); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 40px; }
.vsl-badge { display: inline-block; padding: 4px 12px; background: rgba(255,107,0,0.1); color: var(--orange); border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.vsl-title { font-size: 32px; font-weight: 700; margin-bottom: 32px; }
.vsl-video-container { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,0.1); }
.vsl-video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.vsl-placeholder { position: absolute; top:0; left:0; width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; background: linear-gradient(45deg, #111, #222); cursor: pointer; transition: all 0.3s ease; }
.vsl-placeholder:hover { background: linear-gradient(45deg, #151515, #2a2a2a); }
.vsl-play-btn { width: 64px; height: 64px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 0 30px rgba(255,107,0,0.5); transition: transform 0.3s ease; }
.vsl-placeholder:hover .vsl-play-btn { transform: scale(1.1); }
.vsl-footer { margin-top: 24px; color: var(--gray-2); font-size: 14px; }

/* =============================================
   AUDIENCE SECTION (Para Quem É)
   ============================================= */
.audience-section { padding: 80px 0; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.audience-card { background: var(--bg-1); border: 1px solid rgba(255,255,255,0.05); padding: 32px 24px; border-radius: var(--radius); text-align: center; transition: all 0.3s ease; }
.audience-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.3); background: var(--bg-2); }
.aud-icon { font-size: 32px; margin-bottom: 16px; }
.aud-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.aud-desc { font-size: 14px; color: var(--gray-2); line-height: 1.5; }

/* =============================================
   LEAD MAGNET SECTION
   ============================================= */
.lead-magnet-section { padding: 60px 0; }
.lm-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: linear-gradient(135deg, rgba(255,107,0,0.05) 0%, rgba(0,0,0,0) 100%), var(--bg-1); border: 1px solid rgba(255,107,0,0.15); border-radius: var(--radius-lg); padding: 48px; }
.lm-badge { display: inline-block; padding: 4px 12px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.lm-title { font-size: 32px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.lm-sub { font-size: 16px; color: var(--gray-2); }
.lm-form-wrapper { background: var(--bg-2); padding: 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05); }
.form-group { margin-bottom: 16px; }
.form-group input { width: 100%; padding: 16px; background: var(--bg-3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 16px; outline: none; transition: border-color 0.2s ease; }
.form-group input:focus { border-color: var(--orange); }
.btn-block { width: 100%; justify-content: center; margin-bottom: 16px; }
.lm-privacy { font-size: 12px; color: var(--gray-3); text-align: center; }
.lm-success { text-align: center; padding: 24px; }
.lm-success-icon { font-size: 48px; margin-bottom: 16px; }

/* =============================================
   CALCULATOR SECTION
   ============================================= */
.calculator-section { padding: 80px 0; }
.calc-wrapper { background: var(--bg-1); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.calc-header { margin-bottom: 40px; }
.calc-title { font-size: 32px; font-weight: 700; margin: 16px 0; }
.calc-body { max-width: 600px; margin: 0 auto; text-align: left; }
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.calc-group label { display: block; margin-bottom: 8px; font-size: 14px; color: var(--gray-2); font-weight: 500; }
.calc-group input { width: 100%; padding: 16px; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); font-size: 18px; font-weight: 600; outline: none; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.result-box { background: var(--bg-2); padding: 24px; border-radius: var(--radius); text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.result-box.featured { background: rgba(255,107,0,0.05); border-color: rgba(255,107,0,0.2); }
.res-label { display: block; font-size: 14px; color: var(--gray-2); margin-bottom: 8px; }
.res-value { font-size: 32px; font-weight: 800; color: var(--white); }
.res-value.highlight { color: var(--orange); }

/* =============================================
   COMPARISON SECTION
   ============================================= */
.comparison-section { padding: 80px 0; text-align: center; }
.comp-table-wrap { max-width: 800px; margin: 48px auto 0; background: var(--bg-1); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.comp-table { width: 100%; border-collapse: collapse; text-align: left; }
.comp-table th, .comp-table td { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comp-table th { background: var(--bg-2); font-weight: 600; color: var(--gray-2); }
.comp-nexus { background: rgba(255,107,0,0.03); color: var(--white); font-weight: 600; }
.comp-traditional { color: var(--gray-2); }
.comp-icon { display: inline-block; width: 20px; height: 20px; text-align: center; line-height: 20px; border-radius: 50%; font-size: 10px; margin-right: 8px; }
.comp-icon.good { background: rgba(34,197,94,0.2); color: var(--green); }
.comp-icon.bad { background: rgba(239,68,68,0.2); color: var(--red); }

/* =============================================
   MODALS (EXIT INTENT & QUIZ)
   ============================================= */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; }
.modal-content { background: var(--bg-1); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 48px; max-width: 500px; width: 90%; position: relative; transform: translateY(20px); transition: transform 0.3s ease; box-shadow: 0 24px 48px rgba(0,0,0,0.5); text-align: center; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--bg-3); border-radius: 50%; cursor: pointer; color: var(--gray-2); transition: all 0.2s ease; }
.modal-close:hover { background: var(--bg-2); color: var(--white); }
.modal-badge { display: inline-block; padding: 4px 12px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.modal-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.modal-sub { font-size: 15px; color: var(--gray-2); margin-bottom: 24px; line-height: 1.5; }
.modal-form input { width: 100%; padding: 16px; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); margin-bottom: 16px; outline: none; font-size: 15px; }
.modal-form input:focus { border-color: var(--orange); }
.modal-success { padding: 32px; font-size: 18px; font-weight: 600; color: var(--green); }

/* QUIZ SPECIFIC */
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.quiz-btn { padding: 16px; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; color: var(--white); font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; text-align: left; }
.quiz-btn:hover { border-color: var(--orange); background: rgba(255,107,0,0.05); transform: translateX(4px); }
.quiz-loader { width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--orange); border-radius: 50%; animation: spin 1s linear infinite; margin: 32px auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.quiz-result-text { font-size: 18px; color: var(--white); margin-bottom: 24px; font-weight: 500; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .systems-grid { grid-template-columns: 1fr 1fr; }
  .vault-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps-timeline { grid-template-columns: 1fr 1fr; gap: 24px; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-stats { flex-wrap: wrap; }
  .pain-comparison { grid-template-columns: 1fr; }
  .pain-vs { display: none; }
  .systems-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr; }
  .vault-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-points { justify-content: center; }
  .includes-grid { grid-template-columns: 1fr; }
  .vault-header { flex-direction: column; gap: 16px; }
  .vault-footer { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-metrics-row { gap: 8px; }
}

@media (max-width: 480px) {
  .vault-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 8px; }
  .stat-item { padding: 0 16px; }
}
