/* ===================================================================
 * MABUS Homepage v2 — Honest hybrid positioning
 * Mobile-first. Tokens reserved by semantic role (Von Restorff).
 * =================================================================== */

:root {
  /* Surfaces */
  --void: #050505;
  --void-2: #0A0A1E;
  --void-3: #030303;

  /* Reserved accents */
  --neon: #00F0FF;       /* RESERVED: primary CTA + active anchor */
  --gold: #FFD700;       /* RESERVED: proof numbers (R$130k, counters) */
  --acid: #39FF14;       /* RESERVED: confirmations, "live" pulse */
  --ember: #FF3232;      /* RESERVED: alerts (unused on homepage) */

  /* Ink hierarchy */
  --ink-1: #FFFFFF;
  --ink-2: #E0E0E0;
  --ink-3: #9CA3AF;
  --ink-4: #4B5563;

  /* Glass */
  --glass-bg: rgba(255,255,255,0.03);
  --glass-bg-hover: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.06);
  --glass-border-hover: rgba(255,255,255,0.18);

  /* Motion */
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.6, 1);
  --d-fast: 160ms;
  --d-medium: 240ms;
  --d-stagger: 70ms;

  /* Scale */
  --fs-hero: clamp(2.5rem, 8vw, 4.5rem);
  --fs-h2: clamp(1.875rem, 5vw, 3rem);
  --fs-h3: clamp(1.25rem, 3.5vw, 1.5rem);
  --fs-lead: clamp(1.125rem, 2.5vw, 1.375rem);
  --fs-body: 1rem;
  --fs-meta: 0.8125rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --header-h: 68px;
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--void);
  color: var(--ink-2);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  body { font-size: 1.0625rem; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: var(--ink-2); color: var(--void); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--neon); color: var(--void);
  padding: 12px 16px; font-weight: 600;
  z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* === Typography helpers === */
.kicker {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: var(--fs-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 500;
}
.h2 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  margin: 0 0 1rem 0;
}
.h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--ink-1);
  margin: 0;
}
.lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
.container--narrow { max-width: var(--container-narrow); }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* === Section spacing === */
.section {
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section--alt { background: var(--void-3); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  min-height: 56px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--d-fast), border-color var(--d-fast), color var(--d-fast), transform var(--d-fast);
  white-space: nowrap;
}
.btn--primary {
  background: var(--neon);
  color: var(--void);
  box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
  animation: pulse-cta 2.4s ease-in-out infinite;
}
.btn--primary:hover {
  background: #4df5ff;
  transform: translateY(-2px);
  animation-play-state: paused;
}
.btn--ghost {
  background: transparent;
  color: var(--ink-1);
  border-color: var(--glass-border-hover);
}
.btn--ghost:hover {
  border-color: var(--ink-1);
  background: var(--glass-bg);
}
.btn--block { width: 100%; }
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 240, 255, 0); }
}

/* === Header sticky === */
.public-header-v2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-medium), background var(--d-medium);
}
.public-header-v2.is-scrolled {
  border-bottom-color: var(--glass-border);
  background: rgba(5, 5, 5, 0.88);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo img { height: 28px; }
.header-nav {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.header-nav a {
  color: var(--ink-3);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--d-fast), border-color var(--d-fast);
}
.header-nav a:hover { color: var(--ink-1); }
.header-nav a.is-active {
  color: var(--neon);
  border-bottom-color: var(--neon);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-login {
  display: none;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.9375rem;
}
.header-login:hover { color: var(--ink-1); }
.header-cta {
  background: var(--neon);
  color: var(--void);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: background var(--d-fast);
}
.header-cta:hover { background: #4df5ff; }

.header-burger {
  background: transparent;
  border: 0;
  color: var(--ink-1);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  border-radius: 8px;
}
.header-burger:hover { background: var(--glass-bg); }

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-login { display: inline-flex; }
  .header-burger { display: none; }
}

.header-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--void-2);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 1rem 1.75rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform var(--d-medium) var(--ease-snap);
}
.header-drawer.is-open { transform: translateY(0); }
.header-drawer ul {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.header-drawer a {
  display: block;
  padding: 0.875rem 0.5rem;
  color: var(--ink-1);
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid var(--glass-border);
}

/* === Page top spacer (account for fixed header) === */
main { padding-top: var(--header-h); }

/* === HERO === */
.hero {
  padding: 3rem 0 4rem;
  position: relative;
}
@media (min-width: 768px) { .hero { padding: 5rem 0 7rem; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-kicker { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--neon);
  animation: blink 1.2s steps(2, end) infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-h1 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink-1);
  margin: 1rem 0 1.25rem;
}
.hero-h1 .accent { color: var(--neon); }

.hero-lead { color: var(--ink-2); margin-bottom: 1rem; }
.hero-lead strong { color: var(--ink-1); font-weight: 600; }
.hero-lead-2 { color: var(--ink-2); margin-bottom: 2rem; }
.hero-lead-2 strong { color: var(--neon); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}
.hero-actions .btn { flex: 1 1 auto; }
@media (min-width: 480px) {
  .hero-actions .btn { flex: 0 0 auto; }
}

.hero-microcopy {
  font-size: var(--fs-meta);
  color: var(--ink-3);
  font-style: italic;
}
.hero-microcopy .check { color: var(--acid); margin-right: 0.25rem; font-style: normal; }

/* Hero mock UI — looks like a real browser tab */
.hero-mock {
  background: linear-gradient(180deg, var(--void-2) 0%, var(--void) 100%);
  border: 1px solid var(--glass-border-hover);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 240, 255, 0.05),
              0 12px 32px rgba(0, 0, 0, 0.5);
  position: relative;
}
.hero-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,240,255,0.25), transparent 40%, transparent 60%, rgba(0,240,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-mock-titlebar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--glass-border);
}
.hero-mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4B5563;
}
.hero-mock-url {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-3);
  text-align: center;
  background: rgba(255,255,255,0.04);
  padding: 4px 10px; border-radius: 6px;
}
.hero-mock-search {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  background: var(--void-2);
}
.hero-mock-search i { color: var(--neon); }
.hero-mock-search input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--ink-1);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  pointer-events: none;
}
.hero-mock-results-count {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}
.hero-mock-list { padding: 0.5rem; }
.hero-mock-card {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: background var(--d-fast), border-color var(--d-fast);
}
.hero-mock-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}
.hero-mock-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.5rem;
}
.hero-mock-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--neon);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.18);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.hero-mock-deadline {
  font-size: 0.6875rem;
  color: var(--ink-3);
  font-weight: 500;
}
.hero-mock-card h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-1);
  font-family: inherit;
}
.hero-mock-card p {
  margin: 0 0 0.5rem 0;
  font-size: 0.8125rem;
  color: var(--ink-3);
}
.hero-mock-card-foot {
  display: flex; justify-content: space-between; align-items: center;
}
.hero-mock-card-foot strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.hero-mock-link {
  font-size: 0.75rem;
  color: var(--neon);
}
.hero-mock-status {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.75rem;
  color: var(--ink-3);
}
.hero-mock-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(57, 255, 20, 0); }
}

/* === PROVA === */
.prova { text-align: center; }
.prova-quote {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-1);
  font-weight: 500;
  font-style: italic;
}
.prova-quote::before { content: "\201C"; }
.prova-quote::after { content: "\201D"; }

.prova-author {
  display: flex; align-items: center; justify-content: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.prova-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c9a800);
  color: var(--void);
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18),
              0 0 24px rgba(255, 215, 0, 0.25);
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}
.prova-avatar--photo {
  width: 72px; height: 72px;
  background: var(--void-2);
  object-fit: cover;
  object-position: center top;
}
.prova-author-info { text-align: left; }
.prova-name { color: var(--ink-1); font-weight: 600; font-size: 1rem; }
.prova-role { color: var(--ink-3); font-size: 0.875rem; }
.prova-linkedin {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--neon); font-size: 0.875rem; font-weight: 500;
  margin-top: 0.25rem;
}
.prova-linkedin:hover { text-decoration: underline; }

.prova-divider {
  max-width: 80px;
  margin: 2.5rem auto;
  border: 0;
  border-top: 1px solid var(--glass-border);
}

.prova-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 768px) { .prova-cards { gap: 1.5rem; } }
.prova-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) { .prova-card { padding: 1.75rem 1rem; } }
.prova-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 6vw, 2.75rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.prova-card-label {
  font-size: 0.75rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.prova-card--live::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 7px; height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(57,255,20,0.6);
  animation: live-pulse 2s ease-in-out infinite;
}

/* === BENEFICIOS === */
.beneficios-h2 { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.beneficios-h2 .accent { color: var(--neon); }

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .beneficios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .beneficios-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.benef-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform var(--d-medium) var(--ease-snap), border-color var(--d-medium), background var(--d-medium);
}
.benef-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.25);
  background: var(--glass-bg-hover);
}
.benef-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.18);
  color: var(--neon);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.benef-card h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.benef-card p { color: var(--ink-3); font-size: 0.9375rem; line-height: 1.5; margin: 0; }
.benef-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--neon);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 2px 8px;
  border-radius: 999px;
}

.beneficios-why {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) { .beneficios-why { padding: 2.25rem 2.5rem; } }
.beneficios-why-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.beneficios-why h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  color: var(--ink-1);
  margin: 0 0 1rem 0;
  font-weight: 700;
}
.beneficios-why p { color: var(--ink-2); margin: 0 0 1rem 0; line-height: 1.65; }
.beneficios-why p:last-child { margin-bottom: 0; }
.beneficios-why strong { color: var(--ink-1); }

/* === COMO FUNCIONA === */
.como-h2 { text-align: center; max-width: 700px; margin: 0 auto 4rem; }

.como-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .como-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .como-steps::before {
    content: "";
    position: absolute;
    top: 56px; left: 16.66%; right: 16.66%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon) 20%, var(--neon) 80%, transparent);
    opacity: 0.4;
    pointer-events: none;
  }
}

.como-step { position: relative; }
.como-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--ink-1);
  opacity: 0.06;
  position: absolute;
  top: -1rem; left: 0;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.como-step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--void-2);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.15);
}
.como-step h3 {
  font-size: 1.25rem;
  margin: 0 0 0.625rem 0;
  position: relative;
  z-index: 1;
}
.como-step p {
  color: var(--ink-2);
  margin: 0 0 0.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.como-step .time-fast { color: var(--neon); font-weight: 600; }
.como-step .time-real { color: var(--ink-1); font-weight: 600; }
.como-step .time-opt { color: var(--ink-3); font-style: italic; }

/* === PRECOS === */
.precos-h2 { text-align: center; max-width: 760px; margin: 0 auto 1rem; }
.precos-sub {
  text-align: center;
  color: var(--ink-3);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.precos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .precos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.precos-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--d-medium), transform var(--d-medium) var(--ease-snap);
}
.precos-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-4px);
}
.precos-card-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.precos-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.precos-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--ink-3);
  margin: 0 0 1.25rem 0;
}
.precos-price strong { color: var(--gold); font-weight: 700; }
.precos-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--glass-border);
  font-size: 0.875rem;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.precos-meta-row { display: flex; flex-direction: column; gap: 2px; }
.precos-meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.precos-meta-value { color: var(--ink-2); }
.precos-example {
  margin-top: 1rem;
  padding: 0.75rem 0.875rem;
  background: rgba(255, 215, 0, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.precos-example strong { color: var(--gold); font-weight: 600; }
.precos-card-cta {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--neon);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}
.precos-card-cta:hover { text-decoration: underline; }

.precos-manifesto {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 240, 255, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .precos-manifesto { padding: 2.5rem 2.75rem; } }
.precos-manifesto-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.precos-manifesto p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: var(--ink-1);
  margin: 0;
  line-height: 1.4;
}

/* === ECOSSISTEMA === */
.eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .eco-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.eco-text h2 { margin-bottom: 1rem; }
.eco-text p { color: var(--ink-2); margin: 0 0 1rem 0; line-height: 1.6; }
.eco-text strong { color: var(--ink-1); }
.eco-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 480px) {
  .eco-actions { flex-direction: row; flex-wrap: wrap; }
}

.eco-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
.eco-app {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color var(--d-fast), transform var(--d-fast);
}
.eco-app:hover {
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-3px);
}
.eco-app-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.eco-app-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-1);
}
.eco-app-desc {
  font-size: 0.8125rem;
  color: var(--ink-3);
  line-height: 1.45;
  margin: 0;
}

/* === FAQ === */
.faq-h2 { text-align: center; margin-bottom: 3rem; }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--glass-border);
}
.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1rem 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-1);
  transition: color var(--d-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--neon); }
.faq-item[open] summary { color: var(--neon); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-hover);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--d-medium) var(--ease-snap), border-color var(--d-fast);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--neon);
  color: var(--neon);
}
.faq-answer {
  padding: 0 0 1.5rem 0;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.9375rem;
  max-width: 760px;
}
.faq-answer p { margin: 0 0 0.75rem 0; }
.faq-answer p:last-child { margin: 0; }
.faq-answer strong { color: var(--ink-1); }

/* === FECHAMENTO === */
.fechamento { text-align: center; padding: 5rem 0 6rem; }
@media (min-width: 768px) { .fechamento { padding: 8rem 0 10rem; } }
.fechamento h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
}
.fechamento-sub {
  color: var(--ink-3);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.fechamento .btn--primary {
  min-width: 280px;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}
.fechamento-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.875rem;
  margin: 2rem auto 1rem;
  color: var(--ink-4);
  font-size: 0.8125rem;
  max-width: 320px;
}
.fechamento-divider::before, .fechamento-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--glass-border);
}
.fechamento-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--ink-2);
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: border-color var(--d-fast), color var(--d-fast);
}
.fechamento-whatsapp:hover { border-color: var(--acid); color: var(--ink-1); }
.fechamento-whatsapp i { color: var(--acid); }
.fechamento-whatsapp-num {
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--glass-border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--ink-3);
}

/* === STICKY CTA mobile === */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.625rem 0.875rem calc(0.625rem + env(safe-area-inset-bottom, 0));
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; gap: 0.75rem;
  transform: translateY(120%);
  transition: transform var(--d-medium) var(--ease-snap);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-text {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--ink-3);
}
.sticky-cta-text strong { color: var(--acid); }
.sticky-cta .btn {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  animation: none;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* === Reveal-on-scroll === */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--d-medium) var(--ease-snap), transform var(--d-medium) var(--ease-snap);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 70ms; }
.reveal--delay-2 { transition-delay: 140ms; }
.reveal--delay-3 { transition-delay: 210ms; }
.reveal--delay-4 { transition-delay: 280ms; }

/* === prefers-reduced-motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-cursor { animation: none; opacity: 1; }
  .hero-mock-pulse, .prova-card--live::after { animation: none; }
  .btn--primary { animation: none; }
}
