/* ═══════════════════════════════════════════════════════════════
   SILVA MARKETING — direção de arte: tech premium / noite violeta
   Display: Instrument Serif · UI: Instrument Sans · Dados: DM Mono
   ═══════════════════════════════════════════════════════════════ */

:root {
  --void: #050308;
  --bg: #07040e;
  --bg-2: #0a0614;
  --surface: #100a1c;
  --surface-2: #171029;
  --glass: rgba(255, 255, 255, 0.04);
  --line: rgba(201, 194, 220, 0.1);
  --line-2: rgba(201, 194, 220, 0.2);

  --violet: #8b5cf6;
  --violet-soft: #a78bfa;
  --violet-deep: #4c1d95;
  --plum: #3d2260;

  --silver: #c9c2b8;
  --champagne: #ece5d6;
  --text: #f3f0ea;
  --muted: #918aa3;
  --green: #4ade80;
  --amber: #fbbf24;

  --ivory: #efebe1;
  --ink: #120c1e;
  --ink-2: #574f66;
  --line-ink: rgba(18, 12, 30, 0.13);

  --d: "Instrument Serif", Georgia, serif;
  --s: "Instrument Sans", -apple-system, "Helvetica Neue", sans-serif;
  --m: "DM Mono", "SF Mono", monospace;

  --w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--s);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--violet); color: #fff; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 34px; }

h1, h2, h3, h4 { font-family: var(--d); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 1.05; }
h3 { line-height: 1.2; }
em { font-style: normal; }

.accent {
  background: linear-gradient(96deg, var(--violet-soft) 0%, #f0eadd 42%, var(--violet-soft) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
@keyframes sheen { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }

.kicker {
  font-family: var(--m);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 20px;
}
.mono { font-family: var(--m); letter-spacing: 0.08em; }

.lead { margin-top: 24px; font-size: 1.09rem; color: var(--muted); max-width: 62ch; }
.lead strong, .stmt-grid strong { color: var(--champagne); font-weight: 600; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.09s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.27s; }
.reveal.d4 { transition-delay: 0.36s; }
.reveal.d5 { transition-delay: 0.45s; }

/* ─── Pill ─── */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--m); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  backdrop-filter: blur(12px);
  margin-bottom: 30px;
}
.pill i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ─── Botões ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--s); font-weight: 600; font-size: 0.93rem;
  letter-spacing: 0.005em;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.btn-lg { padding: 17px 34px; font-size: 0.98rem; }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn span { transition: transform 0.3s var(--ease); }
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #ddd8ea 55%, #b9b0d4);
  color: #0d0718;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset, 0 16px 44px -18px rgba(167,139,250,0.75);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.55) inset, 0 22px 60px -18px rgba(167,139,250,0.95); }

.btn-glass, .nav-right .btn-sm {
  background: var(--glass);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-glass:hover, .nav-right .btn-sm:hover { border-color: var(--violet-soft); background: rgba(139,92,246,0.12); }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(7, 4, 14, 0.75);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { max-width: var(--w); margin: 0 auto; padding: 0 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { height: 38px; border-radius: 8px; display: block; }
.brand-word {
  font-family: var(--d); font-size: 1.28rem; letter-spacing: 0.1em;
  color: var(--champagne); line-height: 1; display: flex; flex-direction: column; gap: 3px;
}
.brand-word small {
  font-family: var(--s); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.42em; color: var(--silver); opacity: 0.75;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.25s ease; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--violet-soft); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.burger { display: none; }

/* ═══════════════ HERO ═══════════════ */
.hero { position: relative; padding: 150px 0 0; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.floor {
  position: absolute; left: -25%; right: -25%; bottom: -10%; height: 70%;
  background-image:
    linear-gradient(rgba(167,139,250,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.16) 1px, transparent 1px);
  background-size: 62px 62px;
  transform: perspective(520px) rotateX(69deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, black 0%, transparent 72%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 72%);
  animation: floor-run 9s linear infinite;
  opacity: 0.55;
}
@keyframes floor-run { from { background-position: 0 0; } to { background-position: 0 62px; } }

.aurora { position: absolute; border-radius: 50%; filter: blur(90px); }
.a1 {
  width: 900px; height: 620px; top: -18%; left: 46%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.42), transparent 68%);
  animation: drift 17s ease-in-out infinite alternate;
}
.a2 {
  width: 620px; height: 520px; top: 22%; right: -8%;
  background: radial-gradient(circle, rgba(76,29,149,0.5), transparent 70%);
  animation: drift2 21s ease-in-out infinite alternate;
}
.a3 {
  width: 1000px; height: 620px; left: 50%; bottom: -40%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.34), transparent 68%);
  filter: blur(90px); position: absolute; border-radius: 50%;
}
@keyframes drift {
  from { transform: translateX(-50%) translateY(0) scale(1); }
  to   { transform: translateX(-44%) translateY(36px) scale(1.11); }
}
@keyframes drift2 {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.14); }
}
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 30%, transparent 40%, var(--bg) 88%);
}

.hero-inner { position: relative; max-width: var(--w); margin: 0 auto; padding: 0 34px; }
.hero-head { max-width: 860px; }
.hero-h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 28px;
}
.hero-h1 span { display: block; }
.hero-lead { max-width: 620px; font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--muted); margin-bottom: 38px; }
.hero-lead strong { color: var(--champagne); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Console ─── */
.hero-stage { position: relative; margin: 82px auto 0; max-width: 1120px; }
.stage-glow {
  position: absolute; inset: -8% -6% -18% -6%;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(139,92,246,0.3), transparent 70%);
  filter: blur(50px);
}
.console {
  position: relative;
  background: linear-gradient(168deg, rgba(23,16,41,0.96), rgba(8,5,16,0.98));
  border: 1px solid var(--line-2);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 -2px 0 rgba(255,255,255,0.06) inset, 0 60px 120px -50px rgba(0,0,0,0.95), 0 0 90px -40px rgba(139,92,246,0.6);
  backdrop-filter: blur(20px);
}
.console-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-bottom: 1px solid var(--line);
  font-family: var(--m); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.console-bar i, .pwin-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.console-bar i:first-child, .pwin-bar i:first-child { background: rgba(255,107,107,0.5); }
.console-bar i:nth-child(2), .pwin-bar i:nth-child(2) { background: rgba(251,191,36,0.5); }
.console-bar i:nth-child(3), .pwin-bar i:nth-child(3) { background: rgba(74,222,128,0.5); }
.console-bar span, .pwin-bar span { margin-left: 12px; }

.live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); font-family: var(--m); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-style: normal;
}
.live b { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 2s ease-in-out infinite; }

.console-body { padding: 26px 26px 34px; }
.con-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.con-kpi {
  background: var(--glass); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 4px;
}
.con-kpi span { font-family: var(--m); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.con-kpi b { font-family: var(--d); font-size: 1.7rem; color: var(--champagne); line-height: 1.1; }
.con-kpi i { font-size: 0.72rem; font-style: normal; color: var(--muted); }
.con-kpi i.up { color: var(--green); }

.con-split { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; }
.con-graph, .con-feed {
  background: var(--glass); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px 14px;
}
.con-h {
  font-family: var(--m); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.con-h em { font-style: normal; color: var(--violet-soft); }
.con-h em.on { color: var(--green); }
.spark { width: 100%; height: 108px; display: block; }
.spark .line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 2.6s var(--ease) forwards 0.5s; }
.spark .area { opacity: 0; animation: fadein 1.6s ease forwards 1.8s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }
.con-x { display: flex; justify-content: space-between; font-family: var(--m); font-size: 0.56rem; color: var(--muted); opacity: 0.65; margin-top: 6px; }

.con-feed { display: flex; flex-direction: column; }
.feed-item {
  font-size: 0.78rem; color: var(--muted); padding: 8px 0;
  border-bottom: 1px dashed rgba(201,194,220,0.09);
}
.feed-item:last-child { border-bottom: none; }
.feed-item b { font-family: var(--m); font-size: 0.66rem; color: var(--silver); margin-right: 10px; }
.feed-item.ai { color: var(--violet-soft); }
.feed-item.ok { color: var(--green); }

/* cards flutuantes */
.float {
  position: absolute; z-index: 5;
  background: rgba(23,16,41,0.86);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 13px 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.9), 0 0 40px -22px rgba(139,92,246,0.7);
  display: flex; flex-direction: column; gap: 5px;
  animation: bob 6s ease-in-out infinite;
}
.f1 { left: -46px; top: 26%; width: 160px; }
.f2 { right: -40px; top: 15%; flex-direction: row; align-items: center; gap: 11px; animation-delay: 1.4s; }
.f3 { right: -22px; bottom: 16%; animation-delay: 2.6s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
.f-label { font-family: var(--m); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.f-val { font-family: var(--d); font-size: 1.7rem; color: var(--champagne); line-height: 1; }
.f-val.small { font-size: 1.15rem; color: var(--green); }
.f-val em { font-size: 0.8rem; color: var(--muted); }
.f-sub { display: block; font-size: 0.72rem; color: var(--green); }
.f-bar { display: block; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.1); overflow: hidden; }
.f-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--violet), var(--champagne)); }
.f-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); animation: blink 1.8s ease-in-out infinite; }

/* métricas do hero */
.hero-metrics {
  position: relative;
  max-width: var(--w); margin: 0 auto; padding: 54px 34px 70px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.hm { display: flex; flex-direction: column; gap: 5px; }
.hm b { font-family: var(--d); font-size: clamp(1.9rem, 3.2vw, 2.7rem); color: var(--champagne); line-height: 1; }
.hm span { font-size: 0.83rem; color: var(--muted); }

/* ═══════════════ TICKER ═══════════════ */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015); overflow: hidden; padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: run 40s linear infinite; }
.ticker-track span { font-family: var(--m); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); opacity: 0.6; white-space: nowrap; }
.ticker-track i { color: var(--violet); font-size: 0.5rem; font-style: normal; }
@keyframes run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════ SEÇÕES ═══════════════ */
.sec { padding: 130px 0; position: relative; }
.sec-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 760px; margin-bottom: 66px; }

/* ─── Statement (ivory) ─── */
.statement { background: var(--ivory); color: var(--ink); padding: 130px 0; }
.statement .kicker { color: #6d5a2f; }
.stmt {
  font-size: clamp(2.4rem, 5.6vw, 4.9rem); line-height: 1.04;
  letter-spacing: -0.025em; max-width: 1050px; margin-bottom: 60px;
}
.stmt span { display: block; }
.stmt .off { color: rgba(18,12,30,0.28); }
.statement .accent {
  background: linear-gradient(96deg, #6d28d9, #1c1230 55%, #6d28d9);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
.stmt-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; align-items: start; }
.stmt-grid p { color: var(--ink-2); font-size: 1.06rem; }
.stmt-grid p + p { margin-top: 18px; }
.stmt-grid strong { color: var(--ink); }
.stmt-side { border-left: 1px solid var(--line-ink); padding-left: 34px; }
.ss-num { font-family: var(--d); font-size: clamp(3rem, 6vw, 4.6rem); color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.ss-num em { color: rgba(18,12,30,0.3); font-size: 0.5em; margin: 0 4px; }
.stmt-side p { margin-top: 12px; font-size: 0.92rem; max-width: 24ch; }

/* ─── Camadas ─── */
.layers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.layer {
  background: linear-gradient(170deg, var(--surface), rgba(8,5,16,0.6));
  border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px 38px;
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s ease, box-shadow 0.45s ease;
}
.layer::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.layer:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 40px 80px -44px rgba(0,0,0,0.95), 0 0 60px -30px rgba(139,92,246,0.55); }
.layer:hover::after { opacity: 1; }
.layer.feature { background: linear-gradient(170deg, rgba(76,29,149,0.3), rgba(10,6,20,0.85) 70%); border-color: rgba(139,92,246,0.3); }
.layer-ico { width: 46px; height: 46px; color: var(--violet-soft); margin-bottom: 24px; }
.layer-ico svg { width: 100%; height: 100%; }
.layer-n { font-family: var(--m); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.layer h3 { font-size: 1.6rem; color: var(--champagne); margin-bottom: 12px; }
.layer p { font-size: 0.94rem; color: var(--muted); margin-bottom: 22px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--line); padding-top: 20px; }
.ticks li { font-size: 0.86rem; color: var(--silver); display: flex; gap: 10px; align-items: baseline; }
.ticks li::before { content: "✓"; color: var(--violet-soft); font-size: 0.8rem; }

/* ─── Painéis (tabs) ─── */
.ptabs { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.ptab {
  font-family: var(--m); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: var(--glass); border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 20px; cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.ptab:hover { color: var(--text); border-color: var(--line-2); }
.ptab.active { color: #0d0718; background: linear-gradient(135deg, #fff, #c9c0e4); border-color: transparent; font-weight: 500; }

.panel { display: none; animation: pfade 0.55s var(--ease); }
.panel.active { display: block; }
@keyframes pfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.pwin {
  background: linear-gradient(168deg, var(--surface), var(--void));
  border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
  box-shadow: 0 50px 100px -46px rgba(0,0,0,0.95), 0 0 70px -36px rgba(139,92,246,0.4);
}
.pwin-bar {
  display: flex; align-items: center; gap: 8px; padding: 13px 20px;
  border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02);
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.pwin-body { display: grid; grid-template-columns: 176px 1fr; min-height: 430px; }
.pnav { border-right: 1px solid var(--line); padding: 18px 0; display: flex; flex-direction: column; gap: 2px; }
.pnav-logo { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--violet), var(--plum)); margin: 0 18px 18px; display: block; }
.pnav a {
  font-size: 0.8rem; color: var(--muted); padding: 8px 18px; text-decoration: none;
  border-left: 2px solid transparent; transition: color 0.2s, background 0.2s;
}
.pnav a.on { color: var(--text); background: rgba(139,92,246,0.1); border-left-color: var(--violet); }
.pmain { padding: 20px 22px 24px; }
.pkpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.pkpi { background: var(--glass); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; }
.pkpi span { font-family: var(--m); font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pkpi b { font-family: var(--d); font-size: 1.28rem; color: var(--champagne); line-height: 1.15; }
.pkpi i { font-size: 0.64rem; font-style: normal; color: var(--muted); }
.pkpi i.up { color: var(--green); }

.pcols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pcard { background: var(--glass); border: 1px solid var(--line); border-radius: 10px; padding: 15px 16px; }
.pcard-h {
  font-family: var(--m); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: flex; justify-content: space-between; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.pcard-h em { font-style: normal; color: var(--violet-soft); }
.plist { list-style: none; display: flex; flex-direction: column; }
.plist li {
  display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 0.76rem;
  border-bottom: 1px dashed rgba(201,194,220,0.07);
}
.plist li:last-child { border-bottom: none; }
.plist b { font-family: var(--m); font-size: 0.68rem; color: var(--silver); min-width: 42px; }
.plist span { color: var(--muted); flex: 1; }
.plist em {
  font-style: normal; font-family: var(--m); font-size: 0.54rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); border: 1px solid var(--line);
  border-radius: 100px; padding: 3px 9px; white-space: nowrap;
}
.plist em.ok { color: var(--green); border-color: rgba(74,222,128,0.3); }
.plist em.live2 { color: var(--violet-soft); border-color: rgba(167,139,250,0.35); }
.plist em.warn { color: var(--amber); border-color: rgba(251,191,36,0.3); }

.pfunnel { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pfunnel li { display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 10px; font-size: 0.74rem; }
.pfunnel span { color: var(--muted); }
.pfunnel b { font-family: var(--m); font-size: 0.74rem; color: var(--champagne); text-align: right; }
.pbar { height: 5px; border-radius: 4px; background: rgba(255,255,255,0.07); overflow: hidden; }
.pbar i { display: block; height: 100%; background: linear-gradient(90deg, var(--violet-deep), var(--violet-soft)); }
.pfunnel li.win .pbar i { background: linear-gradient(90deg, var(--violet), var(--green)); }
.pfunnel li.win b { color: var(--green); }
.pnote {
  margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--line);
  font-size: 0.7rem; color: var(--muted);
}
.pnote.alert { color: var(--amber); }

.pchart { display: flex; align-items: flex-end; gap: 4px; height: 128px; }
.pchart span { flex: 1; background: linear-gradient(180deg, var(--violet-deep), rgba(139,92,246,0.18)); border-radius: 3px 3px 0 0; }
.pchart span.peak { background: linear-gradient(180deg, var(--violet-soft), rgba(167,139,250,0.28)); box-shadow: 0 0 18px rgba(167,139,250,0.5); }
.pchart-x { display: flex; justify-content: space-between; font-family: var(--m); font-size: 0.54rem; color: var(--muted); opacity: 0.6; margin-top: 8px; }

.pmap { position: relative; height: 148px; border-radius: 8px; background: linear-gradient(150deg, rgba(139,92,246,0.08), rgba(255,255,255,0.02)); overflow: hidden; border: 1px solid var(--line); }
.mroad { position: absolute; background: rgba(201,194,220,0.12); }
.r1 { left: 0; right: 0; top: 44%; height: 1px; }
.r2 { top: 0; bottom: 0; left: 38%; width: 1px; }
.r3 { left: 0; right: 0; top: 74%; height: 1px; transform: rotate(-6deg); }
.mzone { position: absolute; left: 22%; top: 24%; width: 52%; height: 54%; border: 1px dashed rgba(167,139,250,0.28); border-radius: 50%; }
.mpin { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--silver); }
.mpin.live { background: var(--green); box-shadow: 0 0 0 0 rgba(74,222,128,0.5); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); } 100% { box-shadow: 0 0 0 15px rgba(74,222,128,0); } }

/* ─── IA ─── */
.ia-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 24px; align-items: start; }
.ia-chat {
  background: linear-gradient(168deg, var(--surface), var(--void));
  border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 44px 90px -44px rgba(0,0,0,0.95), 0 0 60px -32px rgba(139,92,246,0.45);
}
.chat-top { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.ava { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--plum)); flex: 0 0 auto; }
.chat-top b { font-size: 0.88rem; font-weight: 600; display: block; font-family: var(--s); }
.chat-top em { font-style: normal; font-size: 0.7rem; color: var(--green); display: flex; align-items: center; gap: 6px; }
.chat-top em i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.chat-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.msg {
  max-width: 84%; padding: 11px 15px; border-radius: 14px; font-size: 0.87rem; line-height: 1.5;
  position: relative;
}
.msg time { display: block; font-family: var(--m); font-size: 0.56rem; opacity: 0.5; margin-top: 5px; }
.msg.in { align-self: flex-start; background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--silver); }
.msg.out { align-self: flex-end; background: linear-gradient(140deg, rgba(139,92,246,0.28), rgba(76,29,149,0.35)); border: 1px solid rgba(167,139,250,0.28); border-bottom-right-radius: 4px; color: var(--text); }
.chat-foot {
  padding: 13px 20px; border-top: 1px solid var(--line); background: rgba(74,222,128,0.05);
  font-family: var(--m); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 9px;
}
.chat-foot i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.ia-cards { display: flex; flex-direction: column; gap: 14px; }
.ia-card {
  background: linear-gradient(165deg, var(--surface), rgba(8,5,16,0.7));
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px;
  transition: transform 0.4s var(--ease), border-color 0.35s ease;
}
.ia-card:hover { transform: translateX(6px); border-color: rgba(167,139,250,0.35); }
.ia-tag {
  font-family: var(--m); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet-soft); display: block; margin-bottom: 10px;
}
.ia-card h3 { font-size: 1.32rem; color: var(--champagne); margin-bottom: 9px; }
.ia-card p { font-size: 0.9rem; color: var(--muted); }
.ia-stat { display: flex; align-items: baseline; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.ia-stat b { font-family: var(--d); font-size: 1.5rem; color: var(--violet-soft); }
.ia-stat span { font-size: 0.76rem; color: var(--muted); }

/* ─── Dados / flow ─── */
.flow {
  background: linear-gradient(160deg, var(--surface), var(--void));
  border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 44px 90px -46px rgba(0,0,0,0.9);
}
.flow-head {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.flow-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; padding: 30px 24px 34px; }
.fstep { display: flex; flex-direction: column; gap: 4px; padding: 0 16px; }
.fstep span { font-family: var(--m); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.fstep b { font-family: var(--d); font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--champagne); line-height: 1.1; }
.fstep.win b { color: var(--green); }
.fstep em { font-style: normal; font-size: 0.74rem; color: var(--muted); }
.fbar { margin-top: 10px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.07); overflow: hidden; }
.fbar i { display: block; height: 100%; background: linear-gradient(90deg, var(--violet-deep), var(--violet-soft)); }
.fstep.win .fbar i { background: linear-gradient(90deg, var(--violet), var(--green)); }
.farrow { align-self: center; color: var(--line-2); padding-bottom: 12px; }
.flow-foot { border-top: 1px solid var(--line); padding: 16px 24px; font-size: 0.88rem; color: var(--silver); }
.flow-foot i { color: var(--violet); font-style: normal; font-size: 0.55rem; margin-right: 10px; }

.dgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.dcard { background: var(--bg-2); padding: 30px 26px 34px; transition: background 0.35s ease; }
.dcard:hover { background: var(--surface); }
.dcard > span { font-family: var(--m); font-size: 0.66rem; letter-spacing: 0.18em; color: var(--violet-soft); display: block; margin-bottom: 18px; }
.dcard h3 { font-size: 1.15rem; color: var(--champagne); margin-bottom: 9px; }
.dcard p { font-size: 0.88rem; color: var(--muted); }

/* ─── Engenharia ─── */
.eng-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eng {
  background: linear-gradient(168deg, var(--surface), rgba(8,5,16,0.72));
  border: 1px solid var(--line); border-radius: 15px; padding: 24px 22px 26px;
  display: flex; flex-direction: column; gap: 9px; position: relative; overflow: hidden;
  transition: transform 0.42s var(--ease), border-color 0.35s ease, box-shadow 0.4s ease;
}
.eng::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.eng:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 34px 68px -38px rgba(0,0,0,0.95), 0 0 50px -28px rgba(139,92,246,0.5); }
.eng:hover::after { opacity: 1; }
.eng-t { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.eng-t > span { font-family: var(--m); font-size: 0.55rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--silver); }
.eng-t .live { font-size: 0.48rem; }
.eng h3 { font-size: 1.08rem; color: var(--champagne); }
.eng p { font-size: 0.85rem; color: var(--muted); flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; padding-top: 14px; border-top: 1px solid var(--line); }
.chips span {
  font-family: var(--m); font-size: 0.53rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 4px 9px;
}

.sixd {
  margin-top: 60px; display: grid; grid-template-columns: auto 1fr; gap: 46px; align-items: center;
  background: linear-gradient(120deg, rgba(76,29,149,0.34), rgba(16,10,28,0.7) 62%);
  border: 1px solid rgba(139,92,246,0.28); border-radius: 20px; padding: 44px 50px;
}
.sixd-mark {
  font-family: var(--d); font-size: clamp(3.4rem, 7vw, 5.6rem); line-height: 0.9;
  display: flex; align-items: baseline; gap: 2px; white-space: nowrap;
  background: linear-gradient(100deg, #8b5cf6, #fff 42%, #a78bfa 78%, #f0eadd);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
.sixd-mark em { font-size: 0.5em; }
.sixd-mark b { font-weight: 400; margin-left: 12px; }
.sixd h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--champagne); margin-bottom: 12px; }
.sixd p { font-size: 0.98rem; color: var(--muted); max-width: 64ch; }

/* ─── Saúde ─── */
.med { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 70px; align-items: start; }
.med-list { list-style: none; margin-top: 38px; }
.med-list li { padding: 20px 0; border-top: 1px solid var(--line); font-size: 0.94rem; color: var(--muted); }
.med-list li:last-child { border-bottom: 1px solid var(--line); }
.med-list b { display: block; color: var(--champagne); font-weight: 600; font-size: 1rem; margin-bottom: 3px; font-family: var(--s); }
.med-quote {
  position: sticky; top: 110px;
  background: linear-gradient(165deg, var(--surface-2), rgba(8,5,16,0.8));
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 38px;
}
.qm { font-family: var(--d); font-size: 4rem; line-height: 0.5; color: var(--violet-soft); display: block; margin-bottom: 22px; }
.med-quote blockquote { font-family: var(--d); font-size: 1.45rem; line-height: 1.35; color: var(--champagne); }
.med-quote blockquote em { border-bottom: 1px solid var(--violet-soft); }
.med-quote cite {
  display: block; margin-top: 22px; font-style: normal; font-family: var(--m);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.badges span { font-size: 0.75rem; color: var(--silver); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; }

/* ─── Comparativo ─── */
.compare { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 0.85fr 1fr 1.15fr; }
.cmp-head {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--line);
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.cmp-head .cmp-c { color: var(--muted); padding: 16px 22px; }
.cmp-head .cmp-c.win { color: var(--violet-soft); }
.cmp-row { border-bottom: 1px solid var(--line); transition: background 0.3s ease; }
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(139,92,246,0.05); }
.cmp-c { padding: 17px 22px; font-size: 0.92rem; color: var(--muted); display: flex; align-items: center; }
.cmp-c.lbl { font-family: var(--m); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); }
.cmp-c.win { color: var(--text); background: linear-gradient(90deg, rgba(139,92,246,0.09), transparent); font-weight: 500; position: relative; }
.cmp-row .cmp-c.win::before { content: "✓"; color: var(--green); margin-right: 11px; font-size: 0.85rem; }

/* ─── Valor ─── */
.value {
  margin-top: 26px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center;
  background: linear-gradient(150deg, rgba(76,29,149,0.22), rgba(16,10,28,0.5));
  border: 1px solid var(--line); border-radius: 20px; padding: 48px 50px;
}
.value-head h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--champagne); margin-bottom: 12px; }
.value-head p { font-size: 0.95rem; color: var(--muted); }
.value-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.value-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.89rem; color: var(--silver); }
.value-list i {
  flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%; margin-top: 3px;
  background: rgba(139,92,246,0.2); border: 1px solid rgba(167,139,250,0.4); position: relative;
}
.value-list i::after {
  content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: var(--violet-soft); font-style: normal;
}

/* ─── Processo ─── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.step { position: relative; padding-top: 32px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: -34px; height: 1px; background: var(--line-2); }
.step:last-child::before { right: 0; }
.step::after {
  content: ""; position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--violet-soft); box-shadow: 0 0 16px var(--violet);
}
.step > span { font-family: var(--m); font-size: 0.68rem; letter-spacing: 0.18em; color: var(--muted); display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.25rem; color: var(--champagne); margin-bottom: 10px; }
.step p { font-size: 0.89rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 70px; align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 22px; padding: 24px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.14rem; color: var(--champagne); transition: color 0.25s ease; }
.faq-item summary:hover h3 { color: #fff; }
.fi { position: relative; flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--line-2); border-radius: 50%; transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s; }
.fi::before, .fi::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; background: var(--silver); transform: translate(-50%,-50%); }
.fi::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .fi { transform: rotate(45deg); border-color: var(--violet-soft); background: rgba(139,92,246,0.12); }
.faq-item > p { padding: 0 54px 26px 0; font-size: 0.94rem; color: var(--muted); max-width: 64ch; }

/* ─── CTA ─── */
.cta { position: relative; padding: 150px 0; text-align: center; overflow: hidden; border-top: 1px solid var(--line); }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; max-width: 900px; }
.cta h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); line-height: 1.1; margin-bottom: 26px; }
.cta-inner > p { color: var(--muted); max-width: 600px; margin: 0 auto 38px; font-size: 1.03rem; }
.cta .hero-cta { justify-content: center; }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--line); background: var(--void); padding: 74px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; padding-bottom: 58px; }
.foot-desc { margin-top: 20px; font-size: 0.88rem; color: var(--muted); max-width: 340px; }
.foot-col h4 {
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-soft); margin-bottom: 18px; font-weight: 400;
}
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.25s; }
.foot-col a:hover { color: var(--champagne); }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 22px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted);
}

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 1100px) {
  .con-split { grid-template-columns: 1fr; }
  .layers { grid-template-columns: 1fr; }
  .ia-grid { grid-template-columns: 1fr; }
  .eng-grid { grid-template-columns: repeat(2, 1fr); }
  .dgrid { grid-template-columns: repeat(2, 1fr); }
  .med { grid-template-columns: 1fr; gap: 48px; }
  .med-quote { position: static; }
  .faq-wrap { grid-template-columns: 1fr; gap: 42px; }
  .faq-head { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { right: 0; }
  .stmt-grid { grid-template-columns: 1fr; gap: 34px; }
  .stmt-side { border-left: none; border-top: 1px solid var(--line-ink); padding-left: 0; padding-top: 26px; }
  .value { grid-template-columns: 1fr; gap: 32px; padding: 38px 34px; }
  .flow-track { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .farrow { display: none; }
  .float { display: none; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .sixd { grid-template-columns: 1fr; gap: 22px; padding: 34px 30px; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .wrap, .nav-inner, .hero-inner, .hero-metrics { padding-left: 22px; padding-right: 22px; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(5,3,8,0.97); backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; gap: 26px; z-index: 150;
    transform: translateY(-100%); visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0.5s;
  }
  .nav-links.open { transform: none; visibility: visible; }
  .nav-links a { font-size: 1.2rem; color: var(--text); }
  .burger {
    display: flex; flex-direction: column; gap: 6px; background: none; border: none;
    cursor: pointer; z-index: 200; padding: 8px;
  }
  .burger span { width: 24px; height: 1.5px; background: var(--champagne); transition: transform 0.35s var(--ease); display: block; }
  .burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav-right .btn-sm { display: none; }

  .hero { padding-top: 116px; }
  .hero-stage { margin-top: 54px; }
  .console-body { padding: 18px 16px 22px; }
  .con-kpis { grid-template-columns: repeat(2, 1fr); }
  .sec, .statement, .cta { padding: 84px 0; }
  .sec-head { margin-bottom: 44px; }
  .pwin-body { grid-template-columns: 1fr; min-height: 0; }
  .pnav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); padding: 12px 14px; gap: 6px; }
  .pnav-logo { display: none; }
  .pnav a { border-left: none; border-radius: 100px; padding: 6px 13px; white-space: nowrap; font-size: 0.74rem; }
  .pnav a.on { border-left: none; }
  .pkpis { grid-template-columns: repeat(2, 1fr); }
  .pcols { grid-template-columns: 1fr; }
  .eng-grid, .dgrid, .steps, .value-list { grid-template-columns: 1fr; }
  .dgrid { border-radius: 12px; }
  .flow-track { grid-template-columns: 1fr; gap: 22px; padding: 22px 18px 26px; }
  .fstep { padding: 0; }
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; padding: 8px 0; }
  .cmp-c { padding: 8px 18px; }
  .cmp-c.lbl { padding-top: 14px; color: var(--violet-soft); }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-base { flex-direction: column; gap: 10px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; padding-top: 44px; padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.01s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ─── Ciclo completo ─── */
.cycle {
  margin-top: 26px;
  background: linear-gradient(150deg, rgba(76,29,149,0.2), rgba(16,10,28,0.55));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 44px 48px 48px;
}
.cycle-head { max-width: 780px; margin-bottom: 40px; }
.cycle-head h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: var(--champagne); margin-bottom: 14px; line-height: 1.15; }
.cycle-head p { font-size: 0.96rem; color: var(--muted); }
.cycle-track {
  list-style: none;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
.cycle-track li {
  position: relative; padding-top: 26px;
  display: flex; flex-direction: column; gap: 7px;
}
.cycle-track li::before {
  content: ""; position: absolute; top: 0; left: 0; right: -22px; height: 1px;
  background: linear-gradient(90deg, var(--violet), rgba(139,92,246,0.15));
}
.cycle-track li:last-child::before { right: 0; }
.cycle-track li::after {
  content: ""; position: absolute; top: -3px; left: 0; width: 7px; height: 7px;
  border-radius: 50%; background: var(--violet-soft); box-shadow: 0 0 12px var(--violet);
}
.cycle-track span { font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.18em; color: var(--muted); }
.cycle-track b { font-size: 0.96rem; color: var(--champagne); font-weight: 600; line-height: 1.25; }
.cycle-track em { font-style: normal; font-size: 0.82rem; color: var(--muted); }

@media (max-width: 1100px) {
  .cycle-track { grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
  .cycle-track li:nth-child(3)::before { right: 0; }
}
@media (max-width: 820px) {
  .cycle { padding: 32px 26px 36px; }
  .cycle-track { grid-template-columns: 1fr; gap: 22px; }
  .cycle-track li::before { right: 0; }
}
