/* =========================================================
   KNT AGENCY — APRESENTAÇÃO COMERCIAL · v3
   Engineering aesthetic · dark · layered · technical
   ========================================================= */

:root {
  /* Surfaces */
  --bg-0: #07090D;
  --bg-1: #0D1117;
  --bg-2: #131A24;
  --bg-3: #1A2332;

  /* Borders */
  --border-1: rgba(255, 255, 255, 0.04);
  --border-2: rgba(255, 255, 255, 0.08);
  --border-3: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(59, 130, 246, 0.35);

  /* Text */
  --text-1: #F8FAFC;
  --text-2: #CBD5E1;
  --text-3: #94A3B8;
  --text-4: #64748B;
  --text-5: #475569;

  /* Brand */
  --brand-400: #60A5FA;
  --brand-500: #3B82F6;
  --brand-600: #2563EB;
  --brand-700: #1D4ED8;
  --brand-glow: rgba(59, 130, 246, 0.5);
  --brand-glow-soft: rgba(59, 130, 246, 0.15);

  /* Signal */
  --success: #22C55E;
  --warning: #FCD34D;
  --danger:  #EF4444;

  /* Type scale (fixed for 1920×1080 deck) — v5 enlarged for live-call legibility */
  --fs-display: 124px;
  --fs-h1: 88px;
  --fs-h2: 60px;
  --fs-h3: 32px;
  --fs-body: 26px;
  --fs-small: 19px;
  --fs-caption: 15px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Motion */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --t-fast: 200ms;
  --t-med: 400ms;
}

/* =========================================================
   RESET
   ========================================================= */

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #000;
  color: var(--text-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }

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

/* =========================================================
   STAGE & DECK (letterboxed 1920×1080)
   ========================================================= */

.stage {
  position: fixed;
  inset: 0;
  background: #000;
  overflow: hidden;
}

.deck {
  position: absolute;
  top: 0; left: 0;
  width: 1920px;
  height: 1080px;
  transform-origin: 0 0;
  background: var(--bg-0);
  overflow: hidden;
}

/* =========================================================
   SLIDE — LAYERED CANVAS
   ========================================================= */

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-0);
  color: var(--text-1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
  transform: translateY(8px);
  display: flex;
  flex-direction: column;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

/* Layer 1 — grain noise */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Layer 2 — radial glow (top-right) */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Optional dot-grid for transition slides */
.slide.has-grid {
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-0), var(--bg-0));
  background-size: 32px 32px, 100% 100%;
  background-position: 0 0, 0 0;
}

.slide > * { position: relative; z-index: 1; }

/* =========================================================
   HEADER · FOOTER · CORNER CROSSES
   ========================================================= */

.slide-header {
  position: absolute;
  top: 56px;
  left: 80px;
  right: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.slide-header::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-1);
}

.logo-header {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.18));
}

.slide-counter {
  display: none !important;
}

.reveal-hint {
  display: none !important;
}

/* Footer */
.slide-footer {
  position: absolute;
  bottom: 40px;
  left: 80px;
  right: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.slide-footer::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-1);
}

.footer-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-5);
  text-transform: uppercase;
}

.dot-progress {
  display: flex;
  gap: 6px;
}

.dot-progress .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-2);
  transition: background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}

.dot-progress .dot.is-active {
  background: var(--brand-500);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

/* Corner crosshair markers (transition slides) */
.corner-crosses {
  position: absolute;
  inset: 48px;
  pointer-events: none;
  z-index: 2;
}

.corner-crosses > span {
  position: absolute;
  width: 12px;
  height: 12px;
  color: var(--text-5);
}

.corner-crosses > span::before,
.corner-crosses > span::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.corner-crosses > span::before {
  left: 0; top: 50%;
  width: 12px; height: 1px;
  transform: translateY(-50%);
}

.corner-crosses > span::after {
  top: 0; left: 50%;
  height: 12px; width: 1px;
  transform: translateX(-50%);
}

.corner-crosses .tl { top: 0; left: 0; }
.corner-crosses .tr { top: 0; right: 0; }
.corner-crosses .bl { bottom: 0; left: 0; }
.corner-crosses .br { bottom: 0; right: 0; }

/* =========================================================
   CONTAINER + GRID
   ========================================================= */

.slide-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 168px 80px 96px;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
}

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.col-span-3  { grid-column: span 3; }
.col-span-4  { grid-column: span 4; }
.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-12 { grid-column: span 12; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.display {
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--text-1);
  text-wrap: balance;
}

.h1 {
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text-1);
  text-wrap: balance;
}

.h2 {
  font-size: var(--fs-h2);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-1);
  text-wrap: balance;
}

.h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 600;
  color: var(--text-1);
}

.body {
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-2);
}

.body-lg {
  font-size: 34px;
  line-height: 1.5;
  color: var(--text-2);
  text-wrap: pretty;
}

.lead {
  font-size: 36px;
  line-height: 1.4;
  color: var(--text-3);
  font-weight: 400;
  text-wrap: balance;
}

.small { font-size: var(--fs-small); color: var(--text-3); }

/* Mono caption — the technical signature */
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

.mono.lg {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.mono.accent { color: var(--brand-500); }
.mono.dim    { color: var(--text-5); }

/* Eyebrow (pré-título mono) */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-500);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-500);
}

.text-accent  { color: var(--brand-500); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.text-1 { color: var(--text-1); }
.text-2 { color: var(--text-2); }
.text-3 { color: var(--text-3); }
.text-4 { color: var(--text-4); }

/* =========================================================
   CARDS — gradient surfaces, not flat
   ========================================================= */

.card {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.card.compact { padding: 20px 24px; }
.card.tight   { padding: 16px 20px; }
.card.spacious { padding: 40px; }

.card.accent {
  background:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border-color: var(--border-accent);
  box-shadow: 0 0 80px -20px rgba(59, 130, 246, 0.4);
}

.card.elevated {
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-color: var(--border-3);
}

.card .ribbon {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
  opacity: 0.4;
}

.card.accent .ribbon { opacity: 0.8; }

/* Card with corner index */
.card-indexed {
  position: relative;
}

.card-indexed .index {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-5);
}

/* =========================================================
   TAGS / BADGES
   ========================================================= */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--border-accent);
  padding: 6px 12px;
  border-radius: 6px;
}

.tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 8px var(--brand-500);
}

.tag.success { color: var(--success); border-color: rgba(34, 197, 94, 0.35); background: rgba(34, 197, 94, 0.08); }
.tag.success .dot { background: var(--success); box-shadow: 0 0 8px var(--success); }
.tag.muted   { color: var(--text-4); border-color: var(--border-2); background: transparent; }
.tag.muted .dot { background: var(--text-4); box-shadow: none; }

/* =========================================================
   METRICS
   ========================================================= */

.metric { display: flex; flex-direction: column; gap: 8px; }

.metric .m-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}

.metric .m-value {
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.metric .m-value .unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
}

.metric .m-value.accent  { color: var(--brand-500); }
.metric .m-value.success { color: var(--success); }
.metric .m-value.xl { font-size: 120px; }

.metric .m-sub {
  font-size: 14px;
  color: var(--text-3);
}

/* Sparkline bar */
.bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.bar.success > span {
  background: linear-gradient(90deg, #16A34A, var(--success));
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

/* =========================================================
   DIVIDER
   ========================================================= */

.divider {
  position: relative;
  height: 1px;
  background: var(--border-2);
  width: 100%;
}

.divider.ticked::before,
.divider.ticked::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 1px;
  height: 11px;
  background: var(--border-2);
}

.divider.ticked::before { left: 80px; }
.divider.ticked::after  { right: 80px; }

.rule {
  height: 1px;
  background: var(--border-2);
  width: 120px;
}

/* =========================================================
   STACK HELPERS
   ========================================================= */

.stack { display: flex; flex-direction: column; }
.stack-1 { gap: 4px; }
.stack-2 { gap: 8px; }
.stack-3 { gap: 16px; }
.stack-4 { gap: 24px; }
.stack-5 { gap: 32px; }
.stack-6 { gap: 48px; }
.stack-7 { gap: 64px; }

.row { display: flex; align-items: center; }
.row-3 { gap: 16px; }
.row-4 { gap: 24px; }

.between { justify-content: space-between; }
.center { align-items: center; }
.center-x { justify-content: center; }

/* =========================================================
   SLIDE 01 — BRAND COVER (premium · cinematic depth)
   ========================================================= */

.cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.cover-stage {
  position: relative;
  width: 1100px;
  height: 1100px;
  display: grid;
  place-items: center;
}

.cover-stage .ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cover-stage .ring.r1 { width: 620px; height: 620px; border: 1px solid var(--border-accent); opacity: 0.55; }
.cover-stage .ring.r2 { width: 820px; height: 820px; border: 1px solid var(--border-2); opacity: 0.65; }
.cover-stage .ring.r3 { width: 1020px; height: 1020px; border: 1px solid var(--border-1); }
.cover-stage .ring.r4 {
  width: 1240px; height: 1240px;
  border: 1px dashed rgba(255,255,255,0.04);
}

.cover-stage .ring.r1::before,
.cover-stage .ring.r2::before,
.cover-stage .ring.r3::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 16px var(--brand-500);
}

.cover-stage .ring.r1::before { top: -4px; left: 50%; transform: translateX(-50%); }
.cover-stage .ring.r2::before { left: -4px; top: 50%; transform: translateY(-50%); }
.cover-stage .ring.r3::after { right: -4px; bottom: 30%; opacity: 0.7; }

/* Subtle tick marks on r2 ring (HUD) */
.cover-stage .ring.r2::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, transparent 6%,
    rgba(255,255,255,0.06) 6%, rgba(255,255,255,0.06) 6.5%,
    transparent 6.5%, transparent 93.5%,
    rgba(255,255,255,0.06) 93.5%, rgba(255,255,255,0.06) 94%,
    transparent 94%);
  transform: translateY(-50%);
  pointer-events: none;
}

.cover-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 920px;
  height: 920px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(59, 130, 246, 0.28) 0%,
    rgba(59, 130, 246, 0.10) 24%,
    rgba(59, 130, 246, 0.03) 48%,
    transparent 65%);
  pointer-events: none;
  animation: cover-pulse 5s ease-in-out infinite;
  filter: blur(8px);
}

/* secondary atmospheric glow (off-center for cinematic depth) */
.cover::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.cover-logo {
  position: relative;
  width: 720px;
  height: auto;
  z-index: 2;
  filter:
    drop-shadow(0 0 60px rgba(59, 130, 246, 0.45))
    drop-shadow(0 0 200px rgba(59, 130, 246, 0.22));
}

.cover-tagline-block {
  position: absolute;
  bottom: 184px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 3;
}

.cover-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--brand-500);
}

.cover-eyebrow .ce-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 28px 13px 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--brand-300, #93C5FD);
  background:
    linear-gradient(180deg, rgba(59,130,246,0.10), rgba(59,130,246,0.02)),
    linear-gradient(180deg, rgba(13,17,23,0.85), rgba(13,17,23,0.65));
  border: 1px solid rgba(59,130,246,0.32);
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.06),
    0 0 24px rgba(59,130,246,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
  isolation: isolate;
  overflow: hidden;
}

.cover-eyebrow .ce-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  opacity: 0.65;
}

.cover-eyebrow .ce-bracket {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--brand-500);
  z-index: 2;
}

.cover-eyebrow .ce-bracket.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.cover-eyebrow .ce-bracket.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.cover-eyebrow .ce-bracket.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.cover-eyebrow .ce-bracket.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.cover-eyebrow .ce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 12px rgba(59,130,246,0.85), 0 0 24px rgba(59,130,246,0.5);
  flex-shrink: 0;
  animation: ce-pulse 2.4s ease-in-out infinite;
}

@keyframes ce-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.cover-eyebrow .ce-text {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(59,130,246,0.4);
}

.cover-eyebrow .ce-text em {
  font-style: normal;
  color: rgba(59,130,246,0.55);
  font-weight: 400;
  letter-spacing: 0;
}

.cover-eyebrow .ce-rail {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 12px;
}

.cover-eyebrow .ce-rail::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.cover-eyebrow .ce-rail.left::before {
  background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.15) 30%, var(--brand-500) 100%);
}

.cover-eyebrow .ce-rail.right::before {
  background: linear-gradient(90deg, var(--brand-500) 0%, rgba(59,130,246,0.15) 70%, transparent 100%);
}

.cover-eyebrow .ce-rail .ce-tick {
  position: relative;
  width: 1px;
  height: 6px;
  background: var(--brand-500);
  opacity: 0.55;
}

.cover-eyebrow .ce-rail.left .ce-tick:nth-child(1) { opacity: 0.18; }
.cover-eyebrow .ce-rail.left .ce-tick:nth-child(2) { opacity: 0.32; }
.cover-eyebrow .ce-rail.left .ce-tick:nth-child(3) { opacity: 0.55; height: 8px; }
.cover-eyebrow .ce-rail.left .ce-tick:nth-child(4) { opacity: 0.85; height: 10px; }

.cover-eyebrow .ce-rail.right .ce-tick:nth-child(1) { opacity: 0.85; height: 10px; }
.cover-eyebrow .ce-rail.right .ce-tick:nth-child(2) { opacity: 0.55; height: 8px; }
.cover-eyebrow .ce-rail.right .ce-tick:nth-child(3) { opacity: 0.32; }
.cover-eyebrow .ce-rail.right .ce-tick:nth-child(4) { opacity: 0.18; }

.cover-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-transform: none;
  color: var(--text-2);
  line-height: 1.4;
  max-width: 1080px;
  text-align: center;
  text-wrap: balance;
}

.cover-tagline em {
  font-style: normal;
  color: var(--text-1);
  font-weight: 500;
}

/* HUD corner marks */
.hud-mark {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-5);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hud-mark .hud-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 8px var(--brand-500);
}

.hud-top-left    { top: 80px; left: 96px; }
.hud-top-right   { top: 80px; right: 96px; }
.hud-bottom-left { bottom: 80px; left: 96px; }
.hud-bottom-right{ bottom: 80px; right: 96px; }

/* Vertical hairlines on cover for editorial frame */
.cover::before {
  content: '';
  position: absolute;
  top: 64px; bottom: 64px;
  left: 80px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-1) 18%, var(--border-1) 82%, transparent);
  z-index: 1;
  pointer-events: none;
}

.slide[data-slide="1"]::before {
  /* slide 1 noise — softer */
  opacity: 0.025;
}

.slide[data-slide="1"]::after {
  /* extra ambient blue bottom-left */
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 45%);
}

@keyframes cover-pulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.035); }
}

/* =========================================================
   SLIDE 02 — TEAM
   ========================================================= */

.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 14px, rgba(255,255,255,0.06) 14px 28px),
    var(--bg-3);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  color: var(--text-5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.photo-real {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--border-2);
}

.team-meta { display: flex; flex-direction: column; gap: 14px; }

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.team-name {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text-1);
}

.team-stats {
  display: flex;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  margin: 4px 0;
}

.team-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-stats .stat .v {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.team-stats .stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

.team-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--text-2);
  font-size: 20px;
  line-height: 1.5;
}

.team-name { font-size: 36px; }
.team-role { font-size: 14px; }
.team-stats .stat .v { font-size: 30px; }
.team-stats .stat .l { font-size: 12px; }

/* Featured cards variant (slide 02 — two side-by-side) */
.kaique-card .team-card {
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
}

.kaique-card .photo-placeholder,
.kaique-card .photo-real {
  width: 200px;
  height: 260px;
  border-radius: 14px;
}

.kaique-card .photo-real {
  object-fit: cover;
  object-position: center top;
}

.kaique-card .photo-murillo {
  object-position: 60% center;
}

.kaique-card .team-name {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.kaique-card .team-role { font-size: 13px; }
.kaique-card .team-bullets li { font-size: 18px; line-height: 1.35; }
.kaique-card .team-meta { gap: 10px; }
.kaique-card.card.spacious { padding: 40px 44px; }

.kaique-card .team-badge {
  font-size: 11px;
  padding: 7px 12px;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-300, #93C5FD);
  background: linear-gradient(180deg, rgba(59,130,246,0.10), rgba(59,130,246,0.02));
  border: 1px solid rgba(59,130,246,0.32);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 0 24px rgba(59,130,246,0.15);
  margin-top: 4px;
}

.team-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 10px rgba(59,130,246,0.85);
}

.team-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--brand-500);
}

/* =========================================================
   SLIDE 03 — PROBLEM GRID
   ========================================================= */

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  min-height: 168px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
  opacity: 0.5;
}

.problem-card .icon-x {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.25);
  display: grid;
  place-items: center;
  color: var(--danger);
}

.problem-card .icon-x svg { width: 14px; height: 14px; }

.problem-card .p-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-5);
}

.problem-card p {
  font-size: 26px;
  line-height: 1.4;
  color: var(--text-1);
  font-weight: 500;
}

.problem-card .p-num {
  font-size: 14px;
}

/* =========================================================
   SLIDE 04 — PILLARS
   ========================================================= */

.pillar-card {
  position: relative;
  padding: 36px;
  background:
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.pillar-card .p-glyph {
  display: none;
}

.pillar-card .p-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.pillar-card .p-title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
}

.pillar-card .p-desc {
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-2);
  margin-top: auto;
  max-width: 360px;
}

.pillar-card .included-pin {
  position: absolute;
  top: 24px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-500);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-accent);
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}

.pillar-card .included-pin .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 8px var(--brand-500);
}

/* =========================================================
   SLIDE 05 — 4P INTRO
   ========================================================= */

.fourp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fourp-grid-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fourp-cell {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
}

.fourp-cell .p-corner {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-5);
  z-index: 2;
}

.fourp-cell .p-word {
  display: block;
  position: relative;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-1);
  margin: 0;
  white-space: nowrap;
  overflow: visible;
}

.fourp-cell .p-dropcap {
  display: block;
  font-size: 168px;
  font-weight: 800;
  color: var(--brand-500);
  letter-spacing: -0.085em;
  line-height: 1;
  margin: 0 0 0 -8px;
  text-shadow: 0 0 36px rgba(59, 130, 246, 0.5);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.fourp-cell .p-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.fourp-cell .p-rest {
  display: block;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-1);
  /* MANUAL ÓPTICO — respiro entre P e palavra, sem colar */
  margin: -16px 0 0 -3px;
  padding: 0;
}

.fourp-cell .p-desc {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.fourp-grid-row .fourp-cell .p-rest {
  font-size: 38px;
  margin-top: -12px;
}

.fourp-grid-row .fourp-cell .p-desc {
  font-size: 17px;
}

.fourp-grid-row .fourp-cell {
  min-height: 380px;
}

/* Pillar detail slides — h1 sized to leave room for content below */
.slide[data-slide="6"] .h1,
.slide[data-slide="7"] .h1,
.slide[data-slide="8"] .h1,
.slide[data-slide="9"] .h1 {
  font-size: 64px !important;
  line-height: 1.08;
}

.fourp-cell::after { content: none; }

/* =========================================================
   PILLAR DETAIL SLIDES (06–09)
   ========================================================= */

.pillar-detail {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: stretch;
}

.bullet-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bullet-card {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 30px 34px 30px 36px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  font-size: 28px;
  line-height: 1.4;
  color: var(--text-1);
  font-weight: 500;
}

.bullet-card .b-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brand-500);
  flex-shrink: 0;
  margin-top: 8px;
}

.detail-side {
  position: relative;
  background:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  box-shadow: 0 0 80px -20px rgba(59, 130, 246, 0.3);
  overflow: hidden;
}

.detail-side .side-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}

.detail-side .side-quote {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.005em;
}

.detail-side .side-label { font-size: 14px; }

.detail-side .side-quote .em {
  color: var(--brand-500);
}

/* Mini visualizations inside detail-side */
.viz {
  height: 200px;
  position: relative;
  display: grid;
  place-items: center;
}

/* Positioning ladder (slide 06) */
.position-ladder {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 4px 0 6px;
}

.ladder-axis {
  position: relative;
  width: 28px;
  display: flex;
  justify-content: center;
}

.ladder-axis .axis-line {
  position: absolute;
  top: 20px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(59,130,246,0.85) 0%, rgba(59,130,246,0.18) 100%);
}

.ladder-axis .axis-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid var(--brand-500);
  filter: drop-shadow(0 0 8px rgba(59,130,246,0.7));
}

.ladder-rungs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rung {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, rgba(13,17,23,0.5), rgba(13,17,23,0.2));
  overflow: hidden;
}

.rung .rung-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-5);
}

.rung .rung-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-1);
  line-height: 1.1;
}

.rung .rung-sub {
  font-size: 13px;
  color: var(--text-4);
  letter-spacing: -0.005em;
}

.rung.top {
  border-color: rgba(59,130,246,0.45);
  background:
    linear-gradient(180deg, rgba(59,130,246,0.16), rgba(59,130,246,0.04)),
    linear-gradient(180deg, rgba(13,17,23,0.5), rgba(13,17,23,0.2));
  box-shadow: 0 0 30px -10px rgba(59,130,246,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.rung.top .rung-tag { color: var(--brand-300, #93C5FD); }
.rung.top .rung-title { color: #fff; text-shadow: 0 0 14px rgba(59,130,246,0.35); }

.rung.top .rung-pin {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 10px rgba(59,130,246,0.95), 0 0 22px rgba(59,130,246,0.55);
  animation: ce-pulse 2.4s ease-in-out infinite;
}

.rung.mid {
  opacity: 0.82;
}

.rung.bottom {
  opacity: 0.58;
}

.rung.bottom .rung-title {
  color: var(--text-3);
}

/* Radar chart placeholder (5-vertex) */
.viz-radar {
  width: 200px;
  height: 200px;
}

/* Bars */
.viz-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 160px;
  width: 100%;
  padding: 0 12px;
}

.viz-bars .col {
  flex: 1;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-600));
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  position: relative;
  min-height: 24px;
}

.viz-bars .col::after {
  content: attr(data-label);
  position: absolute;
  bottom: -20px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-5);
  letter-spacing: 0.1em;
}

/* Line chart (8 8 ascending) */
.viz-line { width: 100%; height: 160px; }

/* Big number block */
.viz-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.viz-big .v {
  font-size: 80px;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
}

.viz-big .v.accent { color: var(--brand-500); text-shadow: 0 0 40px rgba(59, 130, 246, 0.4); }

.viz-big .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

/* =========================================================
   SLIDE 10 — CRM HERO
   ========================================================= */

.crm-hero {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 56px;
  align-items: center;
}

.crm-timer {
  position: relative;
  aspect-ratio: 1;
  width: 520px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.crm-timer .timer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
}

.crm-timer .timer-ring.r2 { inset: 40px; border-color: var(--border-2); }
.crm-timer .timer-ring.r3 { inset: 80px; border-color: var(--border-1); }

.crm-timer .timer-glow {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  animation: cover-pulse 3s ease-in-out infinite;
}

.crm-timer .timer-value {
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 140px;
  font-weight: 700;
  color: var(--brand-500);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.crm-timer .timer-unit {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
}

.crm-timer .timer-tick {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 12px var(--brand-500);
  transform: translate(-50%, -50%) rotate(0deg) translate(0, -260px);
}

/* =========================================================
   SLIDE 11 — CRM FLOW
   ========================================================= */

.flow-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr) ;
  gap: 16px;
  align-items: stretch;
  position: relative;
}

.flow-step {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

.flow-step .s-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-5);
}

.flow-step .s-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid var(--border-accent);
  display: grid;
  place-items: center;
  color: var(--brand-500);
}

.flow-step .s-icon svg { width: 18px; height: 18px; }

.flow-step .s-text {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  margin-top: auto;
}

.flow-step .s-num { font-size: 14px; }

.flow-arrows {
  position: relative;
  margin-top: 12px;
  height: 16px;
}

.flow-arrows::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), var(--brand-500), var(--border-accent));
  transform: translateY(-50%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 12px;
}

.feature-card .f-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid var(--border-accent);
  display: grid;
  place-items: center;
  color: var(--brand-500);
  flex-shrink: 0;
}

.feature-card .f-icon svg { width: 18px; height: 18px; }

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.4;
  margin: 0;
}

/* =========================================================
   SLIDE 12 — CONSELHO
   ========================================================= */

.conselho {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}

.conselho-visual {
  position: relative;
  aspect-ratio: 1;
  width: 460px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.conselho-visual .ring-c {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
}

.conselho-visual .ring-c.r2 { inset: 50px; border-color: var(--border-2); }

.conselho-visual .ring-c.r1::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--brand-500);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--brand-500);
}

.conselho-photo {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, rgba(255,255,255,0.06) 12px 24px),
    var(--bg-3);
  border: 1px solid var(--border-accent);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 0 80px -10px rgba(59, 130, 246, 0.4);
}

.conselho-photo .ph-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-4);
  text-align: center;
}

.conselho-photo .ph-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.conselho-tag {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}

.conselho-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conselho-list .it {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 12px;
}

.conselho-list .it .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-500);
  letter-spacing: -0.02em;
}

.conselho-list .it .t {
  font-size: 22px;
  color: var(--text-1);
  line-height: 1.4;
}

.conselho-list .it .n { font-size: 22px; }

.conselho-list .it .t b { color: var(--brand-500); font-weight: 700; }

/* =========================================================
   SLIDE 13 — PROOF (mini dashboards)
   ========================================================= */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-card {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.proof-card .ph-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-1);
}

.proof-card .ph-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-1);
}

.proof-card .ph-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  flex: 1;
}

.proof-card .ph-body {
  height: 200px;
  position: relative;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 20px;
  overflow: hidden;
}

.proof-card .ph-body .bbar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-700));
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
  min-height: 12px;
}

.proof-card .ph-body .ph-label-tag {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-5);
  text-transform: uppercase;
}

.proof-card .ph-foot {
  padding: 16px;
  border-top: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-card .ph-foot .m {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--success);
  font-variant-numeric: tabular-nums;
}

.proof-card .ph-foot .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

.proof-card .ph-foot .m { font-size: 28px; }
.proof-card .ph-name { font-size: 15px; }
.proof-card .ph-body .ph-label-tag { font-size: 12px; }

/* =========================================================
   SLIDE 14 — PROJECTION DASHBOARD
   ========================================================= */

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dash-tile {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.dash-tile.accent {
  background:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-color: var(--border-accent);
}

.dash-tile .d-meta { display: flex; flex-direction: column; gap: 8px; }

.dash-tile .d-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}

.dash-tile .d-value {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
}

.dash-tile .d-value.accent  { color: var(--brand-500); }
.dash-tile .d-value.success { color: var(--success); }

.dash-tile .d-sub {
  font-size: 12px;
  color: var(--text-4);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

.dash-tile .d-bar {
  margin-top: 4px;
}

.dash-tile .spark {
  width: 100px;
  height: 60px;
}

/* =========================================================
   SLIDE 15 — PLANS
   ========================================================= */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.plan.recommended {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-color: var(--border-3);
}

.plan.best {
  background:
    radial-gradient(at 50% 0%, rgba(59, 130, 246, 0.16) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-color: var(--border-accent);
  box-shadow: 0 0 80px -10px rgba(59, 130, 246, 0.4);
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--brand-500);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 6px 6px;
}

.plan-badge.subtle {
  background: var(--bg-3);
  color: var(--text-3);
  border: 1px solid var(--border-2);
  border-top: none;
}

.plan-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price .num {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.plan.best .plan-price .num { color: var(--brand-500); text-shadow: 0 0 32px rgba(59, 130, 246, 0.4); }

.plan-price .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-4);
  text-transform: uppercase;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border-1);
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.4;
}

.plan-features li svg { width: 18px; height: 18px; margin-top: 4px; }
.plan-name { font-size: 14px; }
.plan-commitment { font-size: 13px; }

.plan-features li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brand-500);
}

.plan-commitment {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

.plan.best .plan-commitment { color: var(--brand-500); }

/* =========================================================
   SLIDE 16 — ANCHORING
   ========================================================= */

.anchor-ladder {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.anchor-step {
  position: relative;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 24px;
  align-items: center;
}

.anchor-step.strike { opacity: 0.5; }

.anchor-step.strike .anchor-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(100, 116, 139, 0.6);
}

.anchor-step.mid {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  opacity: 0.75;
}

.anchor-step.best {
  background:
    radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-color: var(--border-accent);
  box-shadow: 0 0 80px -10px rgba(59, 130, 246, 0.4);
}

.anchor-step .a-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-5);
}

.anchor-step.best .a-num { color: var(--brand-500); }

.anchor-step .a-label {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-2);
}

.anchor-step .a-num { font-size: 14px; }

.anchor-step.best .a-label { color: var(--text-1); font-weight: 700; }

.anchor-step.best .a-label .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-500);
  text-transform: uppercase;
  margin-left: 12px;
  vertical-align: middle;
}

.anchor-step .anchor-price {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: var(--text-3);
}

.anchor-step.best .anchor-price { color: var(--brand-500); font-size: 40px; text-shadow: 0 0 24px rgba(59, 130, 246, 0.4); }

.anchor-arrow {
  position: relative;
  display: grid;
  place-items: center;
  height: 18px;
  color: var(--border-3);
  margin: -4px 0;
}

.anchor-arrow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--border-2), var(--brand-500));
  transform: translateX(-50%);
}

.anchor-footnote {
  margin-top: 24px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

/* =========================================================
   REVEAL SYSTEM — progressive build animations
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Step indicator (lower-right when reveals exist) */
.reveal-hint {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: none;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-500);
  z-index: 6;
  pointer-events: none;
  opacity: 0.9;
}

.reveal-hint.is-visible { display: inline-flex; }
.reveal-hint .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 12px var(--brand-500);
  animation: cover-pulse 1.6s ease-in-out infinite;
}

/* =========================================================
   PLACEHOLDER FLAG (e.g. [REGRAS A CONFIRMAR])
   ========================================================= */
.placeholder-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warning);
  background: rgba(252, 211, 77, 0.08);
  border: 1px dashed rgba(252, 211, 77, 0.45);
  padding: 8px 14px;
  border-radius: 8px;
}

.placeholder-flag::before {
  content: '!';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--warning);
  color: var(--bg-0);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

/* =========================================================
   CRM 5-MIN — proof datum
   ========================================================= */
.proof-datum {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background:
    radial-gradient(at 0% 0%, rgba(252, 211, 77, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid rgba(252, 211, 77, 0.25);
  border-radius: 12px;
  margin-top: 14px;
  max-width: 620px;
}

.proof-datum .big {
  font-size: 36px;
  font-weight: 800;
  color: var(--warning);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.proof-datum .txt {
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-2);
}

.proof-datum .src {
  display: block;
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-5);
}

/* =========================================================
   PERFORMANCE — conceptual growth curve (no $$)
   ========================================================= */
.growth-curve {
  position: relative;
  width: 100%;
  height: 240px;
}

.growth-curve svg { width: 100%; height: 100%; }

.growth-curve .gc-label {
  position: absolute;
  bottom: 6px;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-5);
}

.growth-curve .gc-label.right { left: auto; right: 0; color: var(--brand-500); }

/* =========================================================
   PROOF — testimonial slots (placeholders)
   ========================================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -18px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 120px;
  color: var(--brand-500);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-card .t-quote {
  font-size: 20px;
  line-height: 1.45;
  color: var(--text-1);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.testimonial-card .t-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-1);
}

.testimonial-card .t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 8px, rgba(255,255,255,0.06) 8px 16px),
    var(--bg-3);
  border: 1px solid var(--border-2);
  flex-shrink: 0;
}

.testimonial-card .t-id {
  display: flex; flex-direction: column; gap: 2px;
}

.testimonial-card .t-name {
  font-size: 16px; font-weight: 700; color: var(--text-1);
}

.testimonial-card .t-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
}

.testimonial-card .t-placeholder-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warning);
  background: rgba(252, 211, 77, 0.08);
  border: 1px dashed rgba(252, 211, 77, 0.4);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* WhatsApp print placeholder */
.wa-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.wa-card .wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-1);
}

.wa-card .wa-head .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  flex-shrink: 0;
}

.wa-card .wa-head .nm {
  font-size: 14px; font-weight: 600; color: var(--text-1);
}

.wa-card .wa-head .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--text-4); text-transform: uppercase;
}

.wa-card .wa-body {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 8px, transparent 8px 16px),
    var(--bg-1);
}

.wa-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-1);
}

.wa-bubble.them {
  background: var(--bg-3);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.wa-bubble.us {
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.3);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.wa-bubble .wa-time {
  display: block;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-5);
}

/* =========================================================
   SLIDE 13 — VIDEO TESTIMONIAL SLOTS (5 vertical videos)
   ========================================================= */
.videos-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: 100%;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.video-card .v-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  border-radius: 16px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 14px, rgba(255,255,255,0.06) 14px 28px),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  transition: border-color var(--t-fast) var(--ease);
}

.video-card.has-video {
  position: relative;
  z-index: 60;
}

.video-card.has-video .v-thumb {
  background: #000;
  border-color: rgba(59,130,246,0.32);
  box-shadow: 0 0 30px -10px rgba(59,130,246,0.4);
}

.video-card.has-video .v-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-card.has-video .v-num {
  z-index: 3;
}

/* VSL-style big play button */
.v-vsl-play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.45));
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: opacity 220ms ease, background 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.v-vsl-play:hover { background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)); }
.v-vsl-play:hover .vsl-disc { transform: scale(1.06); }
.v-vsl-play.is-hidden { opacity: 0; pointer-events: none; }

.v-vsl-play .vsl-disc {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #60A5FA 0%, var(--brand-500) 55%, var(--brand-600) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow:
    0 0 0 6px rgba(59,130,246,0.18),
    0 0 28px rgba(59,130,246,0.55),
    0 8px 24px rgba(0,0,0,0.45);
  transition: transform 220ms ease;
  z-index: 2;
}

.v-vsl-play .vsl-disc svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.2));
  margin-left: 6px; /* optical center the play triangle */
}

.v-vsl-play .vsl-pulse {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(59,130,246,0.55);
  animation: vsl-pulse 2.2s ease-out infinite;
  z-index: 1;
}

.v-vsl-play .vsl-pulse.delay { animation-delay: 1.1s; }

@keyframes vsl-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.video-card .v-thumb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
  opacity: 0.5;
}

.video-card .v-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.video-card .v-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warning);
  background: rgba(252, 211, 77, 0.08);
  border: 1px dashed rgba(252, 211, 77, 0.4);
  padding: 4px 8px;
  border-radius: 4px;
}

.video-card .v-play {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid var(--border-accent);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px -8px rgba(59, 130, 246, 0.5);
  backdrop-filter: blur(8px);
}

.video-card .v-play::after {
  content: '';
  display: block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 18px solid var(--brand-500);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

.video-card .v-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: center;
}

.video-card .v-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 4px 0;
  position: relative;
}

.video-card .v-meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--brand-500);
  border-radius: 2px;
}

.video-card .v-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.video-card .v-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-300, #93C5FD);
  font-weight: 600;
}

/* Compact numeric proof row */
.proof-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 14px;
}

.proof-stat .ps-val {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--success);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(34,197,94,0.3);
  flex-shrink: 0;
}

.proof-stat .ps-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.proof-stat .ps-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}

.proof-stat .ps-name {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

/* =========================================================
   CHECKPOINT SLIDE — pause + question
   ========================================================= */
.checkpoint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px;
}

.checkpoint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: 1500px;
}

.checkpoint-q {
  font-size: 88px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-1);
  text-wrap: balance;
}

.checkpoint-q .pivot { color: var(--brand-500); }

/* =========================================================
   VALOR x PREÇO — side-by-side
   ========================================================= */
.vp-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
  align-items: stretch;
}

.vp-block {
  position: relative;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.vp-block.value {
  background:
    radial-gradient(at 0% 0%, rgba(59,130,246,0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-color: var(--border-accent);
  box-shadow: 0 0 80px -20px rgba(59, 130, 246, 0.4);
}

.vp-block .vp-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.vp-block.value .vp-tag { color: var(--brand-500); }
.vp-block.price .vp-tag { color: var(--text-4); }

.vp-block .vp-h {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-1);
}

.vp-block.price .vp-h { color: var(--text-3); }

.vp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.vp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 19px;
  line-height: 1.4;
  color: var(--text-1);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-1);
}

.vp-list li:last-child { border-bottom: 0; }

.vp-list li .ic {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-500);
}

.vp-block.price .vp-stamp {
  font-size: 64px;
  font-weight: 800;
  color: var(--text-3);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}

.vp-block.price .vp-stamp-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-5);
  margin-top: 8px;
}

/* =========================================================
   SALARY TABLE — anchor high (Slide C)
   ========================================================= */
.sal-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.sal-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 14px;
}

.sal-row .s-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-5);
}

.sal-row .s-role-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-1);
  line-height: 1.2;
}

.sal-row .s-role-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 4px;
}

.sal-row .s-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.sal-row .s-price small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-4);
  text-transform: uppercase;
  margin-top: 4px;
}

.sal-total {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  background:
    radial-gradient(at 0% 50%, rgba(239,68,68,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 16px;
}

.sal-total .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.sal-total .val {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--danger);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px rgba(239,68,68,0.3);
}

.sal-sources {
  margin-top: 18px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-5);
}

.sal-sources span::before {
  content: '↗ ';
  color: var(--brand-500);
}

/* =========================================================
   FERRAMENTAL CONSOLIDATED (Slide D)
   ========================================================= */
.consolidate-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
  align-items: stretch;
}

.consolidate-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consolidate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 14px;
}

.consolidate-row .c-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.005em;
}

.consolidate-row .c-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 4px;
}

.consolidate-row .c-price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
}

.consolidate-row .c-price small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-4);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

/* Compact variant — /mês renders inline beside the value */
.consolidate-row .c-price.compact {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.consolidate-row .c-price.compact small {
  display: inline;
  margin-top: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.consolidate-total {
  background:
    radial-gradient(at 0% 0%, rgba(59,130,246,0.16) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 0 80px -10px rgba(59, 130, 246, 0.4);
}

.consolidate-total .ct-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.consolidate-total .ct-value {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--brand-500);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(59,130,246,0.4);
}

.consolidate-total .ct-value small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--text-3);
  margin-left: 6px;
  text-transform: uppercase;
}

.consolidate-total .ct-q {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.35;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

/* =========================================================
   ECONOMIA — substituted tools (Slide F)
   ========================================================= */
.savings-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.savings-row {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 14px;
}

.savings-row .tool-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.savings-row .tool-glyph {
  width: 48px; height: 48px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 6px, rgba(255,255,255,0.06) 6px 12px),
    var(--bg-3);
  border: 1px solid var(--border-2);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.savings-row .tool-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.005em;
}

.savings-row .tool-plan {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 2px;
}

.savings-row .sub-arrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-3);
  font-size: 17px;
  line-height: 1.4;
}

.savings-row .sub-arrow .arr {
  font-family: 'JetBrains Mono', monospace;
  color: var(--brand-500);
  font-weight: 700;
  flex-shrink: 0;
}

.savings-row .sub-arrow b {
  color: var(--brand-500);
  font-weight: 600;
}

.savings-row .save-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.savings-row .save-price small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--danger);
  font-weight: 500;
  margin-top: 4px;
}

.savings-total {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  background:
    radial-gradient(at 0% 50%, rgba(34,197,94,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 16px;
}

.savings-total .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.savings-total .val {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--success);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px rgba(34,197,94,0.3);
}

/* =========================================================
   PLAN with BEFORE/AFTER (Slide G — condição especial)
   ========================================================= */
.plan.deal {
  position: relative;
}

.plan .plan-was {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-5);
  margin-bottom: -4px;
}

.plan .plan-was s {
  text-decoration-color: rgba(239,68,68,0.7);
  text-decoration-thickness: 2px;
  color: var(--text-4);
}

.plan .plan-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.35);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.plan .plan-save .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

/* Urgency banner */
.urgency-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background:
    radial-gradient(at 0% 50%, rgba(239,68,68,0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--danger);
  width: fit-content;
  align-self: center;
  margin-bottom: 8px;
}

.urgency-banner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 12px var(--danger);
  animation: cover-pulse 1.6s ease-in-out infinite;
}

/* =========================================================
   SLIDE 17 — FINAL
   ========================================================= */

.final {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-stage {
  position: relative;
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.final-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 880px;
  height: 880px;
  pointer-events: none;
  opacity: 0.6;
}

.final-rings .ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.final-rings .ring.r1 { width: 480px; height: 480px; border: 1px solid var(--border-accent); }
.final-rings .ring.r2 { width: 640px; height: 640px; border: 1px solid var(--border-2); }
.final-rings .ring.r3 { width: 880px; height: 880px; border: 1px solid var(--border-1); }

.final-rings .glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 55%);
  animation: cover-pulse 4s ease-in-out infinite;
}

.final-headline {
  position: relative;
  z-index: 2;
  font-size: 78px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 1280px;
  text-align: center;
  text-wrap: balance;
  color: var(--text-1);
}

.final-headline .pivot {
  color: var(--brand-500);
  text-shadow: 0 0 32px rgba(59, 130, 246, 0.3);
}

.final-sub {
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: var(--text-3);
  text-align: center;
  max-width: 900px;
  text-wrap: balance;
  line-height: 1.5;
}

.final-signoff {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.logo-signoff {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 32px rgba(59, 130, 246, 0.4));
}

.final-rule {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
}

.final-fim {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-4);
}

/* =========================================================
   NAV CLICK ZONES
   ========================================================= */

.nav-zone {
  position: fixed;
  top: 0; bottom: 0;
  width: 18%;
  cursor: pointer;
  z-index: 50;
}

.nav-zone.left  { left: 0; }
.nav-zone.right { right: 0; }

/* =========================================================
   SMALL-SCREEN WARNING
   ========================================================= */

.small-screen-warning {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: var(--text-1);
}

.small-screen-warning h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.small-screen-warning p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.5;
}

@media (max-width: 599px) {
  .small-screen-warning { display: flex; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .slide { transition: none; transform: none; }
}

/* =========================================================
   PRINT
   ========================================================= */

@media print {
  body { background: #fff; }
  .nav-zone { display: none; }
  .slide {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    page-break-after: always;
    height: 1080px;
    transform: none;
  }
}
