/* L&A Sistemas — styles */

:root {
  --bg-0: #0A0A0A;
  --bg-1: #121212;
  --bg-2: #1F1F1F;
  --fg-0: #FFFFFF;
  --fg-1: #B3B3B3;
  --fg-2: #808080;
  --orange: #FF6A00;
  --orange-hover: #FF8C42;
  --orange-press: #CC5500;

  --light-bg-0: #F4F2EE;
  --light-bg-1: #EAE7E1;
  --light-fg-0: #0A0A0A;
  --light-fg-1: #5A5A5A;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --max-w: 1360px;
  --gutter: 32px;

  --font-sans: "IBM Plex Sans", -apple-system, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--fg-0);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ================= GRAIN ================= */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.grain.strong { opacity: 0.32; }

/* ================= LAYOUT ================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(10, 10, 10, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
}
.logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.logo-img {
  height: 100%;
  width: auto;
  display: block;
}
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-1);
}
.nav-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2BD46B;
  box-shadow: 0 0 8px rgba(43, 212, 107, 0.7);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.nav-status-sep { color: var(--fg-2); }
.nav-status-time { color: var(--fg-0); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--fg-1);
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover {
  color: var(--fg-0);
  background: rgba(255, 255, 255, 0.04);
}
.nav-links .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.06em;
}
.nav-links a:hover .num { color: var(--orange); }
.nav-cta { padding: 10px 18px !important; font-size: 14px !important; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.18s, background 0.18s, box-shadow 0.25s, color 0.18s;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #0A0A0A;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 0 32px 0 rgba(255, 106, 0, 0.45), 0 0 0 4px rgba(255, 106, 0, 0.10);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: var(--orange-press);
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-0);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.04);
}
.btn .arrow {
  transition: transform 0.18s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg.dark {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255, 106, 0, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 106, 0, 0.04), transparent 70%),
    linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
}
.hero-bg.light {
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(255, 106, 0, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(10, 10, 10, 0.06), transparent 70%),
    linear-gradient(180deg, #F4F2EE 0%, #E8E4DC 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-bg.light .hero-grid-lines {
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.04) 1px, transparent 1px);
}
.hero-bg.light ~ .hero-content-wrap { color: var(--light-fg-0); }
.hero-bg.light ~ .hero-content-wrap .eyebrow { color: var(--light-fg-1); }
.hero-bg.light ~ .hero-content-wrap .hero-sub { color: var(--light-fg-1); }
.hero-bg.light ~ .hero-content-wrap .btn-ghost {
  color: var(--light-fg-0);
  border-color: rgba(10, 10, 10, 0.18);
}
.hero-bg.light ~ .hero-content-wrap .btn-ghost:hover {
  border-color: rgba(10, 10, 10, 0.4);
  background: rgba(10, 10, 10, 0.04);
}
.hero-bg.light ~ .hero-content-wrap .hv-window {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(10, 10, 10, 0.10);
}
.hero-bg.light ~ .hero-content-wrap .hv-window .hv-bar {
  background: rgba(10, 10, 10, 0.04);
  border-bottom-color: rgba(10, 10, 10, 0.08);
}
.hero-bg.light ~ .hero-content-wrap .hv-tile {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(10, 10, 10, 0.08);
  color: var(--light-fg-0);
}
.hero-bg.light ~ .hero-content-wrap .hv-tile-label { color: var(--light-fg-1); }

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
.hero-content {
  max-width: 720px;
}
.hero-side {
  position: relative;
  min-height: 460px;
}

/* Hero visual: terminal + tiles */
.hero-visual {
  position: relative;
  width: 100%;
  height: 460px;
}
.hv-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.hv-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
}
.hv-dots { display: inline-flex; gap: 6px; }
.hv-dots span {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.hv-dots span:nth-child(3) { background: rgba(255, 106, 0, 0.5); }
.hv-title { color: var(--fg-1); }
.hv-meta { margin-left: auto; }
.hv-body {
  padding: 20px 18px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  min-height: 230px;
}
.hv-line.fg-1 { color: var(--fg-0); }
.hv-line.fg-2 { color: var(--fg-1); }
.hv-line.ok { color: #2BD46B; }
.hv-cursor {
  display: inline-block;
  color: var(--orange);
  animation: blink 1.1s infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hv-tile {
  position: absolute;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  font-family: var(--font-mono);
}
.hv-tile-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-2);
  margin-bottom: 8px;
}
.hv-tile-value {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-0);
  line-height: 1;
}
.hv-tile-value span {
  font-size: 16px;
  color: var(--fg-2);
  font-weight: 500;
  margin-left: 2px;
}
.hv-tile-value-sm {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
}
.hv-tile-bar {
  margin-top: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.hv-tile-bar > div {
  height: 100%;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}
.hv-tile-spark {
  margin-top: 6px;
  height: 24px;
}
.hv-tile-spark svg { width: 100%; height: 100%; }

.hv-tile-1 {
  bottom: 30px;
  left: -20px;
  width: 200px;
  z-index: 3;
}
.hv-tile-2 {
  top: 70px;
  right: -28px;
  width: 180px;
  z-index: 3;
}
.hv-tile-3 {
  bottom: -10px;
  right: 40px;
  z-index: 4;
  border-color: rgba(255, 106, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(18, 18, 18, 0.95));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(255, 106, 0, 0.7); }
  50% { opacity: 0.55; box-shadow: 0 0 18px rgba(255, 106, 0, 0.4); }
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--fg-1);
  max-width: 580px;
  margin: 0 0 40px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* hero meta — corner labels */
.hero-meta {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  text-transform: uppercase;
}
.hero-meta.tr { top: 110px; right: var(--gutter); text-align: right; }
.hero-meta.br { bottom: 32px; right: var(--gutter); text-align: right; }
.hero-meta.bl { bottom: 32px; left: var(--gutter); }
.hero-bg.light ~ .hero-meta { color: var(--light-fg-1); }

.section-meta {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  text-transform: uppercase;
  z-index: 3;
}
@media (max-width: 960px) {
  .section-meta { display: none; }
}

/* ================= SECTION HEADER ================= */
.section-pad {
  padding: 120px 0;
  position: relative;
}
.section-pad.tight {
  padding: 80px 0;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section-intro {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-1);
  max-width: 640px;
  margin: 0 0 60px;
}

/* ================= STACK STRIP ================= */
.stack-strip {
  background: var(--bg-0);
  border-top: 1px solid var(--bg-2);
  border-bottom: 1px solid var(--bg-2);
  padding: 24px 0;
  overflow: hidden;
}
.stack-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
.stack-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-2);
  white-space: nowrap;
  text-transform: uppercase;
  padding-right: 28px;
  border-right: 1px solid var(--bg-2);
  flex-shrink: 0;
}
.stack-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.7);
}
.stack-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.stack-track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: stack-scroll 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-1);
}
.stack-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.stack-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.65);
  transition: opacity 0.3s, filter 0.3s;
}
.stack-item:hover .stack-logo {
  opacity: 1;
}
.stack-text {
  text-transform: uppercase;
}
@keyframes stack-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= DASHBOARD MOCK (Fazemos card 01) ================= */
.faz-dashboard {
  position: relative;
  width: calc(100% + 8px);
  margin-left: -4px;
  margin-bottom: 24px;
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.fd-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
}
.fd-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(255, 106, 0, 0.7);
}
.fd-title { color: var(--fg-1); }
.fd-tabs {
  margin-left: auto;
  display: inline-flex;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.fd-tab { color: var(--fg-2); }
.fd-tab.active { color: var(--orange); }
.fd-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.fd-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.fd-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 12px;
}
.fd-stat.highlight {
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.05);
}
.fd-stat-l {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-2);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.fd-stat-v {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-0);
  line-height: 1;
}
.fd-stat-d {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-2);
  margin-top: 4px;
}
.fd-stat-d.up { color: #2BD46B; }
.fd-chart {
  flex: 1;
  min-height: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px;
}
.fd-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ================= POSICIONAMENTO ================= */
.posicionamento {
  background: var(--bg-0);
  border-top: 1px solid var(--bg-2);
}
.posicionamento-quote {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 1100px;
  margin: 0;
  text-wrap: balance;
}
.posicionamento-quote .accent { color: var(--orange); }
.posicionamento-quote .muted { color: var(--fg-2); }
.posicionamento-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-1);
  letter-spacing: 0.05em;
  margin-top: 40px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.posicionamento-tag .pill {
  padding: 6px 12px;
  border: 1px solid var(--bg-2);
  border-radius: 999px;
}

/* ================= VALORES ================= */
.valores {
  background: var(--light-bg-0);
  color: var(--light-fg-0);
  position: relative;
  overflow: hidden;
}
.valores::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.valores .container { position: relative; z-index: 1; }
.valores .section-label { color: var(--light-fg-1); }
.valores .section-label::before { background: var(--orange); }
.valores .section-title { color: var(--light-fg-0); }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
}
.valor-card {
  background: var(--bg-0);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 48px 44px 56px;
  position: relative;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  color: var(--fg-0);
  overflow: hidden;
}
.valor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}
.valor-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(10, 10, 10, 0.4), 0 0 0 1px rgba(255, 106, 0, 0.15);
}
.valor-card:hover::before { width: 100%; }
.valor-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.valor-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.valor-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
  margin: 0;
  max-width: 420px;
}

/* ================= MISSAO/VISAO ================= */
.mv {
  background: var(--bg-0);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s;
}
.mv-card:hover {
  border-color: rgba(255, 106, 0, 0.35);
  transform: translateY(-2px);
}
.mv-card.visao {
  background: var(--bg-0);
  border-style: solid;
}
.mv-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.mv-card.visao .mv-label { color: var(--fg-2); }
.mv-text {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  text-wrap: pretty;
}

/* ================= O QUE FAZEMOS — bento ================= */
.fazemos {
  background: var(--bg-1);
}
.fazemos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.faz-card {
  background: var(--bg-0);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.faz-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.15), 0 24px 60px -20px rgba(255, 106, 0, 0.12);
}
.faz-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.1em;
}
.faz-card .titulo {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.faz-card .desc {
  color: var(--fg-1);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.faz-card.wide { grid-column: span 2; }
.faz-card.full { grid-column: span 3; }
.faz-card.tall { grid-row: span 2; }
.faz-card .body {
  margin-top: auto;
}

/* faz-card layout variants */
.faz-card-stacked {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.faz-card-stacked .num { margin-bottom: 12px; }
.faz-card-stacked .body { margin-top: auto; }

.faz-card-visual {
  margin: 8px 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.85;
  transition: opacity 0.22s, transform 0.22s;
}
.faz-card:hover .faz-card-visual {
  opacity: 1;
  transform: translateY(-2px);
}

.faz-icon { display: block; }
.faz-icon-auto { width: 180px; height: 60px; }
.faz-icon-int { width: 140px; height: 70px; }

/* card 1 (wide tall stacked) */
.faz-card.wide.tall.faz-card-stacked .faz-dashboard {
  flex: 0 0 auto;
  height: 320px;
  min-height: 240px;
  margin-bottom: 32px;
}
.faz-card.wide.tall.faz-card-stacked {
  min-height: 100%;
}
.faz-card.wide.tall.faz-card-stacked .body {
  margin-top: 0;
}

/* card 3 — org flow */
.org-flow {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.85;
  transition: opacity 0.22s, transform 0.22s;
}
.faz-card:hover .org-flow {
  opacity: 1;
  transform: translateY(-2px);
}
.org-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.org-chip {
  padding: 4px 8px;
  border: 1px solid var(--bg-2);
  border-radius: 6px;
  color: var(--fg-2);
  background: rgba(255,255,255,0.02);
}
.org-chip:not(.muted) {
  border-color: rgba(255, 106, 0, 0.4);
  color: var(--orange);
  background: rgba(255, 106, 0, 0.06);
}
.org-arrow {
  color: var(--orange);
  font-size: 14px;
}

/* visual bits inside cards */
.faz-visual {
  position: absolute;
  pointer-events: none;
}
.faz-visual.lines-tr {
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background-image: repeating-linear-gradient(45deg, var(--bg-2) 0 1px, transparent 1px 14px);
  opacity: 0.6;
}
.faz-visual.dot-grid {
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, transparent 0%, black 60%, transparent 100%);
}
.faz-visual.flow {
  bottom: 24px; right: 24px;
  width: 180px; height: 80px;
}

/* ================= PROCESSO — creative bento ================= */
.processo {
  background: var(--bg-0);
  position: relative;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 64px;
}
.proc-card {
  background: var(--bg-1);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s, background 0.25s;
}
.proc-card:hover {
  border-color: rgba(255, 106, 0, 0.45);
  transform: translateY(-4px);
  background: #121212;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 106, 0, 0.1);
}

.proc-card .step {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.proc-card .step::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.7);
}
.proc-card h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.05;
}
.proc-card p {
  margin: 0;
  color: var(--fg-1);
  font-size: 16px;
  line-height: 1.55;
  max-width: 440px;
}
.proc-card .big-num {
  position: absolute;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 260px;
  line-height: 0.75;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.02);
  bottom: -60px;
  right: -20px;
  pointer-events: none;
  transition: transform 0.4s ease, color 0.4s ease;
}
.proc-card:hover .big-num {
  transform: scale(1.05) translate(-10px, -10px);
  color: rgba(255, 106, 0, 0.03);
}

.proc-card .conn {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-2);
  top: 40px;
  right: 40px;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* Bento Layout Spans — Wireframe Inspired */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  margin-top: 64px;
}
.proc-card.p1 { grid-column: span 1; grid-row: span 2; } /* Tall left */
.proc-card.p2 { grid-column: span 2; grid-row: span 1; background: rgba(255,255,255,0.02); } /* Wide top right */
.proc-card.p3 { grid-column: span 1; grid-row: span 1; }
.proc-card.p4 { grid-column: span 1; grid-row: span 1; }
.proc-card.p5 { 
  grid-column: span 3; 
  grid-row: span 1;
  background: linear-gradient(135deg, #121212 0%, #0A0A0A 100%);
  border-color: rgba(255, 106, 0, 0.2);
}
.proc-card.p5 h3 { color: var(--orange); }
.proc-card.p5 .big-num { color: rgba(255, 106, 0, 0.04); }

.proc-card.p1 .big-num { font-size: 320px; bottom: -80px; left: -40px; right: auto; }
.proc-card.p1 p { max-width: 200px; }

/* Mobile adjustments */
@media (max-width: 991px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-card.p1 { grid-column: span 1; grid-row: span 2; }
  .proc-card.p2 { grid-column: span 1; grid-row: span 1; }
  .proc-card.p5 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .proc-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .proc-card { min-height: 240px; }
  .proc-card.p1, .proc-card.p2, .proc-card.p3, .proc-card.p4, .proc-card.p5 { grid-column: span 1; grid-row: span 1; }
}

/* Decorative bits */
.proc-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at 100% 0%, rgba(255,106,0,0.03) 0%, transparent 40%);
  pointer-events: none;
}

/* ================= DIFERENCIAL ================= */
.diferencial {
  background: var(--light-bg-0);
  color: var(--light-fg-0);
  position: relative;
  overflow: hidden;
}
.diferencial-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.diferencial h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}
.diferencial h2 .strike {
  position: relative;
  color: rgba(10, 10, 10, 0.35);
}
.diferencial h2 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  top: 52%;
  width: 104%;
  height: 6px;
  background: var(--orange);
  border-radius: 4px;
  transform: rotate(-2deg);
}
.diferencial h2 em {
  font-style: normal;
  color: var(--orange);
}
.diferencial-side {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--light-fg-1);
  text-align: right;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

/* ================= IMPACTO (rules) ================= */
.impacto {
  background: var(--bg-0);
  border-top: 1px solid var(--bg-2);
}
.impacto-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.impacto-rule {
  padding: 56px 48px;
  position: relative;
  background: var(--bg-1);
}
.impacto-rule + .impacto-rule {
  border-left: 1px solid var(--bg-2);
}
.impacto-rule .marker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.impacto-rule h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.impacto-rule h3 .bold { font-weight: 600; }

/* ================= CTA FINAL ================= */
.cta-final {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.cta-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1208 100%);
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  width: 800px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  position: relative;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-card p {
  position: relative;
  font-size: 19px;
  color: var(--fg-1);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.cta-card .btn-primary { position: relative; }

/* ================= FOOTER ================= */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--bg-2);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--bg-2);
}
.footer-brand {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  text-wrap: balance;
}
.footer-brand .accent { color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--fg-1);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================= ANIMATION (refined reveal) ================= */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px) scale(0.98);
  transition: 
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-content-wrap { grid-template-columns: 1fr; gap: 80px; }
  .hero-side { min-height: 400px; max-width: 600px; }
  .hv-tile-1 { left: 0; }
  .hv-tile-2 { right: 0; }
}

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-status { display: none; }
  .nav-links { display: none; }
  .nav-links.cta-only { display: flex; }
  .stack-inner { grid-template-columns: 1fr; gap: 16px; }
  .stack-label { border-right: none; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--bg-2); }
  .hero-visual { height: 360px; }
  .hv-body { font-size: 12px; min-height: 180px; }
  .valores-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .fazemos-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 20px; }
  .faz-card { min-height: auto; padding: 28px 24px; }
  .faz-card.wide, .faz-card.tall, .faz-card.full { grid-column: span 1; grid-row: span 1; }
  .faz-dashboard { 
    position: relative; 
    top: 0; left: 0; right: 0; bottom: 0; 
    height: 200px !important; 
    min-height: 200px; 
    margin-bottom: 24px; 
  }
  .proc-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 20px; }
  .proc-card { min-height: auto; padding: 32px 24px; }
  .proc-card.p1, .proc-card.p2, .proc-card.p3, .proc-card.p4, .proc-card.p5 {
    grid-column: span 1; grid-row: span 1;
  }
  .impacto-rules { grid-template-columns: 1fr; }
  .impacto-rule + .impacto-rule { border-left: none; border-top: 1px solid var(--bg-2); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .diferencial-inner { grid-template-columns: 1fr; }
  .diferencial-side { text-align: left; }
  .cta-card { padding: 64px 28px; }
  :root { --gutter: 20px; }
}
