/* ═══════════════════════════════════════════════════════════
   NHIDRA | Landing Page Institucional
   Sistema visual: brand-manual.html v1.0
   ═══════════════════════════════════════════════════════════ */

:root {
  --purple:   #7B5CF5;
  --purple-l: #9B7EFF;
  --purple-d: #5A3ED4;
  --bg:       #0D0D0C;
  --surface:  #141413;
  --surface2: #1C1C1B;
  --border:   rgba(255,255,255,0.08);
  --border-p: rgba(123,92,245,0.35);
  --text:     #F0F0EF;
  --text-hi:  #F5F4F0;
  --text-dim: #999990;
  --text-dim2:#888882;
  --green:    #52C97B;
  --red:      #E05252;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-label:   'Syne', sans-serif;

  --container: 1100px;
  --radius: 12px;
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

::selection { background: rgba(123,92,245,0.35); color: var(--text-hi); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-d); }

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

.section { padding: 110px 0; position: relative; }
.section-alt {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(123,92,245,0.05), transparent 65%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ═══════════ TIPOGRAFIA ═══════════ */
h1, h2, h3 { font-family: var(--font-display); color: var(--text-hi); }

h1 {
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
h1 em, h2 em { font-style: normal; color: var(--purple-l); }

p { color: var(--text-dim); }
.lead {
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.75;
  max-width: 640px;
  margin-top: 18px;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim2);
}
.eyebrow.purple { color: var(--purple-l); }

.eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow-line {
  width: 32px; height: 1px;
  background: var(--purple-l);
  opacity: 0.35;
}

.accent-line {
  width: 28px; height: 2px;
  background: var(--purple);
  border-radius: 2px;
  margin-bottom: 14px;
}

.section-head { margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 10px; }

/* ═══════════ ÍCONES ═══════════ */
.icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ═══════════ BOTÕES ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.25s, transform 0.15s;
}
.btn .icon { width: 17px; height: 17px; transition: transform 0.2s; }
.btn:hover .icon { transform: translateX(3px); }

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 rgba(123,92,245,0);
}
.btn-primary:hover {
  background: var(--purple-d);
  box-shadow: 0 6px 32px rgba(123,92,245,0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--border-p); color: var(--purple-l); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-xl { padding: 18px 40px; font-size: 16px; border-radius: 12px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--purple-l);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════ HEADER ═══════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(13,13,12,0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img { height: 26px; width: auto; }
.header-nav { display: flex; gap: 30px; }
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--text-hi); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 70px) 0 90px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-sub {
  font-size: clamp(15px, 2.6vw, 18px);
  line-height: 1.75;
  max-width: 660px;
  margin-top: 26px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-note {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim2);
  margin-top: 18px;
}

/* fundo: orbs + grid */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.orb-1 {
  width: 560px; height: 560px;
  top: -180px; left: 50%;
  margin-left: -280px;
  background: radial-gradient(circle, rgba(123,92,245,0.32) 0%, transparent 70%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.orb-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -140px;
  background: radial-gradient(circle, rgba(90,62,212,0.22) 0%, transparent 70%);
  animation: drift2 28s ease-in-out infinite alternate;
}
.orb-3 {
  width: 380px; height: 380px;
  bottom: -100px; right: -120px;
  background: radial-gradient(circle, rgba(155,126,255,0.16) 0%, transparent 70%);
  animation: drift3 25s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,40px) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,-40px) scale(1.08); } }
@keyframes drift3 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(-50px,-30px) scale(1); } }

.hero-grid {
  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: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
}
/* trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 64px;
  padding: 22px 32px;
  background: rgba(20,20,19,0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.trust-item strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--purple-l); letter-spacing: -0.01em; }
.trust-item span { font-size: 11.5px; color: var(--text-dim2); letter-spacing: 0.02em; }
.trust-sep { width: 1px; height: 30px; background: var(--border); }

/* ═══════════ GRIDS ═══════════ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ═══════════ CARDS ═══════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.3s;
}
.card::after {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(123,92,245,0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-p);
  box-shadow: 0 14px 44px rgba(0,0,0,0.35);
}
.card:hover::after { opacity: 1; }

.card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: rgba(123,92,245,0.1);
  border: 1px solid rgba(123,92,245,0.25);
  color: var(--purple-l);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 13.5px; line-height: 1.7; }

/* ═══════════ DIAGNÓSTICO / SINAIS ═══════════ */
.problem-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
}
.problem-statement {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(123,92,245,0.16), rgba(123,92,245,0.025) 58%, transparent),
    var(--surface);
  border: 1px solid var(--border-p);
  border-radius: 20px;
}
.problem-statement::before {
  content: '';
  position: absolute;
  width: 230px; height: 230px;
  right: -92px; top: -92px;
  border: 1px solid rgba(155,126,255,0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(155,126,255,0.035), 0 0 0 64px rgba(155,126,255,0.025);
}
.problem-index {
  position: relative;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-l);
}
.problem-statement p {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--text-hi);
}
.problem-pulse { position: relative; display: flex; align-items: end; gap: 7px; height: 42px; }
.problem-pulse span { width: 7px; border-radius: 9px; background: var(--purple-l); box-shadow: 0 0 16px rgba(155,126,255,0.42); }
.problem-pulse span:nth-child(1) { height: 12px; opacity: .42; }
.problem-pulse span:nth-child(2) { height: 28px; opacity: .68; }
.problem-pulse span:nth-child(3) { height: 18px; opacity: .56; }
.problem-pulse span:nth-child(4) { height: 42px; }
.problem-signals { list-style: none; display: flex; flex-direction: column; justify-content: center; }
.problem-signals li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid var(--border);
}
.problem-signals li:last-child { border-bottom: 1px solid var(--border); }
.signal-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-l);
  padding-top: 3px;
}
.problem-signals h3 { font-size: 18px; margin-bottom: 6px; }
.problem-signals p { font-size: 14px; line-height: 1.7; max-width: 500px; }

/* ═══════════ ATLAS DA EMPRESA AUTÔNOMA ═══════════ */
.autonomy-atlas {
  position: relative;
  height: 510px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 50%, rgba(123,92,245,0.14), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(123,92,245,0.06), transparent 52%);
}
.atlas-orbit, .atlas-orbit::before, .atlas-orbit::after {
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid rgba(155,126,255,0.18);
  border-radius: 50%;
  content: '';
}
.atlas-orbit { width: 330px; height: 330px; transform: translate(-50%, -50%); }
.atlas-orbit::before { width: 430px; height: 430px; transform: translate(-50%, -50%); }
.atlas-orbit::after { width: 540px; height: 540px; transform: translate(-50%, -50%); opacity: .48; }
.atlas-core {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 2;
  width: 220px; height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(155,126,255,0.28), rgba(13,13,12,0.97) 68%);
  border: 1px solid var(--border-p);
  box-shadow: 0 0 70px rgba(123,92,245,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}
.atlas-core .eyebrow { font-size: 8px; letter-spacing: .18em; }
.atlas-core strong { font-family: var(--font-display); font-size: 27px; line-height: 1; letter-spacing: -.045em; color: var(--text-hi); }
.atlas-core strong em { color: var(--purple-l); font-style: normal; }
.atlas-core > span:last-child { max-width: 164px; font-size: 10px; line-height: 1.45; color: var(--text-dim); }
.atlas-point {
  position: absolute;
  z-index: 3;
  width: min(27%, 260px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.atlas-point .icon { width: 28px; height: 28px; color: var(--purple-l); padding: 6px; border: 1px solid rgba(155,126,255,0.35); border-radius: 50%; }
.atlas-point strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text-hi); margin-bottom: 3px; }
.atlas-point span { display: block; font-size: 12px; line-height: 1.5; color: var(--text-dim); }
.atlas-humanos { left: 5%; top: 13%; }
.atlas-digitais { right: 4%; top: 18%; }
.atlas-processos { left: 10%; bottom: 16%; }
.atlas-dados { right: 5%; bottom: 13%; }

/* ═══════════ ORG DIAGRAM (Organização Híbrida) ═══════════ */
.org-diagram { margin-top: 10px; }
.org-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.org-node {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: transform 0.25s, border-color 0.25s;
}
.org-node:hover { transform: translateY(-3px); border-color: var(--border-p); }
.org-node .icon { color: var(--purple-l); width: 24px; height: 24px; }
.org-node strong {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-hi);
}
.org-node span { font-size: 12.5px; line-height: 1.65; color: var(--text-dim); }

.org-connector {
  width: 1px;
  height: 44px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--border), var(--purple));
  position: relative;
}
.org-connector::before, .org-connector::after {
  content: '';
  position: absolute;
  top: 0;
  width: min(38vw, 400px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(123,92,245,0.3));
}
.org-connector::before { right: 0; transform: scaleX(-1); }
.org-connector::after { left: 0; }

.org-center {
  background: linear-gradient(135deg, rgba(123,92,245,0.12), rgba(123,92,245,0.03)), var(--surface);
  border: 1px solid var(--border-p);
  border-radius: var(--radius);
  padding: 30px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 60px rgba(123,92,245,0.08);
}
.org-center strong {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 600;
  color: var(--text-hi);
  letter-spacing: -0.01em;
}

.note-strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 40px;
  padding: 22px 26px;
  background: rgba(123,92,245,0.05);
  border: 1px solid rgba(123,92,245,0.18);
  border-left: 2px solid var(--purple);
  border-radius: 10px;
}
.note-strip .icon { color: var(--purple-l); margin-top: 2px; }
.note-strip p { font-size: 14px; color: #C9C9C2; line-height: 1.7; }

/* ═══════════ STEPPER ═══════════ */
.stepper { position: relative; margin: 20px 0 70px; }
.stepper-track {
  position: absolute;
  top: 7px; left: 2%; right: 2%;
  height: 2px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}
.stepper-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--purple-d), var(--purple-l));
  border-radius: 2px;
  transition: width 0.15s linear;
}
.stepper-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.step { position: relative; padding-top: 32px; }
.step-dot {
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--surface2);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step.lit .step-dot {
  border-color: var(--purple);
  box-shadow: 0 0 12px rgba(123,92,245,0.55);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: rgba(155,126,255,0.18);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.step.lit .step-num { color: rgba(155,126,255,0.45); }
.step strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-hi);
  display: block;
  margin-bottom: 7px;
}
.step p { font-size: 12.5px; line-height: 1.65; }

/* produtos da escada */
.ladder-products { margin-top: 10px; }
.product-card .eyebrow { display: block; font-size: 10px; margin-bottom: 8px; }
.product-card h3 { font-size: 19px; }
.product-card.featured {
  border-color: var(--border-p);
  background: linear-gradient(135deg, rgba(123,92,245,0.09), rgba(123,92,245,0.02)), var(--surface);
}
.product-card.featured::after { opacity: 1; }

/* ═══════════ KPI / RESULTADOS ═══════════ */
.kpi {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: '';
  position: absolute;
  top: 0; left: 24px;
  width: 28px; height: 2px;
  background: var(--purple);
  border-radius: 0 0 2px 2px;
}
.kpi:hover { transform: translateY(-3px); border-color: var(--border-p); }
.kpi-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-l);
  border: 1px solid rgba(155,126,255,0.35);
  border-radius: 20px;
  padding: 3px 11px;
  margin-bottom: 16px;
}
.kpi-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.02em;
  color: var(--text-hi);
  line-height: 1.15;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.kpi p { font-size: 13px; line-height: 1.65; }

.mid-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mid-cta p {
  font-family: var(--font-display);
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 500;
  color: var(--text-hi);
  letter-spacing: -0.01em;
}

/* ═══════════ RESULTADOS / EDITORIAL ═══════════ */
.results-showcase { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); gap: 28px; align-items: stretch; }
.results-feature {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border-p);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(123,92,245,0.2), rgba(123,92,245,0.02) 65%),
    var(--surface2);
}
.results-feature-copy { position: relative; z-index: 2; max-width: 380px; }
.results-feature-copy .eyebrow { display: block; margin-bottom: 18px; }
.results-feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  color: var(--text-hi);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.results-feature-copy p { font-size: 15px; line-height: 1.7; color: #C9C9C2; }
.results-bars { position: absolute; inset: 24px 28px auto auto; height: 210px; width: 48%; display: flex; align-items: end; justify-content: end; gap: 10px; opacity: .78; }
.results-bars::before { content: ''; position: absolute; inset: 8% 0 0; background: repeating-linear-gradient(to bottom, transparent 0 40px, rgba(255,255,255,.07) 41px); }
.results-bars i { position: relative; z-index: 1; width: 17%; min-width: 18px; border-radius: 8px 8px 0 0; background: linear-gradient(to top, var(--purple-d), var(--purple-l)); box-shadow: 0 0 28px rgba(123,92,245,.2); }
.results-bars i:nth-child(1) { height: 32%; opacity: .44; }
.results-bars i:nth-child(2) { height: 49%; opacity: .58; }
.results-bars i:nth-child(3) { height: 70%; opacity: .74; }
.results-bars i:nth-child(4) { height: 100%; }
.results-list { display: flex; flex-direction: column; justify-content: space-between; }
.result-row { padding: 22px 0 24px; border-bottom: 1px solid var(--border); }
.result-row:first-child { padding-top: 2px; }
.result-sector { display: block; font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--purple-l); margin-bottom: 10px; }
.result-row strong { display: block; font-family: var(--font-display); font-size: clamp(29px, 3.5vw, 40px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--text-hi); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.result-row p { font-size: 13px; line-height: 1.65; max-width: 330px; }

/* ═══════════ DIFERENCIAIS / MANIFESTO ═══════════ */
.difference-manifesto { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(28px, 5vw, 72px); }
.difference-item {
  display: grid;
  grid-template-columns: 28px 30px 1fr;
  align-items: start;
  gap: 15px;
  padding: 27px 0;
  border-top: 1px solid var(--border);
}
.difference-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
.difference-item > span { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--purple-l); padding-top: 3px; }
.difference-item .icon { width: 22px; height: 22px; color: var(--purple-l); }
.difference-item h3 { font-size: 17px; margin-bottom: 7px; }
.difference-item p { font-size: 13.5px; line-height: 1.65; }

/* ═══════════ FUNDADOR ═══════════ */
.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  border: 1px solid var(--border-p);
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(123,92,245,0.16), transparent 65%),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.founder-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.82), transparent);
  pointer-events: none;
}
.founder-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.founder-frame-note {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  z-index: 1;
  text-align: center;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-hi);
}
.founder-copy p { margin-bottom: 16px; line-height: 1.75; }
.founder-copy .section-head { margin-bottom: 26px; }

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 28px;
}
.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #C9C9C2;
  line-height: 1.6;
}
.pillar-list .icon { width: 18px; height: 18px; color: var(--purple-l); margin-top: 2px; }

.founder-quote {
  border-left: 2px solid var(--purple);
  background: rgba(123,92,245,0.05);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
}
.founder-quote p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-hi);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════ FIT (para quem é / não é) ═══════════ */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-block { border-radius: var(--radius); padding: 30px 28px; }
.fit-yes { background: rgba(82,201,123,0.05); border: 1px solid rgba(82,201,123,0.22); }
.fit-no  { background: rgba(224,82,82,0.05);  border: 1px solid rgba(224,82,82,0.22); }
.fit-label {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fit-yes .fit-label { color: var(--green); }
.fit-no  .fit-label { color: var(--red); }
.fit-block ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.fit-block li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #C9C9C2;
  line-height: 1.6;
}
.fit-block .icon { width: 18px; height: 18px; margin-top: 2px; }
.fit-yes .icon { color: var(--green); }
.fit-no  .icon { color: var(--red); }

/* ═══════════ FAQ ═══════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: var(--border-p); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-hi);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--purple-l); }
.faq-chevron {
  width: 16px; height: 16px;
  color: var(--text-dim2);
  transform: rotate(90deg);
  transition: transform 0.3s, color 0.3s;
}
.faq-item[open] .faq-chevron { transform: rotate(-90deg); color: var(--purple-l); }
.faq-body { padding: 0 24px; overflow: hidden; }
.faq-body p { padding-bottom: 22px; font-size: 14px; line-height: 1.75; }

/* ═══════════ CTA FINAL ═══════════ */
.final-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 50% 110%, rgba(123,92,245,0.24), transparent 65%),
    radial-gradient(ellipse 45% 40% at 50% 0%, rgba(90,62,212,0.1), transparent 60%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-inner h2 { max-width: 720px; }
.final-inner .lead { text-align: center; margin-bottom: 38px; }
.final-inner .hero-note { margin-top: 20px; }

/* ═══════════ FOOTER ═══════════ */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 24px; width: auto; margin-bottom: 18px; }
.footer-slogan {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-hi);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.footer-slogan em { font-style: normal; color: var(--purple-l); }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-social a {
  font-size: 13.5px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
}
.footer-nav a:hover, .footer-social a:hover { color: var(--purple-l); }
.footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-social .eyebrow { margin-bottom: 4px; }
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  padding-bottom: 26px;
}
.footer-base span { font-size: 11.5px; color: var(--text-dim2); letter-spacing: 0.04em; }

/* ═══════════ CTA FIXO MOBILE ═══════════ */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(13,13,12,0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d-1 { transition-delay: 0.08s; }
.d-2 { transition-delay: 0.16s; }
.d-3 { transition-delay: 0.24s; }
.d-4 { transition-delay: 0.32s; }
.d-5 { transition-delay: 0.40s; }

/* ═══════════ RESPONSIVO ═══════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .org-pillars { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 320px 1fr; gap: 44px; }
  .stepper-steps { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .atlas-point { width: 31%; }
  .atlas-humanos { left: 1%; }
  .atlas-digitais { right: 1%; }
  .atlas-processos { left: 4%; }
  .atlas-dados { right: 1%; }
  .hero-layout { grid-template-columns: minmax(0, .95fr) minmax(350px, .8fr); gap: 38px; }
  .hero-system { min-height: 430px; }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .header-nav { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-photo { max-width: 340px; }
  .fit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 74px) 0 76px; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero .eyebrow-wrap { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-system { width: min(100%, 560px); margin: 0 auto; }
  .problem-layout { grid-template-columns: 1fr; gap: 28px; }
  .problem-statement { min-height: 290px; }
  .autonomy-atlas {
    height: auto;
    min-height: 0;
    padding: 34px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: radial-gradient(circle at 50% 22%, rgba(123,92,245,.14), transparent 32%);
  }
  .atlas-orbit { display: none; }
  .atlas-core { position: relative; grid-column: 1 / -1; left: auto; top: auto; margin: 0 auto 26px; transform: none; }
  .atlas-point { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: auto; min-height: 108px; padding: 20px; border-top: 1px solid var(--border); }
  .atlas-point:nth-of-type(2n) { border-left: 1px solid var(--border); }
  .results-showcase { grid-template-columns: 1fr; gap: 38px; }
  .results-feature { min-height: 350px; }
  .difference-manifesto { grid-template-columns: 1fr; }
  .difference-item:nth-last-child(-n+2) { border-bottom: 0; }
  .difference-item:last-child { border-bottom: 1px solid var(--border); }

  /* stepper vira vertical */
  .stepper-track {
    top: 2%; bottom: 2%; left: 7px; right: auto;
    width: 2px; height: auto;
  }
  .stepper-fill { width: 100% !important; height: 0%; transition: height 0.15s linear; }
  .stepper-steps { grid-template-columns: 1fr; gap: 30px; }
  .step { padding-top: 0; padding-left: 40px; }
  .step-dot { top: 4px; }
}

@media (max-width: 560px) {
  .container { padding-left: 20px; padding-right: 20px; }
  #header .container { padding-left: 16px; padding-right: 16px; }
  .header-inner { gap: 12px; }
  .header-logo img { height: 24px; }
  #header .btn-sm { padding: 9px 12px; font-size: 12px; }
  .grid-4 { grid-template-columns: 1fr; }
  .org-pillars { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--header-h) + 54px); padding-bottom: 58px; }
  .hero-layout, .hero-ctas { min-width: 0; }
  .hero h1 { max-width: 100%; font-size: clamp(30px, 8.8vw, 34px); line-height: 1.1; overflow-wrap: anywhere; }
  .hero h1 br { display: none; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; padding-left: 10px; padding-right: 10px; font-size: 12px; gap: 8px; }
  .trust-strip { gap: 16px; padding: 20px; display: grid; grid-template-columns: 1fr 1fr; }
  .trust-sep { display: none; }
  .hero-system { min-height: 350px; padding: 15px; border-radius: 16px; }
  .system-field { min-height: 274px; }
  .ring-one { width: 142px; height: 142px; }
  .ring-two { width: 226px; height: 226px; }
  .system-core { width: 108px; height: 108px; }
  .system-core strong { font-size: 16px; }
  .system-node { max-width: 130px; padding: 6px 7px; font-size: 7.5px; letter-spacing: .06em; gap: 5px; }
  .node-acq { left: 0; top: 13%; }
  .node-sales { right: 0; top: 20%; }
  .node-data { left: 0; bottom: 11%; }
  .node-digital { right: 0; bottom: 6%; }
  .mobile-cta { display: block; }
  body { padding-bottom: 0; }
  .final-cta { padding: 100px 0 120px; }
  .problem-statement { min-height: 260px; padding: 27px; }
  .problem-signals li { grid-template-columns: 42px 1fr; gap: 10px; padding: 21px 0; }
  .problem-signals h3 { font-size: 16px; }
  .autonomy-atlas { grid-template-columns: 1fr; }
  .atlas-point:nth-of-type(2n) { border-left: 0; }
  .atlas-point { min-height: 0; padding: 19px 8px; }
  .results-feature { min-height: 340px; padding: 26px; }
  .results-bars { right: 20px; top: 20px; height: 155px; width: 42%; gap: 6px; }
  .results-feature-num { font-size: 47px; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb-1, .orb-2, .orb-3 { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .stepper-fill { transition: none; }
  .btn, .card, .kpi, .org-node, .faq-chevron, .mobile-cta { transition: none; }
  .btn:hover { transform: none; }
  .card:hover, .kpi:hover, .org-node:hover { transform: none; }
}
