/* ===============================================
   YUZER · PROPOSTA ROCK IN RIO 2026
   Sistema visual baseado na proposta
   "Adoção de Claude na Yuzer Tecnologia".
   =============================================== */

:root {
  /* Cores base */
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-card-hi: #0e0e0e;

  --fg: #ffffff;
  --fg-mute: #a0a0a8;
  --fg-dim: #6a6a72;
  --fg-faint: #2c2c30;

  /* Acentos elétricos (paleta Yuzer/Claude proposta) */
  --lime: #c7f500;
  --lime-soft: rgba(199, 245, 0, 0.5);
  --lime-glow: rgba(199, 245, 0, 0.35);

  --cyan: #00d4ff;
  --magenta: #ff2f86;
  --amber: #ffaa00;

  /* Linhas */
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);

  /* Fontes */
  --ff: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff);
  font-weight: 400;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* Grid pattern global sutil (igual proposta de referência) */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: -1px -1px;
}
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: #000; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* =========================
   HEADER consistente (igual a referência)
   "● YUZER /proposta"   "01 / 14"
   ========================= */
.topbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: none;
  font-family: var(--ff-mono);
}
.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.topbar__brand::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime-soft);
}
.topbar__brand em {
  font-style: italic;
  color: var(--fg-mute);
  font-weight: 400;
}
.topbar__nav {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
  pointer-events: auto;
  font-variant-numeric: tabular-nums;
}
.topbar__count { color: var(--fg); }

/* Progress bar de scroll (lima top) */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 1.5px;
  background: var(--lime);
  width: 0%;
  z-index: 110;
  box-shadow: 0 0 10px var(--lime-soft);
  transition: width 0.15s linear;
}

/* Indicadores laterais (dots) */
.dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.dots button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
  transition: all 0.3s var(--easing);
}
.dots button.is-active {
  background: var(--lime);
  transform: scale(1.6);
  box-shadow: 0 0 10px var(--lime-soft);
}
.dots button:hover { background: var(--fg); }

/* Hint de teclado discreto */
.kbd-hint {
  position: fixed;
  bottom: 24px;
  right: 48px;
  display: flex;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  text-transform: uppercase;
  z-index: 100;
  pointer-events: none;
}
.kbd-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--bg-card);
  margin-right: 4px;
  font-family: inherit;
}

/* =========================
   COMPONENTES DO SISTEMA
   ========================= */

/* Pill ● tipo "PROPOSTA PARA APRECIAÇÃO · ABRIL 2026" */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--lime);
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(199, 245, 0, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-soft);
}

/* Section label estilo "01 · CONTEXTO" em ciano */
.section-label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Title XL com palavra em glow lime */
.title-xl {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(54px, 7.2vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0 0 28px;
}
.title-xl .glow {
  color: var(--lime);
  text-shadow: 0 0 60px var(--lime-glow);
  font-weight: 700;
}

/* Lede (parágrafo grande abaixo do título) */
.lede {
  font-size: clamp(15px, 1.18vw, 19px);
  font-weight: 400;
  color: var(--fg-mute);
  max-width: 70ch;
  margin: 0;
  line-height: 1.55;
}
.lede strong { color: var(--fg); font-weight: 500; }
.lede .glow { color: var(--lime); font-weight: 500; }

/* Card padrão */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s var(--easing);
}
.card:hover { border-color: var(--line-strong); }
.card--accent::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: var(--card-accent, var(--lime));
}

/* Cards numéricos com border-top colorida */
.stat-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--stat-color, var(--lime));
}
.stat-card__num {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lime);
  text-shadow: 0 0 60px var(--lime-glow);
  font-variant-numeric: tabular-nums;
  margin-top: 26px;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}
.stat-card__num small {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 4px;
  opacity: 0.85;
}
.stat-card__line {
  height: 1px;
  background: var(--lime);
  opacity: 0.4;
  margin-bottom: 24px;
  width: 80%;
}
.stat-card h3 {
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.stat-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--fg-mute);
  line-height: 1.55;
}

/* =========================
   DECK / SLIDES
   ========================= */
.deck { position: relative; }
.slide {
  min-height: 100vh;
  width: 100%;
  padding: 110px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* =========================
   SLIDE 1 · CAPA HERO
   ========================= */
.slide--hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.55) brightness(0.45);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(700px 500px at 75% 60%, rgba(199, 245, 0, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100vh;
  width: 100%;
  padding: 110px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__top { max-width: 90%; }
.hero__main { max-width: 1200px; }
.hero__title {
  margin: 28px 0 36px;
}
.hero__sub {
  max-width: 80ch;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-stat__label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.hero-stat__value {
  font-size: clamp(15px, 1.1vw, 19px);
  color: var(--fg);
  font-weight: 600;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.hero-stat__value--lime { color: var(--lime); }
.hero-stat__value--cyan { color: var(--cyan); }

/* =========================
   SLIDE 2 · CONTEXTO (texto único)
   ========================= */
.slide--context .title-xl { max-width: 18ch; }

/* =========================
   SLIDE 3 · INDICADORES (3 stat cards)
   ========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

/* =========================
   SLIDE · DOIS PRODUTOS COMPLEMENTARES
   ========================= */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.duo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  transition: all 0.4s var(--easing);
}
.duo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--card-accent, var(--lime)) 0%, transparent 35%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}
.duo-card--cyan { --card-accent: var(--cyan); }
.duo-card--lime { --card-accent: var(--lime); }
.duo-card:hover { transform: translateY(-2px); }

.duo-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--card-accent, var(--lime));
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.04);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--card-accent, var(--lime));
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.duo-card--lime .duo-card__tag { background: rgba(199, 245, 0, 0.05); }

.duo-card h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--fg);
}
.duo-card > p {
  font-size: 14px;
  color: var(--fg-mute);
  margin: 0 0 24px;
  line-height: 1.55;
}
.duo-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.duo-card__price .cur { font-size: 14px; color: var(--fg-mute); font-weight: 500; }
.duo-card__price .num {
  font-size: clamp(40px, 3.6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1;
}
.duo-card__price .dec { font-size: 16px; color: var(--fg-mute); }
.duo-card__price .unit {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-left: 12px;
  font-weight: 400;
}

.duo-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.duo-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}
.duo-card ul li::before {
  content: "→";
  color: var(--card-accent, var(--lime));
  font-weight: 500;
  flex-shrink: 0;
}

/* =========================
   SLIDE · CASHLESS (3 cards)
   ========================= */
.cashless-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.cash-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--easing);
  display: flex;
  flex-direction: column;
}
.cash-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--cash-accent, var(--magenta));
}
.cash-card--magenta { --cash-accent: var(--magenta); }
.cash-card--cyan { --cash-accent: var(--cyan); }
.cash-card--lime { --cash-accent: var(--lime); }
.cash-card:hover { border-color: var(--line-strong); }

.cash-card__viz {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(280px 180px at 50% 60%, rgba(255, 255, 255, 0.025), transparent 70%);
}

/* Cartão preto fosco realista */
.product-card {
  width: 76%;
  aspect-ratio: 1.586;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #1a1a1d 0%, #050507 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transform: rotate(-6deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 22px 50px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
}
.product-card__brand {
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  text-transform: uppercase;
}
.product-card__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 30px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, #c9b66f, #6e6035);
}
.product-card__nfc {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

/* Pulseira */
.product-band {
  width: 78%;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a1a1d 0%, #050507 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.product-band::before {
  content: "yuzer";
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}
.product-band__strip {
  position: absolute;
  left: 16%;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: nfc-pulse 2s ease-in-out infinite;
}
@keyframes nfc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(0, 212, 255, 0); }
}

/* Mochila Pirulito */
.product-lolly {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-lolly__head {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #050507;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 16px;
  color: var(--lime);
  position: relative;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}
.product-lolly__head::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.product-lolly__stick {
  width: 4px;
  height: 50px;
  background: linear-gradient(180deg, #555, #1a1a1c);
  border-radius: 0 0 2px 2px;
}

.cash-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cash-card__tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--cash-accent, var(--magenta));
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cash-card h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.cash-card__price {
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.cash-card__price .cur { font-size: 0.45em; color: var(--fg-mute); margin-right: 2px; vertical-align: 0.55em; font-weight: 500; }
.cash-card__price small { font-size: 0.45em; color: var(--fg-mute); }
.cash-card__price--free {
  color: var(--lime);
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cash-card__unit {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cash-card p {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.55;
  flex-grow: 1;
}

/* =========================
   SLIDE · TIME EM CAMPO (3 cards)
   ========================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

/* =========================
   SLIDE · CONFIGURAÇÃO PROPOSTA (tabela)
   ========================= */
.config-card {
  margin-top: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}
.config-card__head { margin-bottom: 22px; }
.config-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.config-card__head p { margin: 0; font-size: 13px; color: var(--fg-mute); }

.table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.table th, .table td {
  padding: 16px 8px;
  text-align: left;
  font-size: 14px;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
}
.table th {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 14px;
}
.table .num { text-align: right; }
.table tbody tr:hover td { background: rgba(255, 255, 255, 0.015); }
.table tr.total td {
  border-bottom: none;
  border-top: 1px solid var(--lime);
  background: linear-gradient(90deg, rgba(199, 245, 0, 0.04), transparent);
  padding-top: 20px;
  padding-bottom: 16px;
  font-weight: 600;
  color: var(--lime);
}
.table tr.total td:first-child { color: var(--lime); }
.tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.tag--lime { color: var(--lime); }
.tag--cyan { color: var(--cyan); }
.tag--magenta { color: var(--magenta); }
.tag--amber { color: var(--amber); }

/* =========================
   SLIDE · INVESTIMENTO TOTAL (cards gigantes)
   ========================= */
.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.invest-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 56px 44px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s var(--easing);
}
.invest-card--lime {
  border-color: var(--lime);
  background:
    radial-gradient(600px 400px at 70% 60%, rgba(199, 245, 0, 0.08), transparent 60%),
    var(--bg-card);
}
.invest-card__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.invest-card__num {
  font-weight: 700;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.invest-card--lime .invest-card__num { color: var(--lime); }
.invest-card__num .cur {
  font-size: 0.32em;
  color: var(--fg-faint);
  margin-right: 8px;
  font-weight: 600;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
}
.invest-card--lime .invest-card__num .cur { color: var(--lime); opacity: 0.5; }
.invest-card__foot { font-size: 14px; color: var(--fg-mute); }

/* =========================
   SLIDE · COMPARATIVO (tabela com Yuzer destacado)
   ========================= */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
  margin-top: 24px;
}
.compare-table thead th {
  padding: 18px 16px;
  text-align: left;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}
.compare-table thead .col-yuzer {
  color: var(--lime);
  background: linear-gradient(180deg, rgba(199, 245, 0, 0.06), rgba(199, 245, 0, 0.02));
}
.compare-table tbody td {
  padding: 16px;
  font-size: 13.5px;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
}
.compare-table tbody td:first-child {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
}
.compare-table tbody .col-yuzer {
  color: var(--lime);
  background: linear-gradient(180deg, rgba(199, 245, 0, 0.04), rgba(199, 245, 0, 0.015));
  font-weight: 500;
}
.compare-table tbody .dim { color: var(--fg-dim); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table__note {
  margin-top: 18px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* =========================
   SLIDE · CASES (logos/festivais/shows)
   ========================= */
.cases-block { display: grid; gap: 28px; margin-top: 24px; }
.cases-row__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Ticker de shows internacionais */
.ticker {
  width: calc(100vw - 192px);
  margin-left: -96px;
  margin-right: -96px;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}
.ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 80s linear infinite;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 36px);
  color: var(--fg);
  letter-spacing: -0.015em;
}
.ticker__track span:nth-child(2n) { color: var(--fg-faint); font-size: 0.55em; align-self: center; font-weight: 400; }
.ticker__track span:nth-child(4n+1) { color: var(--cyan); }
.ticker__track span:nth-child(8n+1) { color: var(--lime); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Grid festivais */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.festival-cell {
  aspect-ratio: 1.4;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  color: var(--fg-mute);
  padding: 14px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--easing);
}
.festival-cell:hover { color: var(--lime); border-color: var(--line-strong); }

/* Wall de clientes */
.client-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client-wall li {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 13px;
  color: var(--fg-mute);
  display: flex;
  align-items: center;
  min-height: 80px;
  position: relative;
  transition: all 0.3s var(--easing);
}
.client-wall li:hover { color: var(--lime); background: rgba(199, 245, 0, 0.02); }

/* =========================
   3 NÚMEROS GIGANTES (sem card · estilo "Estimativa de retorno")
   ========================= */
.big-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 64px;
  align-items: end;
}
.big-number {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.big-number__num {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(72px, 9.5vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  color: var(--big-color, var(--lime));
  text-shadow: 0 0 80px color-mix(in srgb, var(--big-color, var(--lime)) 40%, transparent);
}
.big-number--lime { --big-color: var(--lime); }
.big-number--cyan { --big-color: var(--cyan); }
.big-number--magenta { --big-color: var(--magenta); }
.big-number h3 {
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.big-number p {
  margin: 0;
  font-size: 13.5px;
  color: var(--fg-mute);
  line-height: 1.55;
  max-width: 32ch;
}

/* =========================
   SLIDE · IMPLANTAÇÃO (4 etapas dentro de card glow)
   ========================= */
.deploy-wrap {
  position: relative;
  margin-top: 32px;
  padding: 56px 48px;
  border: 1px solid var(--lime);
  border-radius: 24px;
  background:
    radial-gradient(900px 500px at 70% 30%, rgba(199, 245, 0, 0.08), transparent 60%),
    var(--bg-card);
  box-shadow: 0 0 0 1px rgba(199, 245, 0, 0.05) inset;
}
.deploy-wrap__head { margin-bottom: 36px; max-width: 720px; }
.deploy-wrap__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--lime);
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(199, 245, 0, 0.05);
  margin-bottom: 28px;
}
.deploy-wrap__pill::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-soft);
}
.deploy-wrap h2 {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.deploy-wrap h2 .glow {
  color: var(--lime);
  text-shadow: 0 0 50px var(--lime-glow);
}
.deploy-wrap__lede {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  color: var(--fg-mute);
  max-width: 60ch;
  line-height: 1.6;
}
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.deploy-step {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.4s var(--easing);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.deploy-step:hover { border-color: var(--lime); }
.deploy-step__index {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.deploy-step h3 {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 14px;
  line-height: 1.2;
}
.deploy-step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--fg-mute);
  line-height: 1.55;
}

/* =========================
   SLIDE · FECHAMENTO ("Em deliberação")
   ========================= */
.slide--end {
  justify-content: center;
}
.end {
  max-width: 1400px;
}
.end__pretitle {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.end__title {
  font-weight: 700;
  font-size: clamp(96px, 13vw, 240px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--lime);
  text-shadow: 0 0 100px rgba(199, 245, 0, 0.3);
  margin: 0 0 60px;
}
.end__sub {
  max-width: 70ch;
  font-size: clamp(15px, 1.2vw, 19px);
  color: var(--fg-mute);
  margin: 0 0 56px;
  line-height: 1.6;
}
.end__row {
  display: flex;
  gap: 14px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-family: var(--ff);
  font-size: 14px;
  letter-spacing: 0.005em;
  font-weight: 600;
  transition: all 0.4s var(--easing);
}
.btn--primary {
  background: var(--lime);
  color: #000;
}
.btn--primary:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(199, 245, 0, 0.25);
}
.btn--ghost { border: 1px solid var(--line-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); background: rgba(255, 255, 255, 0.02); }

.end__foot {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  text-transform: uppercase;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 1024px) {
  .slide { padding: 100px 48px 60px; }
  .hero__content { padding: 100px 48px 60px; }
  .stats-grid, .duo, .team-grid, .invest-grid, .deploy-grid { grid-template-columns: 1fr; }
  .cashless-grid { grid-template-columns: 1fr; }
  .festival-grid { grid-template-columns: repeat(3, 1fr); }
  .client-wall { grid-template-columns: repeat(3, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ticker { width: calc(100vw - 96px); margin-left: -48px; margin-right: -48px; }
  .topbar { padding: 22px 28px; }
  .kbd-hint { right: 24px; }
}
@media (max-width: 640px) {
  .slide { padding: 90px 24px 56px; }
  .hero__content { padding: 90px 24px 56px; }
  .festival-grid, .client-wall { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: 1fr; }
  .dots { display: none; }
  .kbd-hint { display: none; }
  .topbar { padding: 18px 20px; }
  .ticker { width: calc(100vw - 48px); margin-left: -24px; margin-right: -24px; }
}

/* Print */
@media print {
  body { background: white; color: black; background-image: none; }
  .topbar, .dots, .kbd-hint, .progress, .ticker, .hero__video, .hero__overlay { display: none !important; }
  .slide { page-break-after: always; min-height: auto; padding: 32px; }
  .hero__content { height: auto; padding: 32px; }
  * { color: black !important; background: white !important; border-color: #ccc !important; box-shadow: none !important; text-shadow: none !important; }
  .glow, .stat-card__num, .end__title, .invest-card--lime .invest-card__num, .col-yuzer { color: black !important; }
}
