/* ============================================
   NEURALACCESS — LANDING PAGE
   Dark premium · Orange accent · Responsive
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #0a0a0b;
  --bg-soft: #0f1012;
  --bg-elev: #15171a;
  --bg-card: #16181c;
  --bg-card-hover: #1c1f24;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --orange: #ff6a13;
  --orange-soft: #ff8a3d;
  --orange-deep: #e85a08;
  --orange-glow: rgba(255, 106, 19, 0.35);

  --green: #22c55e;
  --red: #ef4444;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 20px 60px -20px var(--orange-glow);

  --container: 1200px;
  --container-narrow: 880px;

  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t: 250ms cubic-bezier(.4,0,.2,1);
  --t-slow: 500ms cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
}
.section-lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid rgba(255, 106, 19, 0.3);
  border-radius: 999px;
  background: rgba(255, 106, 19, 0.08);
  margin-bottom: 20px;
}
.eyebrow-green { color: var(--green); border-color: rgba(34,197,94,.3); background: rgba(34,197,94,.08); }
.eyebrow-red   { color: #f87171;     border-color: rgba(239,68,68,.3); background: rgba(239,68,68,.08); }
.eyebrow-light { color: #fff;        border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 60%, #ffb27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform var(--t-fast), background var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.navbar.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 11, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 18px -6px var(--orange-glow);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}
.glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}
.glow-1 {
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  top: -180px; right: -120px;
}
.glow-2 {
  background: radial-gradient(circle, rgba(106, 19, 255, 0.18), transparent 70%);
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 106, 19, 0.06); }
}
.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.trust-seals li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seal-icon {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

/* hero visual */
.hero-visual {
  position: relative;
  perspective: 1400px;
}
.dashboard-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 106, 19, 0.06);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform var(--t-slow);
}
.dashboard-card:hover { transform: rotateY(-3deg) rotateX(2deg); }

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}
.dash-body { padding: 24px; }
.dash-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.dash-row:last-of-type { border-bottom: none; }
.dash-label { color: var(--text-muted); font-size: 14px; }
.dash-value { color: var(--text); font-weight: 600; font-size: 14px; }
.dash-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.pill-on {
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.dash-bar { margin: 18px 0 22px; }
.dash-bar-label {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.dash-bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--orange-glow);
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.dash-mini {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.dash-mini-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.dash-mini-lbl {
  font-size: 12px;
  color: var(--text-dim);
}
.dash-foot {
  font-size: 11px;
  color: var(--text-dim);
  margin: 0;
  font-style: italic;
}

.floating-chip {
  position: absolute;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.chip-1 { top: -12px; left: -10px; animation-delay: 0s; }
.chip-2 { bottom: 30px; right: -16px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ---------- PROBLEMA ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.problem-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}
.problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.problem-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- SOLUÇÃO ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--t), background var(--t);
}
.solution-item:hover {
  border-color: rgba(255, 106, 19, 0.35);
  background: var(--bg-card-hover);
}
.solution-num {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  padding: 6px 10px;
  background: rgba(255, 106, 19, 0.08);
  border: 1px solid rgba(255, 106, 19, 0.2);
  border-radius: 8px;
  height: fit-content;
}
.solution-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.solution-item p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- COMO FUNCIONA ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step-number {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid rgba(255, 106, 19, 0.4);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  box-shadow: 0 0 0 6px var(--bg), 0 0 30px -8px var(--orange-glow);
}
.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

.note-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 50px;
  padding: 18px 22px;
  background: rgba(255, 106, 19, 0.06);
  border: 1px solid rgba(255, 106, 19, 0.2);
  border-radius: var(--radius);
}
.note-box svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.note-box p { margin: 0; font-size: 14.5px; color: var(--text-muted); }
.note-box p strong { color: var(--text); }
.note-box-soft {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  margin-top: 36px;
}
.note-box-soft svg { color: var(--text-muted); }

/* ---------- TRANSPARÊNCIA ---------- */
.transp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.transp-card {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--t), background var(--t);
}
.transp-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}
.transp-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}
.transp-bullet {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange-glow);
  flex-shrink: 0;
}
.transp-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- BENEFÍCIOS ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 19, 0.3);
  background: var(--bg-card-hover);
}
.benefit-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255, 106, 19, 0.1);
  border: 1px solid rgba(255, 106, 19, 0.2);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 18px;
}
.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- PARA QUEM É / NÃO É ---------- */
.audience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.audience-col {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.audience-col h2 {
  font-size: 26px;
  margin-bottom: 24px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.check-on {
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.check-off {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.audience-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- COMPARATIVO ---------- */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-col {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.compare-bad { opacity: 0.85; }
.compare-good {
  border-color: rgba(255, 106, 19, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 106, 19, 0.1), var(--shadow-glow);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.04) 100%);
}
.compare-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.compare-head h3 { font-size: 19px; }
.compare-tag {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.tag-bad {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.tag-good {
  background: rgba(255, 106, 19, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 106, 19, 0.3);
}
.compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.compare-col .x { color: #f87171; font-weight: 700; flex-shrink: 0; }
.compare-col .v { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ---------- PLANOS ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.plan-featured {
  border-color: rgba(255, 106, 19, 0.4);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.05) 100%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}
.plan-featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px var(--orange-glow);
}
.plan-head h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.plan-target {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.price-currency { font-size: 16px; color: var(--text-muted); font-weight: 600; }
.price-value {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-period { font-size: 14px; color: var(--text-dim); margin-left: 4px; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.plan-features li span {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- CONFIANÇA ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.trust-item {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.trust-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 12px;
}
.trust-item h4 { font-size: 16px; margin-bottom: 6px; }
.trust-item p { color: var(--text-muted); font-size: 14px; margin: 0; }

.testimonials-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial p {
  color: var(--text);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.testimonial-author span {
  color: var(--text-dim);
  font-size: 13px;
}
.testimonials-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: rgba(255, 106, 19, 0.3); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.02); }
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform var(--t);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 2px; transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  animation: faqIn var(--t) ease-out;
}
.faq-body p { margin: 0; }
.faq-body strong { color: var(--text); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- COMPROMISSO ---------- */
.commit-card {
  text-align: center;
  padding: 56px 48px;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.commit-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.commit-card h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 22px;
  position: relative;
}
.commit-card > p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
}
.commit-card > p strong { color: var(--text); }
.commit-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.commit-points div {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.commit-points span { color: var(--orange); font-weight: 700; }

/* ---------- CTA FINAL ---------- */
.cta-final { padding-top: 60px; }
.cta-card {
  position: relative;
  text-align: center;
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1a0d05 0%, #0f0a07 100%);
  border: 1px solid rgba(255, 106, 19, 0.3);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px var(--orange-glow);
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 106, 19, 0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255, 106, 19, 0.12), transparent 50%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}
.cta-card > p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta-fineprint {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 70px 0 30px;
  background: #060607;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 16px 0 0;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-disclaimer { font-style: italic; }

/* ---------- CTA FLUTUANTE ---------- */
.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: 0 12px 30px -8px var(--orange-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover { transform: translateY(-2px); }

/* ---------- ANIMAÇÕES DE ENTRADA ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.4,0,.2,1), transform 700ms cubic-bezier(.4,0,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ADIÇÕES — Three.js canvas, pirâmide, garantias,
   model chips, plan credits, savings bars
   ============================================ */

/* ---------- THREE.JS CANVAS ---------- */
.three-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#three-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#three-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.three-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(10, 10, 11, 0.55) 60%, rgba(10, 10, 11, 0.85) 100%),
    linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.6) 100%);
  pointer-events: none;
}

/* Hero centralizado para conviver com o canvas */
.hero { padding: 140px 0 110px; }
.hero-content-centered {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-content-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-content-centered .hero-cta { justify-content: center; }
.hero-content-centered .trust-seals { justify-content: center; }

/* ---------- MODEL CHIPS (hero) ---------- */
.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}
.model-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(22, 24, 28, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color var(--t), transform var(--t);
}
.model-chip:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.22); }
.model-chip-featured {
  border-color: rgba(255, 106, 19, 0.45);
  background: linear-gradient(135deg, rgba(255, 106, 19, 0.1) 0%, rgba(22, 24, 28, 0.8) 100%);
  box-shadow: 0 0 30px -10px var(--orange-glow);
}
.model-chip .chip-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.model-chip strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.model-chip em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
}
.model-chip-featured strong { color: var(--orange-soft); }

/* ---------- TEXTO "DANGER" ---------- */
.text-danger {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- SEÇÃO MERCADO (PIRÂMIDE) ---------- */
.section-market { position: relative; }
.section-market::before {
  content: '';
  position: absolute;
  top: 100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.pyramid-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.pyramid-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  perspective: 1000px;
}
.pyramid-layer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.04) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  text-align: center;
  transition: transform var(--t);
  backdrop-filter: blur(8px);
}
.pyramid-layer:hover { transform: translateZ(20px) scale(1.02); }
.pyramid-label {
  font-weight: 700;
  font-size: 15px;
  color: #f87171;
  margin-bottom: 4px;
}
.pyramid-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 280px;
}
.pyramid-top  { width: 220px; }
.pyramid-mid  { width: 340px; }
.pyramid-base { width: 460px; }
.pyramid-base { background: linear-gradient(180deg, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0.06) 100%); }

.pyramid-content h3 {
  font-size: 22px;
  margin-bottom: 24px;
}
.pyramid-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.pyramid-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pyr-num {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #f87171;
  padding: 5px 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
}
.pyramid-list strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.pyramid-list p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pyramid-list em { color: var(--text); font-style: italic; }

.pyramid-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid #ef4444;
  border-radius: 10px;
}
.pyramid-quote svg { color: #f87171; flex-shrink: 0; margin-top: 2px; }
.pyramid-quote p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

/* ---------- DIFF GRID (nossa diferença) ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.diff-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: transform var(--t);
}
.diff-card:hover { transform: translateY(-4px); }
.diff-bad { opacity: 0.85; }
.diff-good {
  border-color: rgba(255, 106, 19, 0.35);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.05) 100%);
  box-shadow: 0 0 0 1px rgba(255, 106, 19, 0.1), var(--shadow-glow);
}
.diff-head { margin-bottom: 22px; }
.diff-head h3 { font-size: 22px; margin-top: 12px; }
.diff-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.diff-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diff-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.diff-card .x { color: #f87171; font-weight: 700; flex-shrink: 0; }
.diff-card .v { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ---------- GARANTIAS HONESTAS ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.guarantee-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.guarantee-no::before  { background: linear-gradient(90deg, #ef4444, #f87171); }
.guarantee-yes::before { background: linear-gradient(90deg, var(--orange), var(--orange-soft)); }
.guarantee-yes {
  border-color: rgba(255, 106, 19, 0.3);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.04) 100%);
  box-shadow: var(--shadow-glow);
}
.guarantee-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
}
.guarantee-no .guarantee-icon {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}
.guarantee-yes .guarantee-icon {
  background: rgba(255, 106, 19, 0.1);
  border: 1px solid rgba(255, 106, 19, 0.3);
  color: var(--orange);
}
.guarantee-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.guarantee-no .guarantee-tag {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.guarantee-yes .guarantee-tag {
  background: rgba(255, 106, 19, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 106, 19, 0.3);
}
.guarantee-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.guarantee-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 14px;
  line-height: 1.7;
}
.guarantee-card p:last-of-type { margin-bottom: 0; }
.guarantee-foot {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.guarantee-foot strong { color: var(--text); }
.guarantee-yes .guarantee-foot strong { color: var(--orange-soft); }

.guarantee-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.g-extra {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.g-extra-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-weight: 700;
  font-size: 13px;
}
.g-extra strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.g-extra p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- BENEFIT FEATURED (Opus 4.7) ---------- */
.benefit-card.benefit-featured {
  border-color: rgba(255, 106, 19, 0.4);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.06) 100%);
  box-shadow: 0 0 0 1px rgba(255, 106, 19, 0.1);
}
.benefit-card.benefit-featured .benefit-icon {
  background: rgba(255, 106, 19, 0.18);
  border-color: rgba(255, 106, 19, 0.4);
}

/* ---------- PLAN CREDIT (USD info) ---------- */
.plan-credit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
}
.credit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.credit-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.credit-ratio {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
}
.plan-credit-featured {
  background: linear-gradient(135deg, rgba(255, 106, 19, 0.1) 0%, rgba(255, 106, 19, 0.03) 100%);
  border: 1px solid rgba(255, 106, 19, 0.3);
  border-style: solid;
}
.plan-credit-featured .credit-value { color: var(--orange-soft); }
.plan-credit-featured .credit-ratio { color: var(--orange); }

/* ---------- SAVINGS BARS ---------- */
.plan-savings { margin-top: 56px; }
.savings-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  max-width: 820px;
  margin: 0 auto;
}
.savings-head {
  text-align: center;
  margin-bottom: 32px;
}
.savings-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.savings-head h3 {
  font-size: 22px;
}
.savings-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.savings-row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  align-items: center;
  gap: 16px;
}
.savings-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.savings-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.savings-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-deep) 0%, var(--orange) 100%);
  border-radius: 999px;
  position: relative;
  animation: fillGrow 1.2s cubic-bezier(.4,0,.2,1) both;
  transform-origin: left center;
}
@keyframes fillGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.savings-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  text-align: right;
}
.savings-row-featured .savings-fill {
  background: linear-gradient(90deg, var(--orange-deep) 0%, var(--orange) 50%, var(--orange-soft) 100%);
  box-shadow: 0 0 16px var(--orange-glow);
}
.savings-row-featured .savings-label { color: var(--text); }
.savings-row-featured .savings-value { color: var(--orange-soft); font-size: 18px; }
.savings-foot {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}

/* ============================================
   NOVOS BLOCOS — hero dividido, painel, CTA inline,
   plano Teste, badge-model, hero-chip
   ============================================ */

/* ---------- HERO DIVIDIDO ---------- */
.hero { padding: 140px 0 100px; }

/* coluna copy */
.hero-copy { max-width: 600px; }

.hero-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-top-row .badge { margin-bottom: 0; }

.badge-model {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 106, 19, 0.1);
  border: 1px solid rgba(255, 106, 19, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-soft);
}
.badge-model svg { color: var(--orange); }

/* ---------- PAINEL HERO (coluna direita) ---------- */
.hero-panel {
  position: relative;
}

.hpanel {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 106, 19, 0.06), var(--shadow-glow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  transition: transform var(--t-slow);
}
.hpanel:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.hpanel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.hpanel-dots { display: flex; gap: 6px; }
.hpanel-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.hpanel-dots span:nth-child(1) { background: #ff5f57; }
.hpanel-dots span:nth-child(2) { background: #febc2e; }
.hpanel-dots span:nth-child(3) { background: #28c840; }
.hpanel-title {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}
.hpanel-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.hpanel-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.hpanel-body { padding: 22px; }

.hpanel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 12px;
}

/* modelos */
.hpanel-models { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.hpanel-model {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast);
}
.hpanel-model:hover { border-color: var(--line-strong); }
.hpanel-model-featured {
  border-color: rgba(255, 106, 19, 0.3);
  background: linear-gradient(135deg, rgba(255, 106, 19, 0.08) 0%, rgba(255, 106, 19, 0.02) 100%);
}
.hpanel-model-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hpanel-model-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  flex-shrink: 0;
}
.hpanel-model-dot-dim {
  background: var(--text-dim);
  box-shadow: none;
}
.hpanel-model strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 2px;
}
.hpanel-model em {
  font-style: normal;
  font-size: 11px;
  color: var(--text-dim);
}
.hpanel-model-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: rgba(255, 106, 19, 0.15);
  color: var(--orange);
  border: 1px solid rgba(255, 106, 19, 0.3);
  border-radius: 999px;
  flex-shrink: 0;
}

.hpanel-sep {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

/* consumo */
.hpanel-usage { display: flex; flex-direction: column; gap: 8px; }
.hpanel-usage-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.hpanel-uval {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--text);
}
.hpanel-uval-green { color: var(--green); }
.hpanel-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin: 4px 0 2px;
}
.hpanel-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-deep) 0%, var(--orange) 100%);
  border-radius: 999px;
  box-shadow: 0 0 10px var(--orange-glow);
}
.hpanel-bar-label {
  font-size: 11px;
  color: var(--text-dim);
}

/* requisição */
.hpanel-req {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.hpanel-req-method {
  padding: 2px 8px;
  background: rgba(255, 106, 19, 0.15);
  color: var(--orange);
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
}
.hpanel-req-path { color: var(--text-muted); flex: 1; }
.hpanel-req-ms { color: var(--text-dim); }
.hpanel-req-status {
  padding: 2px 8px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
}

/* chips flutuantes */
.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}
.hero-chip svg { color: var(--orange); flex-shrink: 0; }
.chip-a { top: -18px; left: -20px; animation-delay: 0s; }
.chip-b { bottom: 20px; right: -24px; animation-delay: 1.8s; }

/* ---------- CTA INLINE ---------- */
.cta-inline {
  background: linear-gradient(135deg, rgba(255, 106, 19, 0.07) 0%, rgba(255, 106, 19, 0.02) 100%);
  border-top: 1px solid rgba(255, 106, 19, 0.18);
  border-bottom: 1px solid rgba(255, 106, 19, 0.18);
  padding: 28px 0;
}
.cta-inline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inline-inner > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-inline-inner strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.cta-inline-inner span {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ---------- PLANO TESTE ---------- */
.plan-test {
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 0.9;
}
.plan-test .plan-credit {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
}
.plan-test .credit-ratio {
  color: var(--text-dim);
  font-style: italic;
}
.plan-x {
  color: var(--text-dim) !important;
  font-weight: 400;
}

/* Cards de planos com faixa Enterprise em largura total */
.plans-grid {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}
.plans-grid-compact {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  max-width: none;
}
.plans-grid > .plan-card:not(.plan-enterprise) {
  min-height: 100%;
  padding: 30px 30px 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%),
    var(--bg-card);
  box-shadow: 0 14px 38px -28px rgba(0, 0, 0, 0.8);
}
.plans-grid > .plan-card:not(.plan-enterprise):hover {
  background:
    linear-gradient(180deg, rgba(255, 106, 19, 0.055), transparent 40%),
    var(--bg-card-hover);
  box-shadow: 0 22px 48px -30px rgba(255, 106, 19, 0.32);
}
.plan-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-kicker-featured {
  color: var(--orange-soft);
  border-color: rgba(255, 106, 19, 0.34);
  background: rgba(255, 106, 19, 0.09);
}
.plans-grid > .plan-card:not(.plan-enterprise) .plan-head {
  min-height: 62px;
}
.plans-grid > .plan-card:not(.plan-enterprise) .plan-target {
  margin-bottom: 18px;
}
.plans-grid > .plan-card:not(.plan-enterprise) .plan-price {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.plans-grid > .plan-card:not(.plan-enterprise) .price-value {
  font-size: clamp(42px, 4vw, 48px);
}
.plans-grid > .plan-card:not(.plan-enterprise) .plan-credit {
  margin-bottom: 20px;
  padding: 16px 18px;
}
.plans-grid > .plan-card:not(.plan-enterprise) .plan-features {
  gap: 10px;
  margin-bottom: 26px;
}
.plans-grid > .plan-card:not(.plan-enterprise) .btn {
  min-height: 50px;
}
.plan-featured {
  transform: none;
  border-color: rgba(255, 106, 19, 0.52) !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 106, 19, 0.14), transparent 35%),
    linear-gradient(160deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.07) 100%) !important;
}
.plan-featured:hover {
  transform: translateY(-4px);
}
.plan-enterprise {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(310px, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 50px;
  margin-top: 16px;
  padding: 38px 42px;
  overflow: hidden;
  border-color: rgba(255, 106, 19, 0.36);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 106, 19, 0.18), transparent 38%),
    linear-gradient(125deg, var(--bg-card) 0%, rgba(255, 106, 19, 0.05) 100%);
  box-shadow: 0 26px 62px -44px rgba(255, 106, 19, 0.52);
}
.plan-enterprise::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 106, 19, 0.12);
  filter: blur(54px);
  pointer-events: none;
}
.plan-enterprise:hover {
  border-color: rgba(255, 106, 19, 0.55);
  box-shadow: var(--shadow-glow);
}
.enterprise-main,
.enterprise-action {
  position: relative;
  z-index: 1;
}
.enterprise-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 106, 19, 0.3);
  border-radius: 999px;
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-enterprise .plan-head h3 {
  font-size: clamp(28px, 3vw, 34px);
}
.plan-enterprise .plan-target {
  margin: 7px 0 18px;
  font-size: 15px;
}
.enterprise-pitch {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.enterprise-action {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 11, 0.3);
}
.enterprise-channel {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}
.enterprise-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
  margin-bottom: 24px;
}
.enterprise-features li {
  font-size: 14px;
}

/* ---------- RESPONSIVO (continuação) ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 70px; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .problem-grid, .solution-grid, .transp-grid, .trust-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin: 0; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps::before { display: none; }

  /* novas seções */
  .pyramid-wrap { grid-template-columns: 1fr; gap: 50px; }
  .pyramid-visual { order: 1; }
  .pyramid-content { order: 2; }
  .pyramid-base { width: 380px; }
  .pyramid-mid  { width: 280px; }
  .pyramid-top  { width: 180px; }
  .diff-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-extras { grid-template-columns: repeat(2, 1fr); }

  /* hero dividido */
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 100%; }
  .hpanel { transform: none; }
  .hpanel:hover { transform: none; }
  .hero-chip { display: none; }

  /* planos 4 colunas → 2 */
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-enterprise {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 12px 0;
  }
  .nav-links.open a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 110px 0 50px; }
  .hero-cta .btn { flex: 1; }

  .problem-grid, .solution-grid, .transp-grid,
  .benefits-grid, .trust-grid, .testimonials-grid,
  .compare-table, .audience-wrap, .commit-points {
    grid-template-columns: 1fr;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .commit-card, .cta-card { padding: 40px 24px; }
  .audience-col { padding: 28px; }
  .float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
  .floating-chip { display: none; }
  .dashboard-card { transform: none; }
  .dashboard-card:hover { transform: none; }

  /* novas seções mobile */
  .pyramid-base { width: 100%; max-width: 320px; }
  .pyramid-mid  { width: 80%;  max-width: 260px; }
  .pyramid-top  { width: 60%;  max-width: 200px; }
  .pyramid-content h3 { font-size: 19px; }
  .guarantee-extras { grid-template-columns: 1fr; }
  .guarantee-card { padding: 28px; }
  .guarantee-card h3 { font-size: 20px; }
  .savings-card { padding: 26px; }
  .savings-row { grid-template-columns: 90px 1fr 50px; gap: 12px; }
  .savings-label { font-size: 13px; }
  .model-chips { gap: 8px; }
  .model-chip { padding: 10px 14px; }
  .model-chip strong { font-size: 13px; }
  .model-chip em { font-size: 11px; }
  .three-overlay {
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(10, 10, 11, 0.7) 60%, rgba(10, 10, 11, 0.95) 100%);
  }

  /* hero mobile */
  .hero { padding: 100px 0 60px; }
  .hero-top-row { gap: 8px; }
  .hpanel-models .hpanel-model:last-child { display: none; }

  /* CTA inline mobile */
  .cta-inline-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-inline-inner > div[style] { flex-direction: row; }

  /* planos mobile */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-test { order: -1; }
  .plans-grid > .plan-card:not(.plan-enterprise) {
    padding: 30px 24px;
  }
  .plans-grid > .plan-card:not(.plan-enterprise) .plan-head {
    min-height: 0;
  }
  .plan-enterprise {
    margin-top: 8px;
    padding: 28px 22px;
  }
  .enterprise-action { padding: 20px; }
  .enterprise-features { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 32px; }
  .container { padding: 0 18px; }
  .commit-card, .cta-card { padding: 32px 20px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
}

/* ---------- ACESSIBILIDADE ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
