/* ===========================================================
   GLOBAL PLATFORM · ESTEIRA · landing-final
   v4 · cinematic 4D · mobile-first
   =========================================================== */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F8FAFC;
  --bg-warm: #FFF9EC;
  --bg-cool: #F4F7FF;
  --bg-deep: #FBF7F0;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --line: #E2E8F0;
  --line-2: #F1F5F9;

  --gold: #C58E1F;
  --gold-soft: #E5B96B;
  --gold-bg: rgba(197, 142, 31, 0.08);
  --gold-bg-strong: rgba(197, 142, 31, 0.16);
  --violet: #6366F1;
  --violet-soft: #818CF8;
  --violet-bg: rgba(99, 102, 241, 0.08);
  --teal: #0891B2;
  --teal-soft: #22D3EE;
  --teal-bg: rgba(8, 145, 178, 0.08);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.16);
  --shadow-gold: 0 16px 48px rgba(197, 142, 31, 0.16);
  --shadow-violet: 0 16px 48px rgba(99, 102, 241, 0.16);
  --shadow-teal: 0 16px 48px rgba(8, 145, 178, 0.16);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 24px;

  --container: 1180px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  perspective: 1500px;
}

/* Safety: nenhum elemento ultrapassa viewport width */
img, svg, video, canvas, picture { max-width: 100%; height: auto; }
section, main, header, footer, article, aside { max-width: 100vw; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ============ AURORA BACKGROUND (sutil, animado) ============ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  mix-blend-mode: multiply;
  animation: auroraDrift 25s ease-in-out infinite;
}
.aurora-blob.b1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(197, 142, 31, 0.3), transparent 70%);
  top: -20%;
  left: -20%;
  animation-delay: 0s;
}
.aurora-blob.b2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 70%);
  top: 40%;
  right: -15%;
  animation-delay: -8s;
}
.aurora-blob.b3 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.2), transparent 70%);
  bottom: -20%;
  left: 30%;
  animation-delay: -16s;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8vw, -5vw) scale(1.1); }
  66% { transform: translate(-6vw, 6vw) scale(0.95); }
}

/* ============ CURSOR GLOW ============ */
.cursor-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(197, 142, 31, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  transition: opacity 0.3s;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (max-width: 900px), (pointer: coarse) { .cursor-glow { display: none; } }

/* ============ BG GRID ============ */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ============ TOPBAR ============ */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  max-width: calc(100vw - 32px);
  transition: transform 0.4s ease;
}
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--violet) 100%);
  color: white; border-radius: 6px; font-size: 12px;
}
.topnav { display: flex; gap: 22px; color: var(--muted); font-weight: 500; }
.topnav a { transition: color 0.2s; }
.topnav a:hover { color: var(--ink); }
.topcta { font-weight: 600; color: var(--gold); white-space: nowrap; font-size: 12px; }
@media (max-width: 768px) {
  .topbar {
    top: 10px;
    gap: 14px;
    padding: 8px 14px 8px 10px;
    font-size: 12px;
  }
  .topnav { display: none; }
  .brand-name { display: none; }
  .topcta { font-size: 11px; }
}

/* ============ SCROLL RAIL ============ */
.scroll-rail {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 20px 8px;
}
.rail-line {
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--violet), var(--teal));
  opacity: 0.3;
  transform: translateX(-50%);
}
.rail-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--muted-2);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.rail-dot span {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.rail-dot:hover span,
.rail-dot.active span { opacity: 1; }
.rail-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 142, 31, 0.15);
  transform: scale(1.3);
}
.rail-dot[data-rail="3"].active,
.rail-dot[data-rail="4"].active { background: var(--violet); border-color: var(--violet); box-shadow: 0 0 0 4px rgba(99,102,241,0.15); }
.rail-dot[data-rail="5"].active { background: var(--teal); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(8,145,178,0.15); }
@media (max-width: 1280px) { .scroll-rail { display: none; } }

/* ============ CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.container.wide { max-width: 1320px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
h2 { font-size: clamp(1.8rem, 4.5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 14px;
}
.mono { font-family: var(--font-mono); }
.gold { color: var(--gold) !important; }

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 16px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .lede {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.closing-line {
  text-align: center;
  margin: 56px auto 0;
  max-width: 680px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.4;
  padding: 0 16px;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}
.reveal-word.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
  overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 100vw); height: min(800px, 100vw);
  background: radial-gradient(circle, rgba(197, 142, 31, 0.14) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  animation: heroGlowPulse 8s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}
.hero-inner { position: relative; text-align: center; max-width: 920px; z-index: 2; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 24px 0 28px;
}
.hero-title .reveal-word { margin-right: 0.22em; }
.hero-lede {
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-pills {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
.pill {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.3s, transform 0.3s;
}
.pill[data-pill="1"]:hover, .pill[data-pill="2"]:hover { color: var(--gold); transform: scale(1.1); }
.pill[data-pill="3"]:hover, .pill[data-pill="4"]:hover { color: var(--violet); transform: scale(1.1); }
.pill[data-pill="5"]:hover { color: var(--teal); transform: scale(1.1); }
.pill-arrow { color: var(--muted-2); font-size: 11px; font-weight: 500; }
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll .arrow { display: inline-block; animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 480px) {
  .hero { padding: 90px 16px 60px; min-height: 92vh; }
  .hero-pills {
    flex-direction: column;
    border-radius: 16px;
    gap: 6px;
    padding: 14px 20px;
  }
  .hero-pills .pill-arrow { transform: rotate(90deg); }
}

/* =====================================================
   PROBLEMA
   ===================================================== */
.problema {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.pcard {
  position: relative;
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
  overflow: hidden;
  transform-style: preserve-3d;
}
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(197,142,31,0), rgba(197,142,31,0.05));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pcard:hover::before { opacity: 1; }
.pcard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 142, 31, 0.4);
}
.pcard-visual {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: background 0.4s, transform 0.4s;
}
.pcard:hover .pcard-visual { background: var(--gold-bg); transform: rotate(-5deg) scale(1.05); }
.pcard-visual svg { width: 100%; height: 100%; }
.pcard-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.pcard-num.violet { color: var(--violet); }
.pcard-num.teal { color: var(--teal); }
.pcard h3 { margin-bottom: 10px; font-size: 1.1rem; }
.pcard p { color: var(--muted); margin: 0; font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 900px) {
  .problem-cards { grid-template-columns: 1fr; max-width: 480px; }
}

/* =====================================================
   ESTEIRA · cinematic
   ===================================================== */
.esteira {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.ladder-new {
  position: relative;
  margin: 80px auto 48px;
  padding: 0 40px;
  max-width: 1200px;
}

.ladder-track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 64px;
  height: 4px;
  z-index: 1;
}
.ladder-track-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 30%, var(--violet) 50%, var(--violet) 70%, var(--teal) 100%);
  border-radius: 2px;
  opacity: 0.22;
}
.ladder-track-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--violet) 50%, var(--teal) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 2.5s var(--ease-out);
  filter: drop-shadow(0 0 8px currentColor);
}
.ladder-new.animate .ladder-track-fill { transform: scaleX(1); }
.ladder-shimmer {
  position: absolute;
  top: -2px; height: 8px;
  width: 120px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.9), transparent 70%);
  filter: blur(4px);
  animation: shimmerSlide 4s ease-in-out infinite;
}
@keyframes shimmerSlide {
  0% { left: -120px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.ladder-stops {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  z-index: 2;
}

.stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s var(--ease-out);
}
.stop.lit { opacity: 1; transform: translateY(0); }

.stop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: -12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(197,142,31,0.3);
}
.stop[data-stop="3"] .stop-badge,
.stop[data-stop="4"] .stop-badge { background: var(--violet); box-shadow: 0 4px 12px rgba(99,102,241,0.3); }
.stop[data-stop="5"] .stop-badge { background: var(--teal); box-shadow: 0 4px 12px rgba(8,145,178,0.3); }

.stop-marker {
  width: clamp(96px, 11vw, 132px);
  height: clamp(96px, 11vw, 132px);
  background: var(--surface);
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 8px 32px rgba(15,23,42,0.06);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.stop-marker::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.3;
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.stop-marker svg { width: clamp(32px, 4vw, 42px); height: clamp(32px, 4vw, 42px); }

.stop.lit .stop-marker { animation: stopPulse 1s ease-out; }
@keyframes stopPulse {
  0% { box-shadow: 0 0 0 0 rgba(197,142,31,0.5), 0 8px 32px rgba(15,23,42,0.06); }
  50% { box-shadow: 0 0 0 20px rgba(197,142,31,0), 0 8px 32px rgba(15,23,42,0.06); transform: scale(1.12); }
  100% { box-shadow: 0 0 0 0 rgba(197,142,31,0), 0 8px 32px rgba(15,23,42,0.06); transform: scale(1); }
}

.stop[data-stop="3"] .stop-marker,
.stop[data-stop="4"] .stop-marker { border-color: var(--violet); color: var(--violet); }
.stop[data-stop="5"] .stop-marker.omega-marker { border-color: var(--teal); color: var(--teal); }

.stop-marker:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 48px rgba(197,142,31,0.25);
}

.omega-glyph {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.stop h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--ink);
}
.stop-func {
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.4;
}
.stop-mode {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.stop[data-stop="3"] .stop-mode,
.stop[data-stop="4"] .stop-mode { color: var(--violet); background: var(--violet-bg); }
.stop[data-stop="5"] .stop-mode { color: var(--teal); background: var(--teal-bg); }

.ladder-legend {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 0 16px;
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; }
.leg-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.leg-dot.gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.leg-dot.violet { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.leg-dot.teal { background: var(--teal); box-shadow: 0 0 8px var(--teal); }

@media (max-width: 1000px) {
  .esteira { padding: 80px 0; }
  .ladder-new {
    padding: 0 16px;
    margin: 60px auto 32px;
  }
  .ladder-track { display: none; }
  .ladder-stops {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 480px;
    margin: 0 auto;
  }
  .stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .stop::after {
    content: "↓";
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
    animation: arrowDown 2s ease-in-out infinite;
  }
  .stop:last-child::after { display: none; }
  @keyframes arrowDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }
  .stop-marker { width: 110px; height: 110px; }
  .stop-marker svg { width: 38px; height: 38px; }
  .stop h3 { font-size: 1.2rem; }
}

/* =====================================================
   PRODUTO · CINEMATIC
   ===================================================== */
.produto {
  position: relative;
}

.produto-card {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.produto-genesis { background: linear-gradient(180deg, var(--surface) 0%, var(--bg-warm) 100%); }
.produto-titan { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-soft) 100%); }
.produto-magnus { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-cool) 100%); }
.produto-apollo { background: linear-gradient(180deg, var(--bg-cool) 0%, var(--bg-soft) 100%); }
.produto-omega { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-warm) 100%); }

/* Aurora glow no produto ativo */
.produto-card::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(197,142,31,0.08) 0%, transparent 60%);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.produto-card.in-view::before { opacity: 1; }
.produto-magnus::before, .produto-apollo::before {
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
}
.produto-omega::before {
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 60%);
}

/* Big number decorativo · com parallax */
.produto-bignum {
  position: absolute;
  top: 60px;
  right: -40px;
  font-family: var(--font-display);
  font-size: clamp(10rem, 26vw, 30rem);
  font-weight: 900;
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(197, 142, 31, 0.12) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  letter-spacing: -0.05em;
  will-change: transform;
}
.produto-magnus .produto-bignum,
.produto-apollo .produto-bignum {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
}
.produto-omega .produto-bignum {
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
}

.produto-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 3;
  padding: 0 16px;
}

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  background: var(--gold-bg);
  border: 1px solid rgba(197, 142, 31, 0.25);
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.violet-tag { color: var(--violet); background: var(--violet-bg); border-color: rgba(99,102,241,0.25); }
.teal-tag { color: var(--teal); background: var(--teal-bg); border-color: rgba(8,145,178,0.25); }

.product-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.produto-magnus .product-display { background: linear-gradient(135deg, var(--ink) 0%, var(--violet) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.produto-apollo .product-display { background: linear-gradient(135deg, var(--ink) 0%, var(--violet) 50%, var(--teal) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.produto-omega .product-display { background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 50%, var(--gold) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.product-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: var(--muted);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.produto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}
.produto-grid.reverse { grid-template-columns: 1.1fr 1fr; }
.produto-grid.reverse .produto-diagram { order: 0; }
.produto-grid.reverse .produto-text { order: 1; }

.produto-lede {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 28px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.produto-magnus .produto-lede,
.produto-apollo .produto-lede { border-left-color: var(--violet); }
.produto-omega .produto-lede { border-left-color: var(--teal); }

/* ===== SPECS GRID ===== */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.spec {
  position: relative;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out);
  transform-style: preserve-3d;
}
.spec:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.spec-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.spec.violet .spec-label { color: var(--violet); }
.spec.teal .spec-label { color: var(--teal); }
.spec.gold .spec-label { color: var(--gold); }

.spec strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.2;
}

.spec p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.spec.highlight {
  background: linear-gradient(135deg, var(--surface), var(--gold-bg));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.spec.violet:hover { border-color: var(--violet); box-shadow: var(--shadow-violet); }
.spec.teal:hover { border-color: var(--teal); box-shadow: var(--shadow-teal); }
.spec.violet.highlight { background: linear-gradient(135deg, var(--surface), var(--violet-bg)); border-color: var(--violet); }
.spec.teal.highlight { background: linear-gradient(135deg, var(--surface), var(--teal-bg)); border-color: var(--teal); }

@media (max-width: 480px) {
  .specs { grid-template-columns: 1fr; }
}

/* ===== DIAGRAM (geral) com TILT 3D ===== */
.produto-diagram {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s;
  transform-style: preserve-3d;
  will-change: transform;
}
.produto-diagram::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--violet), var(--teal));
  opacity: 0.5;
}
.produto-diagram::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197,142,31,0.06) 0%, transparent 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.produto-diagram:hover::after { opacity: 1; }
.produto-diagram:hover {
  box-shadow: var(--shadow-xl);
}
.diagram-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* === GENESIS · diagrama 2 dias === */
.dia-imersao { display: flex; flex-direction: column; gap: 14px; }
.dia-block {
  position: relative;
  padding: 20px 22px 20px 64px;
  background: linear-gradient(135deg, var(--bg-soft), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s, border-left-width 0.3s;
}
.dia-block:hover {
  transform: translateX(6px);
  border-left-width: 7px;
}
.dia-block-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: white;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(197,142,31,0.3);
}
.dia-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.dia-block strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 4px 0 4px;
  color: var(--ink);
}
.dia-block p { color: var(--muted); font-size: 0.82rem; margin: 0; line-height: 1.5; }
.dia-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 24px;
}
.dia-connector::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-soft));
}
.dia-connector-arrow {
  position: absolute;
  background: var(--surface);
  color: var(--gold);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.dia-output {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--gold-bg), var(--gold-bg-strong));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(197,142,31,0.15);
}
.dia-output span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.dia-output strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 4px;
}

/* === TITAN · diagrama mês === */
.dia-mes { display: flex; flex-direction: column; gap: 14px; }
.dia-mes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dia-week {
  padding: 14px 8px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s;
}
.dia-week:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(197,142,31,0.12);
}
.dia-week-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
}
.dia-week strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.dia-week p { font-size: 0.65rem; color: var(--muted); margin: 0; }

.dia-mes-base {
  padding: 14px 18px;
  background: var(--gold-bg);
  border: 1px solid rgba(197, 142, 31, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
}
.dia-mes-base-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  animation: spinSlow 8s linear infinite;
}
.dia-mes-base strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.dia-mes-base span { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }

.dia-mes-themes {
  padding: 14px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}
.dia-mes-themes > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.dia-mes-themes > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.theme-pill {
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.3s;
}
.theme-pill:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* === MAGNUS · diagrama 12 semanas === */
.dia-magnus { display: flex; flex-direction: column; gap: 20px; }
.dia-magnus-actors {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 12px;
}
.dia-actor {
  text-align: center;
  padding: 14px 8px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.dia-actor-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-bottom: 6px;
  animation: dotBreath 2.5s ease-in-out infinite;
}
.a-gold { background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.a-violet { background: var(--violet); box-shadow: 0 0 16px var(--violet); animation-delay: 1.25s; }
@keyframes dotBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.dia-actor strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}
.dia-magnus-line {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  border-radius: 2px;
}
.dia-line-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  padding: 5px 10px;
  border: 1.5px solid var(--violet);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--violet);
  font-weight: 600;
  white-space: nowrap;
}
.dia-magnus-weeks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.wk {
  padding: 8px 0;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--muted);
  transition: all 0.3s;
}
.wk:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: white;
  transform: translateY(-3px);
}
.dia-magnus-output {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--violet-bg), rgba(99,102,241,0.16));
  border: 1.5px solid var(--violet);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(99,102,241,0.15);
}
.dia-magnus-output span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--violet);
  text-transform: uppercase;
  font-weight: 600;
}
.dia-magnus-output strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--violet);
  margin-top: 4px;
}

/* === APOLLO · diagrama 4 fases === */
.dia-apollo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.dia-phase {
  padding: 14px 8px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.dia-phase:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow: 0 4px 16px rgba(99,102,241,0.12);
}
.dia-phase.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--surface), var(--gold-bg));
  box-shadow: 0 4px 20px rgba(197,142,31,0.15);
}
.dia-phase-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--violet);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
}
.dia-phase.highlight .dia-phase-num { color: var(--gold); }
.dia-phase-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet-bg);
  color: var(--violet);
  border-radius: 50%;
  font-size: 14px;
}
.dia-phase.highlight .dia-phase-icon { background: var(--gold-bg); color: var(--gold); }
.dia-phase strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.dia-phase p {
  font-size: 0.65rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

.dia-apollo-pricing {
  padding: 16px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.pricing-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pricing-opt {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.pricing-opt:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}
.pricing-opt-num {
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.pricing-opt strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--violet);
  margin: 4px 0 2px;
}
.pricing-opt p { font-size: 0.7rem; color: var(--muted); margin: 0; line-height: 1.4; }

/* === OMEGA · diagrama orbital === */
.dia-omega {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto 20px;
}
.dia-omega-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.dia-omega-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--gold), #8B5A0E);
  color: white;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(197, 142, 31, 0.4);
  z-index: 2;
  animation: coreFloat 4s ease-in-out infinite;
}
@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}
.dia-omega-core span {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.dia-omega-core strong {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dia-omega-orbit { position: absolute; inset: 0; }
.orbit-item {
  position: absolute;
  padding: 7px 12px;
  background: var(--surface);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(197,142,31,0.15);
  transition: all 0.3s;
}
.orbit-item:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(197,142,31,0.3);
}
.orbit-item.o1 { top: 2%; left: 50%; transform: translateX(-50%); }
.orbit-item.o2 { top: 22%; right: 0; }
.orbit-item.o3 { bottom: 22%; right: 0; }
.orbit-item.o4 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.orbit-item.o5 { bottom: 22%; left: 0; }
.orbit-item.o6 { top: 22%; left: 0; }
.orbit-item.o1:hover, .orbit-item.o4:hover { transform: translateX(-50%) scale(1.12); }

.dia-omega-3fases {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fase-pill {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fase-pill span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 4px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.fase-pill.highlight {
  background: linear-gradient(135deg, var(--surface), var(--teal-bg));
  border-color: var(--teal);
}
.fase-pill.highlight span { background: var(--teal); color: white; }

/* ===== NEXT-STEP ===== */
.next-step {
  margin: 80px 24px 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.next-step-inner {
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  border-radius: 100px;
  position: relative;
}
.next-step-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--violet), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.next-step-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}
.next-arrow {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  color: white;
  font-size: 18px;
  font-weight: 700;
  animation: arrowPulse 2s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(197,142,31,0.3);
  flex-shrink: 0;
}
@keyframes arrowPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(197,142,31,0.3); }
  50% { transform: scale(1.15); box-shadow: 0 12px 32px rgba(197,142,31,0.5); }
}
.next-product {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .produto-grid,
  .produto-grid.reverse {
    grid-template-columns: 1fr !important;
    gap: 36px;
    padding: 0 16px;
  }
  .produto-grid.reverse .produto-diagram { order: 1; }
  .produto-grid.reverse .produto-text { order: 0; }
}

@media (max-width: 700px) {
  .next-step { margin: 64px 16px 0; }
  .next-step-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
  }
  .next-arrow { margin: 0 auto; }
}

@media (max-width: 600px) {
  .produto-card { padding: 90px 0 60px; }
  .produto-bignum { font-size: 11rem; right: -20px; top: 30px; }
  .produto-header { margin-bottom: 48px; }
  .produto-diagram { padding: 22px; }
  .dia-magnus-weeks { grid-template-columns: repeat(6, 1fr); gap: 4px; }
  .dia-apollo { grid-template-columns: repeat(2, 1fr); }
  .dia-mes-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .dia-omega { max-width: 320px; }
  .dia-omega-core { width: 100px; height: 100px; }
  .dia-omega-core span { font-size: 34px; }
  .orbit-item { font-size: 8px; padding: 5px 10px; }
  .dia-block { padding: 16px 16px 16px 60px; }
  .dia-block-icon { width: 32px; height: 32px; font-size: 16px; left: 14px; }
}

/* =====================================================
   FLUXO
   ===================================================== */
.fluxo {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--surface) 100%);
  position: relative;
}
.fluxo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0 20px;
}
.fluxo-step {
  position: relative;
  padding: 26px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out);
  text-align: center;
  transform-style: preserve-3d;
}
.fluxo-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.fluxo-step::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
  font-weight: 600;
  z-index: 3;
}
.fluxo-step:last-child::after { display: none; }
.fluxo-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.fluxo-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: all 0.4s;
}
.fluxo-step:hover .fluxo-icon {
  background: var(--gold);
  color: white;
  transform: scale(1.1) rotate(360deg);
}
.fluxo-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.fluxo-state {
  font-style: italic;
  color: var(--violet);
  font-size: 0.78rem;
  margin: 0 0 8px;
}
.fluxo-exp {
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0 0 14px;
  line-height: 1.4;
}
.fluxo-next {
  padding: 10px;
  background: var(--gold-bg);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 12px;
}
.fluxo-next span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.fluxo-next strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.3;
}
@media (max-width: 1100px) {
  .fluxo-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
  .fluxo-step::after { display: none; }
}
@media (max-width: 540px) {
  .fluxo-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PLATAFORMA
   ===================================================== */
.plataforma {
  padding: 120px 0;
  background: var(--bg-soft);
}
.stack-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
.col-third, .col-own {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.col-third { opacity: 0.85; }
.col-own {
  border-color: rgba(197,142,31,0.3);
  box-shadow: var(--shadow-gold);
}
.col-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  animation: arrowGlow 2s ease-in-out infinite;
}
@keyframes arrowGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); text-shadow: 0 0 20px var(--gold); }
}
.col-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.col-label.gold { color: var(--gold); }
.strike-list li, .own-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.strike-list li:last-child, .own-list li:last-child { border-bottom: none; }
.strike-list li {
  color: var(--muted-2);
  text-decoration: line-through;
  opacity: 0.7;
}
.own-list li { color: var(--ink-2); font-weight: 500; }
.dep-x, .dep-c {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.dep-x { background: rgba(220, 107, 77, 0.1); color: #dc6b4d; }
.dep-c { background: var(--gold-bg-strong); color: var(--gold); }
@media (max-width: 800px) {
  .stack-compare { grid-template-columns: 1fr; gap: 16px; }
  .col-arrow { transform: rotate(90deg); margin: 8px 0; }
}

/* =====================================================
   ROADMAP
   ===================================================== */
.roadmap-section {
  padding: 120px 0;
  background: var(--surface);
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  padding: 0 20px;
}
.roadmap-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 30%, var(--violet) 50%, var(--violet) 70%, var(--teal) 100%);
  border-radius: 1px;
  z-index: 0;
  opacity: 0.4;
}
.rstep {
  position: relative;
  padding: 76px 14px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  z-index: 1;
}
.rstep:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.rstep-num {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(197,142,31,0.2);
}
.rstep.violet .rstep-num { border-color: var(--violet); color: var(--violet); box-shadow: 0 4px 16px rgba(99,102,241,0.2); }
.rstep.teal .rstep-num { border-color: var(--teal); color: var(--teal); box-shadow: 0 4px 16px rgba(8,145,178,0.2); }
.rstep.violet:hover { border-color: var(--violet); }
.rstep.teal:hover { border-color: var(--teal); }
.rstep h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.rstep p {
  color: var(--muted);
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
}
@media (max-width: 1000px) {
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); max-width: 520px; margin: 0 auto; }
  .roadmap-grid::before { display: none; }
}
@media (max-width: 540px) { .roadmap-grid { grid-template-columns: 1fr; } }

/* =====================================================
   DECISÃO
   ===================================================== */
.decisao {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 100%);
  overflow: hidden;
}
.cta-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cta-glow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197, 142, 31, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}
.decisao-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 20px 0 24px;
}
.cta-title span { display: block; }
.cta-lede {
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  color: var(--muted);
  margin: 0 0 40px;
  line-height: 1.55;
}
.decisao-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 820px;
}
.dcheck {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s;
  text-align: left;
}
.dcheck:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.dcheck-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
}
.dcheck strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.35;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #B07C16 100%);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  box-shadow: 0 16px 40px rgba(197, 142, 31, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 20px;
  animation: ctaBreath 3s ease-in-out infinite;
}
.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 56px rgba(197, 142, 31, 0.4);
}
.cta-btn span { transition: transform 0.3s; display: inline-block; }
.cta-btn:hover span { transform: translateX(4px); }
@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 16px 40px rgba(197, 142, 31, 0.3); }
  50% { box-shadow: 0 16px 56px rgba(197, 142, 31, 0.5); }
}
.cta-tiny {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin: 14px 0 0;
  font-weight: 500;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.page-foot {
  margin-top: 72px;
  padding: 32px 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .page-foot { flex-direction: column; align-items: center; text-align: center; }
}

/* =====================================================
   MOBILE OTIMIZAÇÕES FINAIS (revisão por seção)
   ===================================================== */

/* TABLET / SMALL DESKTOP ≤ 1000px */
@media (max-width: 1000px) {
  .aurora-blob.b1 { width: 80vw; height: 80vw; }
  .aurora-blob.b2 { width: 70vw; height: 70vw; }
  .aurora-blob.b3 { width: 75vw; height: 75vw; }
}

/* TABLET ≤ 768px */
@media (max-width: 768px) {
  .problema, .esteira, .plataforma, .roadmap-section, .fluxo { padding: 72px 0; }
  .decisao { padding: 80px 0 60px; }
  .section-head { margin-bottom: 40px; padding: 0 20px; }
  .container { padding: 0 16px; }
  .closing-line { margin-top: 40px; font-size: 1.05rem; padding: 0 20px; }
  .reveal { transform: translateY(20px) scale(0.98); }

  /* HERO */
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.08; }
  .hero-pills .pill-arrow { display: none; }
  .hero-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    border-radius: 16px;
    padding: 16px 20px;
  }
  .hero-pills .pill { padding: 4px 0; }

  /* PROBLEMA */
  .problem-cards { padding: 0 16px; }

  /* ESTEIRA — badge posicionado certo no layout vertical */
  .stop-badge { margin-bottom: -10px; }
  .stop-marker::before { inset: -6px; }

  /* PRODUTO */
  .produto-card { padding: 100px 0 60px; }
  .produto-header { margin-bottom: 48px; }
  .produto-grid { padding: 0 16px; }
  .produto-bignum { font-size: clamp(8rem, 30vw, 14rem); right: -10px; top: 40px; opacity: 0.6; }
  .produto-diagram { padding: 24px 20px; }

  /* DIAGRAMAS · ajustes mobile */
  .dia-block { padding: 18px 18px 18px 60px; }
  .dia-block-icon { width: 32px; height: 32px; font-size: 16px; left: 14px; }
  .dia-magnus-actors { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .dia-magnus-line { display: none; }
  .dia-magnus-weeks { grid-template-columns: repeat(6, 1fr); gap: 4px; }
  .dia-apollo { grid-template-columns: repeat(2, 1fr); }
  .dia-mes-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .dia-omega { max-width: 320px; aspect-ratio: 1; }
  .dia-omega-core { width: 100px; height: 100px; }
  .dia-omega-core span { font-size: 34px; }
  .orbit-item { font-size: 9px; padding: 5px 9px; letter-spacing: 0.05em; }
  .orbit-item.o2, .orbit-item.o3, .orbit-item.o5, .orbit-item.o6 { padding: 4px 7px; }

  /* FLUXO */
  .fluxo-grid { padding: 0 16px; }

  /* PLATAFORMA */
  .stack-compare { padding: 0 16px; }
  .col-third, .col-own { padding: 24px; }

  /* ROADMAP */
  .roadmap-grid { padding: 0 16px; }

  /* DECISÃO */
  .cta-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .decisao-checklist { grid-template-columns: 1fr; max-width: 460px; }
  .page-foot { padding: 28px 16px 0; font-size: 10px; }
}

/* MOBILE ≤ 600px */
@media (max-width: 600px) {
  .produto-card { padding: 90px 0 56px; }
  .produto-bignum { font-size: clamp(7rem, 32vw, 12rem); top: 32px; right: -8px; opacity: 0.5; }

  /* GENESIS · dia-block ainda mais compacto */
  .dia-block { padding: 16px 14px 16px 56px; }
  .dia-block-icon { width: 30px; height: 30px; font-size: 14px; left: 12px; }
  .dia-block strong { font-size: 0.92rem; }
  .dia-block p { font-size: 0.78rem; }

  /* TITAN · mes-base flex column em mobile pequeno */
  .dia-mes-base { gap: 10px; padding: 12px 14px; }
  .dia-mes-base strong { font-size: 0.85rem; }
  .dia-mes-base span { font-size: 0.7rem; }

  /* APOLLO · fase compact */
  .dia-phase { padding: 12px 8px; }
  .dia-phase strong { font-size: 0.78rem; }
  .dia-phase p { font-size: 0.62rem; }

  /* OMEGA · orbital ajusta tamanho dos pills */
  .dia-omega { max-width: 280px; margin-bottom: 16px; }
  .dia-omega-core { width: 84px; height: 84px; }
  .dia-omega-core span { font-size: 28px; }
  .dia-omega-core strong { font-size: 9px; }
  .orbit-item { font-size: 8px; padding: 4px 7px; }

  /* TITAN · weeks 2 cols x 2 rows */
  .dia-mes-row { gap: 6px; }
}

/* MOBILE PEQUENO ≤ 480px */
@media (max-width: 480px) {
  .hero { padding: 90px 16px 56px; min-height: 90vh; }
  .hero-title { margin: 18px 0 22px; font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .hero-lede { margin-bottom: 24px; font-size: 0.92rem; }
  .hero-pills {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
  }
  .hero-pills .pill { font-size: 11px; letter-spacing: 0.05em; }

  .problema, .esteira, .plataforma, .roadmap-section, .fluxo { padding: 60px 0; }
  .decisao { padding: 70px 0 50px; }
  .section-head { margin-bottom: 36px; }

  /* ESTEIRA mobile pequeno */
  .ladder-stops { gap: 48px; }
  .stop-marker { width: 96px; height: 96px; }
  .stop-marker svg { width: 32px; height: 32px; }
  .stop h3 { font-size: 1.05rem; }
  .stop::after { bottom: -28px; font-size: 18px; }

  /* PRODUTO mobile pequeno */
  .produto-card { padding: 70px 0 44px; }
  .produto-header { margin-bottom: 32px; }
  .produto-bignum { display: none; }
  .product-display { margin-bottom: 12px; font-size: clamp(2.5rem, 14vw, 4rem); }
  .product-sub { font-size: 0.95rem; }
  .produto-lede { font-size: 1rem; padding-left: 16px; margin-bottom: 22px; }
  .produto-grid { padding: 0 12px; gap: 28px; }
  .produto-diagram { padding: 20px 16px; }
  .diagram-label { font-size: 9px; margin-bottom: 18px; }

  /* DIAGRAMAS mobile pequeno */
  .dia-magnus-weeks { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .wk { padding: 6px 0; font-size: 7px; }
  .dia-mes-row { grid-template-columns: repeat(2, 1fr); }
  .dia-apollo { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .dia-omega { max-width: 260px; }

  /* FLUXO step compact */
  .fluxo-step { padding: 20px 18px; }
  .fluxo-step h3 { font-size: 0.98rem; }

  /* PLATAFORMA */
  .col-third, .col-own { padding: 20px 18px; }

  /* DECISÃO */
  .next-step { margin: 36px 12px 0; }
  .next-step-inner { padding: 18px; }
  .next-step-inner p { font-size: 0.85rem; }
  .next-product { font-size: 1rem; }
  .cta-btn { padding: 14px 26px; font-size: 0.92rem; }
  .dcheck { padding: 14px 16px; }
  .dcheck strong { font-size: 0.85rem; }
  .cta-tiny { font-size: 0.9rem; }
  .page-foot { font-size: 9px; padding: 24px 12px 0; }
}

/* MOBILE EXTRA PEQUENO ≤ 360px */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .topbar { gap: 10px; padding: 7px 12px 7px 8px; }
  .brand-mark { width: 20px; height: 20px; font-size: 10px; }
  .brand { font-size: 11px; }
  .topcta { font-size: 10px; }
  .hero-title { font-size: 1.7rem; }
  .hero-pills { padding: 12px 14px; gap: 6px 10px; }
  .hero-pills .pill { font-size: 10px; }
  .product-display { font-size: 2.4rem; }
  .stop-marker { width: 84px; height: 84px; }
  .stop-marker svg { width: 28px; height: 28px; }
  .stop h3 { font-size: 1rem; }
  .dia-omega { max-width: 240px; }
  .dia-omega-core { width: 76px; height: 76px; }
  .dia-omega-core span { font-size: 24px; }
  .orbit-item { font-size: 7px; padding: 3px 6px; }
}

/* =====================================================
   MARKETING
   ===================================================== */
.marketing {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(197, 142, 31, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-warm) 50%, var(--bg-soft) 100%);
  overflow: hidden;
}
.marketing .section-head h2,
.cs .section-head h2 {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(197, 142, 31, 0.1));
}
.cs .section-head h2 {
  background: linear-gradient(135deg, var(--ink) 0%, var(--violet) 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(99, 102, 241, 0.1));
}
.mkt-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* HUB visual · 5 canais → funil */
.mkt-hub {
  max-width: 1080px;
  margin: 0 auto 64px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.mkt-hub-channels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.mkt-chan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.mkt-chan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.mkt-chan-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  transition: all 0.4s;
}
.mkt-chan.c3 .mkt-chan-icon, .mkt-chan.c4 .mkt-chan-icon {
  background: var(--violet-bg);
  color: var(--violet);
}
.mkt-chan.c5 .mkt-chan-icon {
  background: var(--teal-bg);
  color: var(--teal);
}
.mkt-chan:hover .mkt-chan-icon {
  transform: scale(1.15) rotate(8deg);
}
.mkt-chan-icon svg { width: 24px; height: 24px; }
.mkt-chan strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
}

.mkt-hub-arrows {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 20px;
  text-align: center;
}
.mkt-hub-arrows span {
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
  animation: arrowDown 2s ease-in-out infinite;
}
.mkt-hub-arrows span:nth-child(1) { animation-delay: 0s; }
.mkt-hub-arrows span:nth-child(2) { animation-delay: 0.2s; }
.mkt-hub-arrows span:nth-child(3) { animation-delay: 0.4s; color: var(--violet); }
.mkt-hub-arrows span:nth-child(4) { animation-delay: 0.6s; color: var(--violet); }
.mkt-hub-arrows span:nth-child(5) { animation-delay: 0.8s; color: var(--teal); }

.mkt-hub-funnel {
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--gold-bg) 50%, var(--violet-bg) 100%);
  border: 1.5px solid rgba(197, 142, 31, 0.4);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.mkt-hub-funnel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(197, 142, 31, 0.1), transparent 60%);
  animation: spinSlow 20s linear infinite;
}
.mkt-funnel-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.mkt-hub-funnel strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

/* Cards detalhados */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.mkt-card-wide {
  grid-column: span 2;
}
.mkt-card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.mkt-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--violet), var(--teal));
  opacity: 0.5;
}
.mkt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 142, 31, 0.4);
}
.mkt-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.mkt-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mkt-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
.mkt-card-icon.gold { background: var(--gold-bg); color: var(--gold); box-shadow: 0 6px 16px rgba(197,142,31,0.15); }
.mkt-card-icon.violet { background: var(--violet-bg); color: var(--violet); box-shadow: 0 6px 16px rgba(99,102,241,0.15); }
.mkt-card-icon.teal { background: var(--teal-bg); color: var(--teal); box-shadow: 0 6px 16px rgba(8,145,178,0.15); }
.mkt-card-icon svg { width: 28px; height: 28px; }
.mkt-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.mkt-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 500;
}
.mkt-card:nth-child(3) .mkt-sub, .mkt-card:nth-child(4) .mkt-sub { color: var(--violet); }
.mkt-card:nth-child(5) .mkt-sub { color: var(--teal); }
.mkt-body {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0 0 18px;
  line-height: 1.6;
}
.mkt-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mkt-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 0.88rem;
  line-height: 1.5;
}
.mkt-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.mkt-card:nth-child(3) .mkt-list li::before, .mkt-card:nth-child(4) .mkt-list li::before { color: var(--violet); }
.mkt-card:nth-child(5) .mkt-list li::before { color: var(--teal); }

/* =====================================================
   CUSTOMER SUCCESS
   ===================================================== */
.cs {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--surface) 50%, var(--bg-cool) 100%);
  overflow: hidden;
}

/* Ciclo CS visual · cliente no centro */
.cs-cycle {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto 64px;
}
.cs-cycle-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: spinSlow 40s linear infinite reverse;
}
.cs-cycle-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--gold), #8B5A0E);
  color: white;
  border-radius: 50%;
  box-shadow: 0 16px 48px rgba(197,142,31,0.4);
  z-index: 3;
  animation: coreFloat 4s ease-in-out infinite;
}
.cs-center-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.cs-center-icon svg { width: 32px; height: 32px; }
.cs-cycle-center strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.cs-center-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

.cs-cycle-nodes {
  position: absolute;
  inset: 0;
}
.cs-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  width: 140px;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
}
.cs-node:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}
.cs-node.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.cs-node.n2 { top: 50%; right: 0; transform: translateY(-50%); }
.cs-node.n3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.cs-node.n4 { top: 50%; left: 0; transform: translateY(-50%); }

.cs-node.n1:hover { transform: translateX(-50%) translateY(-4px) scale(1.05); }
.cs-node.n3:hover { transform: translateX(-50%) translateY(-4px) scale(1.05); }
.cs-node.n2:hover { transform: translateY(-50%) translateY(-4px) scale(1.05); }
.cs-node.n4:hover { transform: translateY(-50%) translateY(-4px) scale(1.05); }

.cs-node-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 4px;
}
.cs-node-icon.gold { background: var(--gold-bg); color: var(--gold); }
.cs-node-icon.violet { background: var(--violet-bg); color: var(--violet); }
.cs-node-icon.teal { background: var(--teal-bg); color: var(--teal); }
.cs-node-icon svg { width: 22px; height: 22px; }
.cs-node strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.cs-node p {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.3;
}

/* Cards CS detalhados */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 20px;
}
.cs-card {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.cs-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--violet), var(--teal));
  opacity: 0.5;
}
.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,142,31,0.4);
}
.cs-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.cs-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 18px;
}
.cs-card-icon.gold { background: var(--gold-bg); color: var(--gold); }
.cs-card-icon.violet { background: var(--violet-bg); color: var(--violet); }
.cs-card-icon.teal { background: var(--teal-bg); color: var(--teal); }
.cs-card-icon svg { width: 26px; height: 26px; }
.cs-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--ink);
}
.cs-body {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 16px;
}
.cs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.45;
}
.cs-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =====================================================
   v6 · MARKETING & CS REFEITOS
   2 caminhos · funil · recuperação · rotina diária · indicação
   ===================================================== */

/* === MARKETING / CS · headers gigantes (estilo produto) === */
.marketing .produto-header,
.cs .produto-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 16px;
}
.marketing .product-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 16px 0 18px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 40px rgba(197, 142, 31, 0.18));
  word-break: keep-all;
  overflow-wrap: break-word;
}
.cs .product-display {
  background: linear-gradient(135deg, var(--ink) 0%, var(--violet) 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 40px rgba(99, 102, 241, 0.18));
}
.marketing .product-sub,
.cs .product-sub {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto;
}

/* === 2 CAMINHOS LADO A LADO === */
.caminhos-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto 56px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.caminho {
  padding: 40px 36px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.caminho::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.caminho-organico::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.caminho-pago::before {
  background: linear-gradient(90deg, var(--violet), var(--violet-soft));
}
.caminho:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.1);
}
.caminho-organico:hover { border-color: rgba(197, 142, 31, 0.4); }
.caminho-pago:hover { border-color: rgba(99, 102, 241, 0.4); }

.caminho-head {
  margin-bottom: 28px;
  text-align: left;
}
.caminho-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.gold-tag {
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid rgba(197, 142, 31, 0.25);
}
.violet-tag {
  background: var(--violet-bg);
  color: var(--violet);
  border: 1px solid rgba(99, 102, 241, 0.25);
}
.teal-tag {
  background: var(--teal-bg);
  color: var(--teal);
  border: 1px solid rgba(8, 145, 178, 0.25);
}
.caminho-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 12px;
  color: var(--ink);
}
.caminho-head p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.caminho-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.caminho-items li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
  list-style: none;
}
.caminho-items li:first-child { border-top: 1px solid var(--line); }

.ci-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 26px;
  flex-shrink: 0;
}
.ci-icon.gold { background: var(--gold-bg); }
.ci-icon.violet { background: var(--violet-bg); }
.ci-icon.teal { background: var(--teal-bg); }
.caminho-items li > div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.caminho-items li > div p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .caminhos-wrap { grid-template-columns: 1fr; gap: 18px; }
  .caminho { padding: 28px 22px; }
  .ci-icon { width: 44px; height: 44px; font-size: 22px; }
}

/* === FUNIL CONVERGE (seta + caixa) === */
.funil-converge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 56px auto;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.funil-arrow {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  animation: arrowPulse 2s ease-in-out infinite;
  box-shadow: 0 12px 32px rgba(197, 142, 31, 0.3);
}
.funil-box {
  width: 100%;
  padding: 28px 36px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.funil-box.gold-box {
  background: linear-gradient(135deg, var(--surface) 0%, var(--gold-bg) 100%);
  border-color: rgba(197, 142, 31, 0.4);
  box-shadow: var(--shadow-gold);
}
.funil-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.funil-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

/* === CONTATO IMEDIATO === */
.contato-wrap,
.recuperacao-wrap {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.contato-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}
.contato-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 10px;
  line-height: 1.15;
}
.contato-head p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.contato-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cc-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.cc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 145, 178, 0.4);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}
.cc-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-bg);
  border-radius: 20px;
  font-size: 36px;
  margin: 0 auto 20px;
}
.cc-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.cc-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .contato-channels { grid-template-columns: 1fr; }
}

/* === RECUPERAÇÃO MULTI-CANAL === */
.rec-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rec-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
}
.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.rec-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 28px;
  margin: 0 auto 16px;
}
.rec-icon.gold { background: var(--gold-bg); }
.rec-icon.violet { background: var(--violet-bg); }
.rec-icon.teal { background: var(--teal-bg); }
.rec-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.rec-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .rec-channels { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* === CS ROTINA DIÁRIA === */
.cs-rotina {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.cs-rotina-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cs-rotina-list::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--teal), var(--gold));
  opacity: 0.3;
  border-radius: 1px;
}
.cs-rotina-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s;
  position: relative;
  z-index: 2;
}
.cs-rotina-item:hover {
  transform: translateX(4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.08);
}
.csr-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--violet-soft));
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}
.cs-rotina-item:nth-child(2) .csr-num {
  background: linear-gradient(135deg, var(--violet), var(--teal));
}
.cs-rotina-item:nth-child(3) .csr-num {
  background: linear-gradient(135deg, var(--teal), var(--teal-soft));
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}
.cs-rotina-item:nth-child(4) .csr-num {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}
.cs-rotina-item:nth-child(5) .csr-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 8px 20px rgba(197, 142, 31, 0.3);
}
.cs-rotina-item > div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cs-rotina-item > div p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .cs-rotina-list::before { left: 24px; }
  .cs-rotina-item { padding: 20px 18px; gap: 14px; }
  .csr-num { width: 44px; height: 44px; font-size: 18px; }
  .cs-rotina-item > div strong { font-size: 1.1rem; }
  .cs-rotina-item > div p { font-size: 0.92rem; }
}

/* === CS PROGRAMA DE INDICAÇÃO === */
.cs-indicacao {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.cs-ind-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 36px;
}
.cs-ind-step {
  padding: 26px 22px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
}
.cs-ind-step:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 142, 31, 0.4);
}
.cs-ind-step.highlight {
  background: linear-gradient(135deg, var(--surface), var(--gold-bg));
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(197, 142, 31, 0.2);
}
.csi-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}
.cs-ind-step.highlight .csi-num {
  background: var(--gold);
  color: white;
  font-size: 28px;
}
.cs-ind-step strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}
.cs-ind-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  animation: arrowPulse 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .cs-ind-flow {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .cs-ind-arrow { display: none; }
}
@media (max-width: 500px) {
  .cs-ind-flow { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION DIVIDER (entre Marketing e CS)
   ===================================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.section-divider.violet .divider-line {
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}
.divider-glyph {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
  animation: dividerSpin 12s linear infinite;
  display: inline-block;
}
.section-divider.violet .divider-glyph { color: var(--violet); }
@keyframes dividerSpin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* =====================================================
   TRAIL · jornada passo a passo
   ===================================================== */
.trail {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.trail-label {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.trail-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
.cs-trail { grid-template-columns: repeat(6, 1fr); }

.trail-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--gold) 0%,
    var(--gold) 25%,
    var(--violet) 50%,
    var(--violet) 75%,
    var(--teal) 100%
  );
  opacity: 0.35;
  z-index: 0;
  border-radius: 1px;
}

.trail-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trail-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(197,142,31,0.18);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
}
.trail-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.3;
  animation: spinSlow 30s linear infinite;
}
.trail-step:hover .trail-num {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(197,142,31,0.3);
}
.cs-trail .trail-step:nth-child(2) .trail-num,
.cs-trail .trail-step:nth-child(3) .trail-num {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: 0 8px 24px rgba(99,102,241,0.18);
}
.cs-trail .trail-step:nth-child(4) .trail-num,
.cs-trail .trail-step:nth-child(5) .trail-num {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(8,145,178,0.18);
}
.cs-trail .trail-step:last-child .trail-num {
  background: linear-gradient(135deg, var(--gold), var(--violet));
  color: white;
  border-color: transparent;
  font-size: 22px;
}

.trail-content {
  max-width: 160px;
}
.trail-content strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.trail-content p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .trail { margin-bottom: 56px; }
  .trail-steps, .cs-trail {
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
    max-width: 480px;
    margin: 0 auto;
  }
  .trail-steps::before {
    display: block;
    content: "";
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    height: auto;
    right: auto;
    background: linear-gradient(180deg,
      var(--gold) 0%,
      var(--gold) 25%,
      var(--violet) 50%,
      var(--violet) 75%,
      var(--teal) 100%
    );
    opacity: 0.4;
    border-radius: 1px;
  }
  .trail-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 4px 0;
  }
  .trail-num {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 16px rgba(197,142,31,0.18), 0 0 0 6px var(--bg-warm);
  }
  .cs .trail-num { box-shadow: 0 4px 16px rgba(99,102,241,0.18), 0 0 0 6px var(--surface); }
  .trail-content { max-width: none; flex: 1; }
}
@media (max-width: 480px) {
  .trail-num { width: 48px; height: 48px; font-size: 16px; }
  .trail-steps::before { left: 24px; }
  .trail-content strong { font-size: 0.9rem; }
  .trail-content p { font-size: 0.78rem; }
}

/* =====================================================
   SIMPLE FOOTER
   ===================================================== */
.simple-footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  padding: 80px 0 56px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.simple-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 14px;
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 4px 0;
  text-transform: uppercase;
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted-2);
  margin: 0;
  text-transform: uppercase;
}

/* =====================================================
   MOBILE · MARKETING + CS (compacto)
   ===================================================== */
@media (max-width: 1000px) {
  .marketing, .cs { padding: 80px 0; }
  .mkt-hub-channels {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .mkt-chan { padding: 14px 10px; gap: 8px; }
  .mkt-chan-icon { width: 40px; height: 40px; }
  .mkt-chan-icon svg { width: 20px; height: 20px; }
  .mkt-chan strong { font-size: 0.72rem; }
  .mkt-hub-arrows { display: none; }
  .mkt-hub-funnel { margin-top: 20px; padding: 22px 24px; }
  .mkt-hub-funnel strong { font-size: 0.95rem; }

  /* Cards mais compactos */
  .marketing-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mkt-card-wide { grid-column: span 2; }
  .mkt-card { padding: 20px 18px; }
  .mkt-card h3 { font-size: 1.05rem; }
  .mkt-sub { font-size: 0.82rem; margin-bottom: 10px; }
  .mkt-body { font-size: 0.82rem; margin-bottom: 12px; line-height: 1.5; }
  .mkt-list li { font-size: 0.78rem; padding-left: 18px; }
  .mkt-card-icon { width: 40px; height: 40px; }
  .mkt-card-icon svg { width: 22px; height: 22px; }

  /* CS grid 2 cols em tablet */
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-card { padding: 22px 20px; }
  .cs-cycle { max-width: 440px; }
  .cs-cycle-center { width: 120px; height: 120px; }
  .cs-node { width: 110px; padding: 12px; }
}

@media (max-width: 600px) {
  .marketing, .cs { padding: 64px 0; }
  .mkt-hub-channels { grid-template-columns: repeat(3, 1fr); }
  .mkt-hub-funnel { padding: 18px 20px; }
  .mkt-hub-funnel strong { font-size: 0.85rem; letter-spacing: 0.04em; }

  /* Marketing cards: 1 col, mais compactos · body fica oculto */
  .marketing-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 12px; }
  .mkt-card-wide { grid-column: auto; }
  .mkt-card { padding: 18px 16px; border-radius: 14px; }
  .mkt-card-head { margin-bottom: 10px; }
  .mkt-card h3 { font-size: 1rem; }
  .mkt-sub { font-size: 0.78rem; margin-bottom: 10px; }
  .mkt-body { display: none; }
  .mkt-list { gap: 5px; padding-top: 8px; border-top: 1px solid var(--line-2); }
  .mkt-list li { font-size: 0.78rem; padding-left: 18px; }
  .mkt-card-icon { width: 36px; height: 36px; }
  .mkt-card-icon svg { width: 18px; height: 18px; }

  /* CS: 1 col · idem */
  .cs-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 12px; }
  .cs-card { padding: 18px 16px; border-radius: 14px; }
  .cs-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
  .cs-body { display: none; }
  .cs-list { padding-top: 8px; border-top: 1px solid var(--line-2); }
  .cs-list li { font-size: 0.78rem; padding-left: 18px; }
  .cs-card-icon { width: 38px; height: 38px; margin-bottom: 12px; }
  .cs-card-num { margin-bottom: 10px; }

  /* CS cycle */
  .cs-cycle { max-width: 360px; margin-bottom: 48px; }
  .cs-cycle-center { width: 100px; height: 100px; }
  .cs-cycle-center strong { font-size: 11px; }
  .cs-center-sub { font-size: 8px; }
  .cs-node { width: 92px; padding: 10px; }
  .cs-node strong { font-size: 0.72rem; }
  .cs-node p { font-size: 0.62rem; }
  .cs-node-icon { width: 32px; height: 32px; }
  .cs-node-icon svg { width: 18px; height: 18px; }

  /* Section divider mais compacto */
  .section-divider { padding: 24px 24px; gap: 16px; }
  .divider-glyph { font-size: 15px; }
}

@media (max-width: 480px) {
  .marketing, .cs { padding: 56px 0; }
  .mkt-hub { margin-bottom: 48px; }
  .mkt-hub-channels { grid-template-columns: repeat(2, 1fr); }
  .trail { margin-bottom: 48px; }
  .cs-cycle { max-width: 320px; }
  .cs-cycle-center { width: 88px; height: 88px; }
  .cs-cycle-center strong { font-size: 10px; }
  .cs-node { width: 80px; padding: 9px; }
  .cs-node strong { font-size: 0.66rem; }
  .cs-node p { font-size: 0.58rem; line-height: 1.25; }
  .cs-node-icon { width: 28px; height: 28px; }
  .cs-node-icon svg { width: 15px; height: 15px; }
}

/* =====================================================
   v5 · POLIMENTO HUMANIZADO + FUTURISTA
   Aurora mais visível · Tipografia mais dramática
   Cards com personalidade · Animations orgânicas
   ===================================================== */

/* === AURORA MAIS PRESENTE === */
.aurora-blob.b1,
.aurora-blob.b2,
.aurora-blob.b3 {
  opacity: 0.55;
  filter: blur(110px);
  mix-blend-mode: normal;
}
.aurora-blob.b1 {
  background: radial-gradient(circle, rgba(197, 142, 31, 0.45), transparent 65%);
}
.aurora-blob.b2 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 65%);
}
.aurora-blob.b3 {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.28), transparent 65%);
}

/* === TIPOGRAFIA · MAIS DRAMA === */
h2 {
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 800;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.25rem);
}
.hero-title {
  font-size: clamp(1.9rem, 6.3vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 800;
  padding: 0 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-title .reveal-word.gold {
  background: linear-gradient(135deg, var(--gold), #B07C16);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Lede com mais respiração */
.section-head .lede,
.hero-lede {
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* === EYEBROW · STICKER STYLE === */
.eyebrow {
  padding: 6px 14px;
  background: rgba(197, 142, 31, 0.08);
  border: 1px solid rgba(197, 142, 31, 0.18);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.cs .section-head .eyebrow {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  color: var(--violet);
}
.fluxo .section-head .eyebrow {
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.2);
  color: var(--teal);
}

/* === HERO · MAIS DRAMA === */
.hero {
  min-height: 100svh;
  padding: 130px 20px 100px;
}

/* Orbs flutuantes decorativos */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 {
  width: 80px; height: 80px;
  top: 18%; left: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 235, 153, 0.9), rgba(197, 142, 31, 0.6));
  animation-delay: 0s;
}
.orb-2 {
  width: 56px; height: 56px;
  top: 60%; left: 14%;
  background: radial-gradient(circle at 30% 30%, rgba(199, 210, 254, 0.9), rgba(99, 102, 241, 0.6));
  animation-delay: -4s;
}
.orb-3 {
  width: 72px; height: 72px;
  top: 22%; right: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(191, 219, 254, 0.9), rgba(8, 145, 178, 0.6));
  animation-delay: -8s;
}
.orb-4 {
  width: 48px; height: 48px;
  top: 70%; right: 16%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 235, 153, 0.9), rgba(229, 185, 107, 0.6));
  animation-delay: -2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  33% { transform: translate(20px, -30px) scale(1.1); opacity: 0.6; }
  66% { transform: translate(-15px, 25px) scale(0.95); opacity: 0.4; }
}
@media (max-width: 768px) {
  .orb-1 { width: 60px; height: 60px; }
  .orb-2 { width: 44px; height: 44px; }
  .orb-3 { width: 56px; height: 56px; }
  .orb-4 { width: 40px; height: 40px; }
}
.hero-glow {
  width: min(1100px, 110vw);
  height: min(1100px, 110vw);
  background: radial-gradient(circle,
    rgba(197, 142, 31, 0.18) 0%,
    rgba(99, 102, 241, 0.08) 40%,
    transparent 65%
  );
}
.hero-title .gold {
  background: linear-gradient(135deg, var(--gold), #B07C16);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-pills {
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* === PRODUTO HEADER · MAIS PESO === */
.product-display {
  letter-spacing: -0.055em;
  filter: drop-shadow(0 4px 32px rgba(197, 142, 31, 0.15));
}
.product-sub {
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.5;
}
.tag {
  padding: 7px 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/* === CARDS · HOVER MAIS EXPRESSIVO === */
.pcard:hover,
.mkt-card:hover,
.cs-card:hover,
.fluxo-step:hover,
.spec:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.1),
    0 8px 16px rgba(197, 142, 31, 0.08);
}

/* === CARDS · DECORAÇÃO SUTIL === */
.pcard,
.mkt-card,
.cs-card,
.fluxo-step {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s;
}
.pcard::after,
.mkt-card::after,
.cs-card::after,
.fluxo-step::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(197, 142, 31, 0),
    rgba(99, 102, 241, 0),
    rgba(8, 145, 178, 0)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s, background 0.5s;
  z-index: 1;
}
.fluxo-step::after { content: none; } /* tem ::after próprio (seta →) */
.pcard:hover::after,
.mkt-card:hover::after,
.cs-card:hover::after {
  opacity: 1;
  background: linear-gradient(135deg,
    rgba(197, 142, 31, 0.5),
    rgba(99, 102, 241, 0.5),
    rgba(8, 145, 178, 0.4)
  );
}

/* Restaurar a setinha do fluxo-step que sobrescrevemos */
.fluxo-step::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
  font-weight: 600;
  z-index: 3;
  background: none;
  inset: auto;
  padding: 0;
  border-radius: 0;
  opacity: 1;
  -webkit-mask: none;
  mask: none;
}
.fluxo-step:last-child::after { display: none; }
@media (max-width: 1100px) { .fluxo-step::after { display: none; } }

/* === FLUXO STEP · MAIS PROFUNDIDADE === */
.fluxo-step {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
}

/* === MKT CHAN · MAIS HUMANO === */
.mkt-chan {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mkt-chan:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.08),
    0 4px 12px rgba(197, 142, 31, 0.1);
}

/* === STOPS DA ESTEIRA · MAIS GLOW === */
.stop-marker {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 1), var(--surface) 70%);
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.08),
    0 0 0 0 currentColor,
    inset 0 -2px 8px rgba(0, 0, 0, 0.03);
}
.stop-marker:hover {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 248, 230, 1), var(--surface) 70%);
  box-shadow:
    0 24px 60px rgba(197, 142, 31, 0.25),
    0 0 0 8px rgba(197, 142, 31, 0.08);
}

/* === TRAIL NUM · MAIS GLOW === */
.trail-num {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 1), var(--surface) 70%);
}

/* === SECTION HEAD · LEDE MAIS DRAMA === */
.section-head .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* === FUNNEL OMEGA-LIKE CORE === */
.dia-omega-core,
.cs-cycle-center {
  background:
    radial-gradient(circle at 30% 30%, #F5C77C 0%, var(--gold) 50%, #8B5A0E 100%);
  box-shadow:
    0 16px 56px rgba(197, 142, 31, 0.45),
    inset 0 -8px 24px rgba(139, 90, 14, 0.4),
    inset 0 4px 12px rgba(255, 235, 153, 0.5);
}

/* === NEXT-STEP · MAIS BRILHO === */
.next-step-inner {
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 249, 236, 0.9),
    rgba(255, 255, 255, 0.4)
  );
  backdrop-filter: blur(12px);
}

/* === SCROLL BEHAVIOR === */
html { scroll-padding-top: 80px; }

/* === SELECTION HIGHLIGHT === */
::selection {
  background: rgba(197, 142, 31, 0.2);
  color: var(--ink);
}

/* === SCROLLBAR · MAIS BONITO === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--violet), var(--teal));
  border-radius: 100px;
  opacity: 0.5;
}
::-webkit-scrollbar-thumb:hover { opacity: 1; }

/* === LINHAS DA ESTEIRA · GLOW MAIS FORTE === */
.ladder-track-fill {
  filter: drop-shadow(0 0 12px currentColor);
}
.ladder-shimmer {
  width: 160px;
  background: radial-gradient(ellipse,
    rgba(255, 255, 255, 1),
    rgba(255, 240, 200, 0.8),
    transparent 70%
  );
  filter: blur(3px);
}

/* === DIAGRAMA · MAIS PROFUNDIDADE === */
.produto-diagram {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.produto-diagram:hover {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--bg-warm) 100%);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(197, 142, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* === MOBILE · COMPENSAÇÕES === */
@media (max-width: 600px) {
  .section-head h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
  .product-display { font-size: clamp(3rem, 16vw, 5rem); }
  .eyebrow { font-size: 9px; padding: 5px 12px; }
  .pcard:hover,
  .mkt-card:hover,
  .cs-card:hover,
  .spec:hover,
  .fluxo-step:hover { transform: translateY(-4px); }
}

/* ACESSIBILIDADE · reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .aurora-blob, .hero-glow, .cta-glow { animation: none !important; }
}
