/* ============================================================
   33PLACE LANDING PAGE — Design System v2
   Bi-tonal: Seções Dark + Seções Light alternadas
   Cores: Verde Neon + Preto + Branco
   Estilo: Glassmorphism + 3D + Micro-Animações
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --neon: #39FF14;
  --neon-rgb: 57, 255, 20;
  --neon-soft: #32E010;
  --neon-dark: #1A8A0A;

  /* Dark backgrounds */
  --bg-dark: #050505;
  --bg-dark-alt: #0A0A0A;
  --bg-dark-card: #111111;

  /* Light backgrounds */
  --bg-light: #FAFAFA;
  --bg-light-alt: #F2F2F2;
  --bg-light-card: #FFFFFF;

  /* Glass (dark) */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(57, 255, 20, 0.2);

  /* Glass (light) */
  --glass-light-bg: rgba(255, 255, 255, 0.8);
  --glass-light-border: rgba(0, 0, 0, 0.06);
  --glass-light-border-hover: rgba(57, 255, 20, 0.3);

  /* Text dark theme */
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;

  /* Text light theme */
  --text-dark-primary: #111111;
  --text-dark-secondary: #555555;
  --text-dark-muted: #888888;

  /* Gradientes */
  --gradient-neon: linear-gradient(135deg, #39FF14, #32E010);

  /* Sombras */
  --glow-sm: 0 0 15px rgba(var(--neon-rgb), 0.15);
  --glow-md: 0 0 30px rgba(var(--neon-rgb), 0.2);
  --glow-lg: 0 0 60px rgba(var(--neon-rgb), 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-light: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-light-hover: 0 8px 40px rgba(0, 0, 0, 0.10);

  /* Tipografia */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espaçamento */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ── Tipografia ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { font-size: 1.0625rem; color: var(--text-secondary); }

.text-neon { color: var(--neon); }
.text-gradient {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--neon);
  color: #000;
  box-shadow: var(--glow-md);
}
.btn-primary:hover {
  background: var(--neon-soft);
  box-shadow: var(--glow-lg);
  transform: translateY(-2px);
}

.btn-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--neon-rgb), 0.3); }
  50% { box-shadow: 0 0 40px rgba(var(--neon-rgb), 0.5), 0 0 80px rgba(var(--neon-rgb), 0.2); }
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--glow-sm);
}

.btn-icon { font-size: 1.2em; transition: transform var(--transition-fast); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ── Glass Card (Dark) ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-sm);
}

/* ── Light Card ── */
.light-card {
  background: var(--bg-light-card);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-light);
}
.light-card:hover {
  border-color: var(--glass-light-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-hover);
}

/* ── Seção Base ── */
.section { padding: var(--section-padding); position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
}

.section-title { margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 60px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Seção Dark ── */
.section-dark { background: var(--bg-dark); color: var(--text-primary); }
.section-dark-alt { background: var(--bg-dark-alt); color: var(--text-primary); }
.section-dark h2, .section-dark h3, .section-dark h4,
.section-dark-alt h2, .section-dark-alt h3, .section-dark-alt h4 { color: var(--text-primary); }
.section-dark p, .section-dark-alt p { color: var(--text-secondary); }

/* ── Seção Light ── */
.section-light { background: var(--bg-light); color: var(--text-dark-primary); }
.section-light h2, .section-light h3, .section-light h4 { color: var(--text-dark-primary); }
.section-light p { color: var(--text-dark-secondary); }
.section-light .section-subtitle { color: var(--text-dark-secondary); }
.section-light .section-label { color: var(--neon-dark); }
.section-light .section-label::before { background: var(--neon-dark); }
.section-light .text-neon { color: var(--neon-dark); }

/* ── Icon Container (substitui emojis) ── */
.icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Icon box em seção dark */
.section-dark .icon-box,
.section-dark-alt .icon-box {
  background: rgba(var(--neon-rgb), 0.08);
  border: 1px solid rgba(var(--neon-rgb), 0.12);
}

/* Icon box em seção light */
.section-light .icon-box {
  background: rgba(var(--neon-rgb), 0.06);
  border: 1px solid rgba(var(--neon-rgb), 0.12);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--neon);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.eco-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  transition: all var(--transition-smooth);
}
.eco-icon-box svg { width: 28px; height: 28px; }

.glass-card:hover .eco-icon-box,
.light-card:hover .eco-icon-box {
  background: rgba(var(--neon-rgb), 0.14);
  box-shadow: var(--glow-sm);
  transform: scale(1.05);
}

/* ── Background Decor ── */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
}
.bg-glow-green { background: rgba(var(--neon-rgb), 0.15); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo svg { display: block; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.navbar-links a:hover { color: var(--text-primary); }
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--neon);
  transition: width var(--transition-smooth);
}
.navbar-links a:hover::after { width: 100%; }
.navbar-cta { padding: 10px 24px !important; font-size: 0.875rem !important; }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar-toggle span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-dark);
}
.hero .bg-glow.glow-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero .bg-glow.glow-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }

.hero .container {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--neon-rgb), 0.08);
  border: 1px solid rgba(var(--neon-rgb), 0.2);
  border-radius: 60px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--neon-rgb), 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(var(--neon-rgb), 0); }
}

.hero h1 { margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 span { display: block; }

.hero-description {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--glass-border);
  padding-top: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--glass-border);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text-primary);
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BENEFITS CAROUSEL (Auto-scroll)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.benefits-carousel {
  background: #111111;
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(var(--neon-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--neon-rgb), 0.08);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-benefits 30s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll-benefits {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.benefit-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(var(--neon-rgb), 0.05);
  border: 1px solid rgba(var(--neon-rgb), 0.12);
  border-radius: 60px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.benefit-chip:hover {
  background: rgba(var(--neon-rgb), 0.1);
  border-color: rgba(var(--neon-rgb), 0.25);
}

.benefit-chip svg {
  width: 18px; height: 18px;
  stroke: var(--neon);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.benefit-chip span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROBLEMS (LIGHT)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--neon);
  transition: height var(--transition-smooth);
}
.problem-card:hover::before { height: 100%; }

.problem-card h4 { margin-bottom: 10px; }
.problem-card p { font-size: 0.9375rem; line-height: 1.7; }

/* Light-specific problem cards */
.section-light .problem-card p { color: var(--text-dark-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ECOSYSTEM (DARK)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.eco-card {
  padding: 40px 32px;
  text-align: center;
}
.eco-card h3 { margin-bottom: 12px; }
.eco-card p { font-size: 0.9375rem; }

.ecosystem-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS (LIGHT)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%; width: 75%; height: 2px;
  background: linear-gradient(90deg, #e0e0e0, var(--neon-dark), #e0e0e0);
  opacity: 0.4;
}

.step-card { text-align: center; position: relative; z-index: 2; }

.step-number {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #000;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(var(--neon-rgb), 0.25);
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(var(--neon-rgb), 0.2);
}

.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   METRICS (DARK)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card { padding: 40px 24px; text-align: center; }

.metric-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--neon);
  margin-bottom: 8px;
  text-shadow: var(--glow-sm);
}
.metric-label { font-size: 0.9375rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY (LIGHT)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.section-light .gallery-item {
  border: 1px solid var(--glass-light-border);
  box-shadow: var(--shadow-light);
}
.section-light .gallery-item:hover {
  box-shadow: var(--shadow-light-hover);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.gallery-item:hover img { transform: scale(1.02); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.gallery-caption p { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING (DARK)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--neon-rgb), 0.15);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-neon);
}

.pricing-label {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}

.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--text-secondary); }
.pricing-value { font-family: var(--font-display); font-weight: 900; font-size: 4rem; color: var(--text-primary); line-height: 1; }
.pricing-period { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 32px; }

.pricing-features { list-style: none; margin-bottom: 40px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-check {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--neon-rgb), 0.1);
  color: var(--neon);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(var(--neon-rgb), 0.05);
  border: 1px solid rgba(var(--neon-rgb), 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.pricing-note svg {
  width: 20px; height: 20px;
  stroke: var(--neon);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.pricing-cta { width: 100%; font-size: 1.125rem; padding: 18px 36px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOR WHO (LIGHT)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.for-who-card { padding: 40px 32px; }
.for-who-card .icon-box { width: 56px; height: 56px; }
.for-who-card .icon-box svg { width: 26px; height: 26px; }
.for-who-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.for-who-card p { font-size: 0.9375rem; line-height: 1.7; }

/* Light for-who specific */
.section-light .for-who-card p { color: var(--text-dark-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ (DARK)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--glass-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--neon); }

.faq-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: all var(--transition-smooth);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon {
  background: var(--neon);
  border-color: var(--neon);
  color: #000;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9375rem; line-height: 1.8; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA FINAL (DARK)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final .bg-glow {
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-final h2, .cta-final p, .cta-final .btn { position: relative; z-index: 2; }
.cta-final p {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-final .btn { font-size: 1.125rem; padding: 20px 48px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-dark);
}
.footer .container { display: flex; align-items: center; justify-content: space-between; }
.footer-logo svg { display: block; }
.footer-text { font-size: 0.8125rem; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVIDADE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px 0; }

  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrapper { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-wrapper::before { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .for-who-grid { grid-template-columns: repeat(2, 1fr); }
  .for-who-grid > :last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .navbar-links.active { display: flex; }
  .navbar-links a { font-size: 1.25rem; }
  .navbar-toggle { display: flex; z-index: 1001; }
  .navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .navbar-toggle.active span:nth-child(2) { opacity: 0; }
  .navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .problems-grid { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-bottom-row { grid-template-columns: 1fr; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .for-who-grid > :last-child { max-width: none; }
  .pricing-card { padding: 32px 24px; }
  .pricing-value { font-size: 3rem; }

  /* Hero stats horizontal preenchendo o espaço */
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero-stat { padding: 0 8px; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.6875rem; }

  .footer .container { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .metric-value { font-size: 2rem; }
  .pricing-value { font-size: 2.5rem; }
  .hero-stats { margin-left: -24px; margin-right: -24px; }
}
