/* ============================================================
   RICK & NOGUEIRA + HULK — Proposta Estratégica de Parceria
   style.css
   ============================================================ */

:root {
  --gold: #d4af37;
  --gold-light: #f0d886;
  --gold-dark: #a8842a;
  --navy-1: #050a1a;
  --navy-2: #0a1230;
  --navy-3: #101d4d;
  --blue-glow: #1e3a8a;
  --white: #ffffff;
  --grey: #b9c2d8;
  --pink: #c13584;
  --card-bg: rgba(255, 255, 255, 0.045);
  --card-border: rgba(212, 175, 55, 0.28);
  --radius: clamp(12px, 1.2vw, 22px);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--navy-1);
  font-family: var(--font);
  color: var(--white);
}

/* ---------- fundo global ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(30, 58, 138, 0.55), transparent 60%),
    radial-gradient(900px 600px at 5% 110%, rgba(94, 42, 132, 0.35), transparent 60%),
    radial-gradient(700px 500px at 50% 50%, rgba(16, 29, 77, 0.5), transparent 70%),
    linear-gradient(160deg, var(--navy-2) 0%, var(--navy-1) 55%, #03040c 100%);
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 25%, rgba(255,255,255,.35), transparent 100%),
    radial-gradient(1px 1px at 35% 70%, rgba(255,255,255,.25), transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255,255,255,.3), transparent 100%),
    radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,.22), transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 80%, rgba(255,255,255,.3), transparent 100%),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,.2), transparent 100%);
  opacity: .7;
  animation: twinkle 6s ease-in-out infinite alternate;
}
/* aurora dourada/azul que se move lentamente ao fundo */
.bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(600px 420px at 70% 30%, rgba(212,175,55,.10), transparent 65%),
    radial-gradient(800px 560px at 25% 70%, rgba(30,58,138,.35), transparent 65%);
  filter: blur(10px);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate(-2%, -1%) scale(1);    opacity: .8; }
  50%  { transform: translate(2%, 2%)  scale(1.06);  opacity: 1;  }
  100% { transform: translate(-1%, 3%) scale(1.02);  opacity: .85; }
}
@keyframes twinkle {
  0%   { opacity: .45; }
  50%  { opacity: .85; }
  100% { opacity: .55; }
}

/* ---------- deck / slides ---------- */
.deck { position: relative; z-index: 1; height: 100%; }
.deck { height: 100dvh; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(18px, 4vh, 56px) clamp(18px, 6vw, 110px) clamp(64px, 10vh, 96px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(70px) scale(.985);
  filter: blur(10px);
  transition: opacity .6s cubic-bezier(.22,.9,.35,1), transform .6s cubic-bezier(.22,.9,.35,1), filter .6s ease, visibility 0s linear .6s;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.4) transparent;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition: opacity .6s cubic-bezier(.22,.9,.35,1), transform .6s cubic-bezier(.22,.9,.35,1), filter .6s ease, visibility 0s;
  z-index: 2;
}
.slide.prev { transform: translateX(-70px) scale(.985); }

/* centralização vertical com scroll seguro:
   espaçadores flexíveis centralizam quando o conteúdo cabe
   e somem quando o slide precisa rolar (sem cortar o topo) */
.slide::before, .slide::after {
  content: "";
  flex: 1 0 0;
}

/* animação de entrada dos blocos internos */
.slide .rise { opacity: 0; transform: translateY(30px) scale(.985); filter: blur(6px); }
.slide.active .rise {
  animation: rise .8s cubic-bezier(.22,.9,.35,1) forwards;
}
.slide.active .rise:nth-child(1), .slide.active [data-d="1"] { animation-delay: .12s; }
.slide.active [data-d="2"] { animation-delay: .26s; }
.slide.active [data-d="3"] { animation-delay: .4s; }
.slide.active [data-d="4"] { animation-delay: .54s; }
.slide.active [data-d="5"] { animation-delay: .68s; }
@keyframes rise { to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }

/* ---------- tipografia ---------- */
.kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: clamp(.62rem, 1.1vw, .95rem);
  margin-bottom: clamp(8px, 1.4vh, 16px);
}
.slide h2 {
  font-size: clamp(1.5rem, 3.6vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: clamp(14px, 2.6vh, 30px);
}
.slide h2 .num { color: var(--gold); margin-right: .35em; }
.lead {
  color: var(--grey);
  font-size: clamp(.92rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  max-width: 62ch;
  margin-bottom: clamp(16px, 2.6vh, 30px);
}
.lead strong, .hl { color: var(--gold-light); font-weight: 700; }

/* ---------- layout auxiliar ---------- */
.cols {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 3.5vw, 60px);
  align-items: center;
}
.grid {
  display: grid;
  gap: clamp(12px, 1.8vw, 26px);
}
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
.grid.g5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: clamp(16px, 2.2vw, 34px);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: clamp(.95rem, 1.5vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: clamp(10px, 1.6vh, 18px) 0 clamp(6px, 1vh, 12px);
}
.card p { color: var(--grey); font-size: clamp(.82rem, 1.15vw, 1.02rem); line-height: 1.6; }
.card.center { text-align: center; }
.card.gold-line { border-top: 3px solid var(--gold); }

/* ícone circular */
.ic {
  width: clamp(52px, 6vw, 88px);
  height: clamp(52px, 6vw, 88px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.18), rgba(212,175,55,.04));
  box-shadow: 0 0 24px rgba(212, 175, 55, .22);
  flex: none;
}
.ic svg { width: 52%; height: 52%; stroke: var(--gold-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ic.pink { border-color: var(--pink); box-shadow: 0 0 24px rgba(193,53,132,.3); }
.ic.pink svg { stroke: #e77bb4; }
.ic.blue { border-color: #4d79ff; box-shadow: 0 0 24px rgba(77,121,255,.3); }
.ic.blue svg { stroke: #9db4ff; }

/* círculo com foto de perfil (organograma) */
.ic.avatar { position: relative; overflow: hidden; }
.ic.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.ic.avatar.contain { background: #fff; }
.ic.avatar.contain img { object-fit: contain; padding: 12%; }

/* lista com ícones */
.ilist { display: flex; flex-direction: column; gap: clamp(14px, 2.4vh, 26px); }
.ilist li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  color: var(--grey);
  font-size: clamp(.88rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}
.ilist li .ic { width: clamp(44px, 4.4vw, 64px); height: clamp(44px, 4.4vw, 64px); }
.ilist li strong { color: var(--white); }

/* checklist */
.checks { display: flex; flex-direction: column; gap: clamp(14px, 2.2vh, 24px); }
.checks li {
  list-style: none;
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  color: var(--grey);
  font-size: clamp(.88rem, 1.3vw, 1.1rem);
  line-height: 1.6;
}
.checks .tick {
  flex: none;
  width: clamp(22px, 2.2vw, 30px);
  height: clamp(22px, 2.2vw, 30px);
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .15em;
}
.checks .tick svg { width: 60%; height: 60%; stroke: var(--gold-light); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* destaque dourado (nota fiscal etc.) */
.callout {
  border: 1px solid var(--gold);
  background: linear-gradient(120deg, rgba(212,175,55,.14), rgba(212,175,55,.05));
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 28px);
  font-size: clamp(.88rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: var(--grey);
}
.callout .big {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  line-height: 1.25;
  margin-bottom: .35em;
}

/* cards de venda de shows (boxes com foto do assunto) */
.show-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22,.9,.35,1), box-shadow .35s, border-color .35s;
}
.show-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(0,0,0,.6), 0 0 34px rgba(212,175,55,.16);
}
.show-card .sc-img {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 32vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(420px 220px at 70% 20%, rgba(212,175,55,.16), transparent 65%),
    linear-gradient(140deg, rgba(30,58,138,.55), rgba(5,10,26,.9));
}
.show-card .sc-img .ic { position: absolute; z-index: 0; }
.show-card .sc-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.9,.35,1);
}
.show-card:hover .sc-img img { transform: scale(1.09); }
.show-card .sc-body { padding: clamp(14px, 2vh, 24px) clamp(14px, 1.6vw, 24px); }
.show-card .sc-body h3 {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(.95rem, 1.5vw, 1.25rem);
  margin-bottom: .4em;
}
.show-card .sc-body p { color: var(--grey); font-size: clamp(.8rem, 1.1vw, 1rem); line-height: 1.55; }

/* destaque: brilho varrendo o texto importante */
.callout .big.shine {
  background: linear-gradient(110deg, var(--gold) 25%, #fff3c4 50%, var(--gold) 75%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pctShine 3.6s ease-in-out infinite alternate;
}

/* fluxo com setas (linha do tempo das gravadoras) */
.flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(6px, 1vw, 16px);
  flex-wrap: wrap;
  margin-top: clamp(28px, 7vh, 72px); /* respiro em relação ao texto acima */
}
.flow .step {
  flex: 1 1 150px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vh, 18px);
}
.flow .step .ic {
  width: clamp(64px, 7.2vw, 112px);
  height: clamp(64px, 7.2vw, 112px);
}
.flow .step span {
  font-size: clamp(.8rem, 1.15vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
}
.flow .arrow {
  align-self: center;
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 300;
}

/* logos (marcas / gravadoras) */
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 20px);
  align-items: center;
}
.logo-chip {
  background: rgba(255,255,255,.92);
  color: #0b1020;
  font-weight: 800;
  letter-spacing: .05em;
  border-radius: 10px;
  padding: clamp(8px, 1vw, 14px) clamp(14px, 1.8vw, 26px);
  font-size: clamp(.75rem, 1.1vw, 1.05rem);
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.logo-chip.dark { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.logo-chip.script { font-family: Georgia, "Times New Roman", serif; text-transform: none; font-style: italic; }

/* fotos */
.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
  aspect-ratio: 4 / 3;
  max-height: 52vh; /* nunca estoura a altura da tela */
  width: 100%;
  background: linear-gradient(150deg, rgba(30,58,138,.4), rgba(5,10,26,.8));
}
.photo.portrait { max-height: 62vh; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* efeito Ken Burns: zoom lento e elegante enquanto o slide está ativo */
.slide.active .photo img {
  animation: kenburns 16s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, 1.5%); }
}
/* moldura com brilho que percorre a borda da foto */
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.14) 48%, rgba(212,175,55,.2) 52%, transparent 70%);
  background-size: 260% 260%;
  animation: sheen 7s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes sheen {
  0%, 55% { background-position: 120% 120%; }
  85%, 100% { background-position: -60% -60%; }
}
.photo.portrait { aspect-ratio: 3 / 4; }
.photo .ph-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  color: var(--grey);
  font-size: clamp(.75rem, 1vw, .95rem);
}
.photo .ph-fallback svg { width: clamp(36px, 4vw, 60px); height: clamp(36px, 4vw, 60px); stroke: var(--gold); fill: none; stroke-width: 1.4; }
.photo.missing img { display: none; }
.photo.missing .ph-fallback { display: flex; }

/* ---------- SLIDE CAPA ---------- */
.cover { align-items: flex-start; }
.cover .cols { width: 100%; }
.cover .brand {
  font-size: clamp(2.4rem, 7.2vw, 6.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .01em;
  background: linear-gradient(110deg, #fff 30%, var(--gold-light) 47%, #fff 55%, #fff 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleSheen 5.5s ease-in-out infinite;
}
@keyframes titleSheen {
  0%, 35%  { background-position: 115% 0; }
  75%, 100% { background-position: -40% 0; }
}
.cover .plus {
  display: flex;
  align-items: baseline;
  gap: .35em;
  margin: clamp(6px, 1.4vh, 16px) 0 clamp(14px, 2.6vh, 28px);
}
.cover .plus .sign { color: var(--gold); font-size: clamp(1.8rem, 4.6vw, 4rem); font-weight: 300; }
.cover .hulk-name {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(212,175,55,.35);
  animation: goldGlow 3.2s ease-in-out infinite alternate;
}
@keyframes goldGlow {
  from { text-shadow: 0 0 18px rgba(212,175,55,.25); }
  to   { text-shadow: 0 0 42px rgba(212,175,55,.65), 0 0 80px rgba(212,175,55,.2); }
}
.cover .subtitle {
  border-left: 3px solid var(--gold);
  padding-left: clamp(12px, 1.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--grey);
  font-size: clamp(.72rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}
.cover .hint {
  margin-top: clamp(22px, 5vh, 54px);
  color: rgba(255,255,255,.45);
  font-size: clamp(.68rem, 1vw, .9rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cover .hint .pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: .35; transform: scale(.85);} 50% { opacity: 1; transform: scale(1.15);} }

/* ---------- SLIDE 1: pilares numerados ---------- */
.pillars-num { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.8vw, 26px); margin-bottom: clamp(14px, 2.4vh, 26px); }
.pillar-n {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: clamp(14px, 1.8vw, 26px);
}
.pillar-n .n {
  display: inline-flex;
  width: clamp(26px, 2.6vw, 38px);
  height: clamp(26px, 2.6vw, 38px);
  border-radius: 8px;
  background: var(--gold);
  color: #100c02;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  font-size: clamp(.85rem, 1.3vw, 1.2rem);
  margin-bottom: clamp(8px, 1.2vh, 14px);
}
.pillar-n h3 { color: var(--gold-light); font-size: clamp(.88rem, 1.3vw, 1.15rem); margin-bottom: .45em; }
.pillar-n p { color: var(--grey); font-size: clamp(.78rem, 1.05vw, .95rem); line-height: 1.55; }

/* ---------- SLIDE 2: 3 pilares em cards grandes ---------- */
.pillar-big {
  text-align: center;
  padding: clamp(24px, 3.4vh, 48px) clamp(16px, 1.8vw, 30px);
  border-radius: var(--radius);
  border: 1px solid;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vh, 22px);
  transition: transform .3s ease;
}
.pillar-big:hover { transform: translateY(-6px); }
.pillar-big h3 { font-size: clamp(.95rem, 1.5vw, 1.35rem); text-transform: uppercase; letter-spacing: .05em; line-height: 1.3; }
.pillar-big small { color: var(--grey); letter-spacing: .3em; text-transform: uppercase; font-size: clamp(.6rem, .9vw, .8rem); }
.pillar-big.p-pink { border-color: rgba(193,53,132,.5); }
.pillar-big.p-blue { border-color: rgba(77,121,255,.5); }
.pillar-big.p-gold { border-color: var(--gold); box-shadow: 0 0 40px rgba(212,175,55,.12); }

/* ---------- Spotify mock (slides 3 e 9) ---------- */
.spotify-card {
  background: #121212;
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 28px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
  max-width: 420px;
  width: 100%;
}
.spotify-card .sp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: clamp(12px, 1.6vh, 20px); }
.spotify-card .sp-title { font-weight: 800; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.spotify-card .sp-play {
  width: clamp(36px, 3.4vw, 48px); height: clamp(36px, 3.4vw, 48px);
  background: #1db954; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.spotify-card .sp-play svg { width: 44%; height: 44%; fill: #062812; }
.spotify-card .sp-label { color: #9a9a9a; font-size: clamp(.68rem, .95vw, .85rem); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.spotify-card ol { list-style: none; display: flex; flex-direction: column; gap: clamp(8px, 1.2vh, 14px); }
.spotify-card ol li { display: flex; align-items: center; gap: 12px; font-size: clamp(.8rem, 1.1vw, .98rem); }
.spotify-card ol li .idx { color: #9a9a9a; width: 1.2em; text-align: right; }
.spotify-card ol li .plays { margin-left: auto; color: #9a9a9a; font-size: .85em; }
.spotify-card .sp-foot { display: flex; align-items: center; gap: 8px; margin-top: clamp(12px, 1.8vh, 20px); color: #1db954; font-weight: 700; font-size: clamp(.8rem, 1.1vw, 1rem); }
.spotify-card .sp-foot svg { width: 1.4em; height: 1.4em; fill: #1db954; }

/* perfil real do Spotify */
.sp-profile { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(12px, 1.8vh, 20px); }
.sp-profile img {
  width: clamp(54px, 5.4vw, 76px);
  height: clamp(54px, 5.4vw, 76px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.sp-profile .sp-verified {
  display: flex; align-items: center; gap: 6px;
  color: #3d91f4; font-size: clamp(.62rem, .9vw, .78rem); font-weight: 600;
}
.sp-profile .sp-verified svg { width: 1.2em; height: 1.2em; fill: #3d91f4; }
.sp-profile .sp-title { display: block; font-weight: 800; font-size: clamp(1.05rem, 1.6vw, 1.4rem); line-height: 1.2; }
.sp-listeners {
  color: var(--white);
  font-size: clamp(.8rem, 1.15vw, 1rem);
  margin-bottom: clamp(10px, 1.6vh, 18px);
}
.sp-listeners b { color: #1db954; font-size: 1.15em; }
.sp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(12px, 1.8vh, 20px);
  background: #1db954;
  color: #06230f;
  font-weight: 800;
  text-decoration: none;
  font-size: clamp(.72rem, 1vw, .9rem);
  padding: clamp(8px, 1.1vh, 12px) clamp(14px, 1.8vw, 22px);
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.sp-link:hover { transform: scale(1.05); box-shadow: 0 0 24px rgba(29,185,84,.45); }
.sp-link svg { width: 1.3em; height: 1.3em; fill: #06230f; }

/* caixas de logos oficiais */
.logo-box {
  background: #fff;
  border-radius: 12px;
  padding: clamp(8px, 1vw, 14px) clamp(12px, 1.4vw, 20px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(44px, 4.6vw, 66px);
  min-width: clamp(90px, 9vw, 140px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transition: transform .3s;
}
.logo-box:hover { transform: translateY(-4px) scale(1.04); }
/* todas as logos com a mesma escala visual */
.logo-box { height: clamp(60px, 6.4vw, 96px); }
.logo-box img { max-height: clamp(40px, 4.4vw, 66px); max-width: clamp(110px, 12vw, 190px); object-fit: contain; display: block; }
.logo-box.hidden { display: none; }

/* números gigantes (slide exclusivo de números) */
.bignum {
  text-align: center;
  padding: clamp(20px, 3vh, 40px) clamp(14px, 1.6vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.4vh, 16px);
}
.bignum .bn-val {
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(120deg, #fff 20%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pctShine 5s ease-in-out infinite alternate;
  white-space: nowrap;
}
.bignum .bn-val small { font-size: .5em; font-weight: 800; }
.bignum p { color: var(--grey); font-size: clamp(.75rem, 1.05vw, .98rem); line-height: 1.5; }
.slide.active .bignum .ic { animation: bossGlow 3s ease-in-out infinite alternate; }

/* playlists (slide 9) */
.playlists { display: flex; flex-direction: column; gap: clamp(10px, 1.4vh, 16px); }
.playlists .pl {
  display: flex; align-items: center; gap: 14px;
  background: #181818; border-radius: 12px;
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid rgba(255,255,255,.07);
}
.playlists .pl .cover-sq {
  width: clamp(40px, 4vw, 56px); height: clamp(40px, 4vw, 56px);
  border-radius: 8px; flex: none;
}
.playlists .pl b { display: block; font-size: clamp(.85rem, 1.2vw, 1.05rem); }
.playlists .pl small { color: #9a9a9a; font-size: clamp(.68rem, .9vw, .82rem); }

/* ---------- SLIDE 11: números ---------- */
.stats { display: flex; flex-direction: column; gap: clamp(14px, 2.4vh, 28px); }
.stat {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 26px);
  padding-bottom: clamp(12px, 2vh, 22px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat .val {
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}
.stat .val .cur { color: var(--gold); }
.stat p { color: var(--grey); font-size: clamp(.8rem, 1.15vw, 1.02rem); line-height: 1.5; }

/* ---------- SLIDE 12: organograma ---------- */
.org-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.4vw, 22px);
  margin-top: clamp(28px, 7vh, 70px); /* respiro em relação ao título */
  margin-bottom: clamp(18px, 3vh, 34px);
}
.org-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: clamp(8px, 1.2vh, 14px); }
.org-item .ic, .org-boss .ic { width: clamp(66px, 6.8vw, 108px); height: clamp(66px, 6.8vw, 108px); }
.org-item b { text-transform: uppercase; font-size: clamp(.72rem, 1.05vw, .98rem); letter-spacing: .06em; }
.org-item small { color: var(--grey); font-size: clamp(.65rem, .9vw, .85rem); line-height: 1.45; }
.org-boss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
}
.org-boss .ic { border-width: 3px; box-shadow: 0 0 40px rgba(212,175,55,.4); }
.org-boss .who b { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: clamp(.9rem, 1.4vw, 1.25rem); }
.org-boss .who span { color: var(--gold); font-family: Georgia, serif; font-style: italic; font-size: clamp(1.1rem, 1.9vw, 1.7rem); font-weight: 700; }
.org-line { height: clamp(18px, 3vh, 34px); width: 2px; background: linear-gradient(var(--gold), transparent); margin: 0 auto; }

/* ---------- SLIDE 13: proposta ---------- */
.proposal { text-align: left; }
.proposal .pct {
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 900;
  line-height: .95;
  background: linear-gradient(120deg, #fff 20%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.proposal .pct-desc {
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 2rem);
  line-height: 1.25;
  margin: clamp(8px, 1.4vh, 16px) 0 clamp(14px, 2.4vh, 26px);
}
.proposal .term {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: clamp(10px, 1.4vh, 16px) clamp(18px, 2.4vw, 34px);
  border-radius: 999px;
  font-size: clamp(.85rem, 1.6vw, 1.4rem);
  background: rgba(212,175,55,.08);
}

/* o que os 40% abrangem */
.scope {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 14px);
  margin-top: clamp(22px, 4.6vh, 44px);
}
.scope-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: clamp(8px, 1.2vh, 13px) clamp(14px, 1.6vw, 22px);
  font-size: clamp(.74rem, 1.05vw, .98rem);
  font-weight: 600;
  color: var(--grey);
  transition: border-color .3s, transform .3s;
}
.scope-chip:hover { border-color: var(--gold); transform: translateY(-3px); }
.scope-chip .sc-ic {
  width: clamp(22px, 2.2vw, 30px);
  height: clamp(22px, 2.2vw, 30px);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.scope-chip .sc-ic svg { width: 55%; height: 55%; stroke: var(--gold-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* assinatura de fechamento sob a foto */
.closing {
  margin-top: clamp(14px, 2.6vh, 26px);
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  padding: clamp(14px, 2.4vh, 26px) clamp(14px, 1.8vw, 28px);
}
.closing-brand {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  margin-bottom: .35em;
}
.closing-brand b { color: var(--gold); font-weight: 300; padding: 0 .15em; }
.closing-brand em {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-weight: 700;
  text-transform: none;
  animation: goldGlow 3.2s ease-in-out infinite alternate;
}
.closing p { color: var(--grey); font-size: clamp(.76rem, 1.1vw, 1rem); line-height: 1.5; }

/* ---------- navegação ---------- */
.nav-arrows {
  position: fixed;
  z-index: 10;
  bottom: calc(clamp(14px, 3vh, 30px) + env(safe-area-inset-bottom, 0px));
  right: clamp(14px, 3vw, 40px);
  display: flex;
  gap: 12px;
}
.nav-btn {
  width: clamp(48px, 4.4vw, 58px);
  height: clamp(48px, 4.4vw, 58px);
  touch-action: manipulation;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,.6);
  background: rgba(10, 18, 48, .7);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .15s;
}
.nav-btn:hover { background: rgba(212,175,55,.2); }
.nav-btn:active { transform: scale(.92); }
.nav-btn svg { width: 40%; height: 40%; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.nav-btn:disabled { opacity: .3; cursor: default; }

.counter {
  position: fixed;
  z-index: 10;
  bottom: clamp(20px, 3.6vh, 38px);
  left: clamp(16px, 3vw, 42px);
  font-size: clamp(.72rem, 1vw, .95rem);
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.counter b { color: var(--gold); }

.progress {
  position: fixed;
  z-index: 11;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width .45s ease;
}

.dots {
  position: fixed;
  z-index: 10;
  right: clamp(10px, 1.6vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.dots button.on { background: var(--gold); border-color: var(--gold); transform: scale(1.35); }

/* ---------- responsividade ---------- */
@media (max-width: 980px) {
  .cols { grid-template-columns: 1fr; gap: clamp(18px, 3vh, 30px); }
  .cols .photo { max-width: 480px; margin: 0 auto; width: 100%; }
  .grid.g4, .grid.g5 { grid-template-columns: repeat(2, 1fr); }
  .org-row { grid-template-columns: repeat(2, 1fr); }
  .org-row .org-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .slide { padding: 16px 18px 92px; }
  .slide h2 { font-size: clamp(1.35rem, 6.4vw, 1.8rem); margin-bottom: 14px; }
  .kicker { font-size: .62rem; margin-bottom: 8px; }
  .lead { font-size: .95rem; margin-bottom: 16px; }
  .dots { display: none; }

  /* grades */
  .grid { gap: 12px; }
  .grid.g3, .pillars-num { grid-template-columns: 1fr; }
  .grid.g4, .grid.g5 { grid-template-columns: repeat(2, 1fr); }

  /* gravadoras: cards preenchem melhor e logos ficam legíveis */
  .card { padding: 16px 12px; }
  .card.center .logo-box { width: 100%; min-width: 0; min-height: 62px; }
  .card.center .logo-box img { max-height: 40px; max-width: 88%; }
  .card.center h3 { font-size: .9rem; margin-top: 10px; }

  /* slide de números: valores dimensionados para caber em 2 colunas */
  .bignum { padding: 16px 8px; gap: 8px; }
  .bignum .bn-val { font-size: clamp(1.2rem, 6.4vw, 1.8rem); }
  .bignum .ic { width: 44px; height: 44px; }
  .bignum p { font-size: .72rem; }

  /* fluxo (como as gravadoras atuam): lista vertical limpa */
  .flow { flex-direction: column; align-items: stretch; gap: 0; }
  .flow .step {
    max-width: none;
    flex-direction: row;
    text-align: left;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 12px 14px;
  }
  .flow .step .ic { width: 46px; height: 46px; }
  .flow .step span:last-child { font-size: .82rem; }
  .flow .arrow {
    align-self: center;
    transform: rotate(90deg);
    font-size: 1.25rem;
    margin: 4px 0;
    opacity: .9;
  }

  /* listas e cards de conteúdo */
  .ilist li { font-size: .92rem; }
  .ilist li .ic { width: 46px; height: 46px; }
  .checks li { font-size: .92rem; }
  .callout { font-size: .92rem; }
  .callout .big { font-size: 1.05rem; }

  /* Spotify e fotos */
  .spotify-card { max-width: none; }
  .photo { aspect-ratio: 16 / 10; }
  .photo.portrait { aspect-ratio: 4 / 5; max-width: 320px; margin: 0 auto; }

  /* números do exemplo (slide de R$ 30 milhões) */
  .stat { gap: 14px; }
  .stat .val { font-size: 1.55rem; }
  .stat .ic { width: 48px; height: 48px; }

  /* organograma */
  .org-item small { font-size: .68rem; }

  /* proposta */
  .proposal .pct { font-size: clamp(4rem, 21vw, 6.5rem); }
  .proposal .pct-desc { font-size: 1.1rem; }
  .scope { margin-top: 18px; gap: 8px; }
  .scope-chip { font-size: .78rem; padding: 8px 14px; }
  .closing { margin-top: 14px; padding: 14px 16px; }

  /* logos das marcas */
  .logos { gap: 10px; justify-content: center; }
  .logo-box { min-width: 42%; flex: 1 1 42%; }
}

/* desktops e notebooks com tela baixa (ex.: 1366x768):
   tudo escala pela ALTURA da tela, sem barra de rolagem */
@media (min-width: 641px) and (max-height: 840px) {
  .slide { padding-top: 2vh; padding-bottom: 9vh; }
  .kicker { margin-bottom: 1vh; }
  .slide h2 { font-size: clamp(1.3rem, 4.4vh, 2.6rem); margin-bottom: 2vh; }
  .lead { font-size: clamp(.85rem, 2.1vh, 1.15rem); margin-bottom: 2vh; }
  .cols { gap: clamp(18px, 3vw, 44px); }

  .photo { max-height: 44vh; }
  .photo.portrait { max-height: 56vh; }

  .stats { gap: 2.2vh; }
  .stat { padding-bottom: 1.8vh; gap: 2vh; }
  .stat .val { font-size: clamp(1.3rem, 4.6vh, 2.3rem); }
  .stat p { font-size: clamp(.75rem, 1.9vh, .98rem); }
  .stat .ic { width: clamp(40px, 7vh, 64px); height: clamp(40px, 7vh, 64px); }

  .card { padding: clamp(12px, 2.6vh, 26px); }
  .pillar-big { padding: 3.4vh 14px; gap: 1.8vh; }
  .pillar-n { padding: 2vh 16px; }
  .pillars-num { margin-bottom: 2vh; }
  .callout { padding: 2vh 18px; font-size: clamp(.8rem, 1.9vh, 1.02rem); }
  .callout .big { font-size: clamp(.95rem, 2.6vh, 1.5rem); }

  .ilist { gap: 2.4vh; }
  .ilist li { font-size: clamp(.82rem, 2vh, 1.05rem); }
  .ilist li .ic { width: clamp(38px, 6.6vh, 58px); height: clamp(38px, 6.6vh, 58px); }
  .checks { gap: 2.2vh; }
  .checks li { font-size: clamp(.82rem, 2vh, 1.05rem); }
  .ic { width: clamp(44px, 8vh, 80px); height: clamp(44px, 8vh, 80px); }

  .spotify-card { padding: 2.2vh 20px; }
  .spotify-card ol { gap: 1.3vh; }
  .spotify-card ol li { font-size: clamp(.72rem, 1.8vh, .95rem); }
  .sp-profile img { width: clamp(44px, 8vh, 70px); height: clamp(44px, 8vh, 70px); }

  .bignum { padding: 2.6vh 12px; gap: 1.4vh; }
  .bignum .bn-val { font-size: clamp(1.4rem, 4.8vh, 3rem); }
  .bignum p { font-size: clamp(.68rem, 1.7vh, .95rem); }

  .org-row { margin-bottom: 2.6vh; }
  .org-item small { font-size: clamp(.6rem, 1.5vh, .82rem); }
  .flow .step .ic { width: clamp(44px, 8vh, 72px); height: clamp(44px, 8vh, 72px); }
  .show-card .sc-img { max-height: 26vh; }
  .show-card .sc-body { padding: 1.6vh 16px; }

  .proposal .pct { font-size: clamp(3.6rem, 22vh, 10rem); }
  .proposal .pct-desc { font-size: clamp(.95rem, 3vh, 1.8rem); margin: 1.2vh 0 2.2vh; }

  .cover .brand { font-size: clamp(2.2rem, 9.5vh, 6rem); }
  .cover .hulk-name { font-size: clamp(2.2rem, 9vh, 5.6rem); }
  .cover .hint { margin-top: 3.5vh; }
}

/* celular deitado / telas baixas: compacta o vertical */
@media (max-height: 480px) {
  .slide { padding-top: 12px; padding-bottom: 70px; }
  .kicker { margin-bottom: 4px; }
  .slide h2 { margin-bottom: 10px; font-size: clamp(1.1rem, 4vh, 1.6rem); }
  .lead { margin-bottom: 10px; }
  .nav-btn { width: 40px; height: 40px; }
}

/* TV / telões */
@media (min-width: 1800px) {
  .slide { padding-left: 8vw; padding-right: 8vw; }
}

/* ============================================================
   MOTION EXTRA — impacto visual
   ============================================================ */

/* ícones respiram com brilho dourado no slide ativo */
.slide.active .ic {
  animation: icGlow 3.6s ease-in-out infinite alternate;
}
@keyframes icGlow {
  from { box-shadow: 0 0 16px rgba(212,175,55,.15); }
  to   { box-shadow: 0 0 34px rgba(212,175,55,.45); }
}
.slide.active .ic.pink { animation-name: icGlowPink; }
@keyframes icGlowPink {
  from { box-shadow: 0 0 16px rgba(193,53,132,.2); }
  to   { box-shadow: 0 0 34px rgba(193,53,132,.55); }
}
.slide.active .ic.blue { animation-name: icGlowBlue; }
@keyframes icGlowBlue {
  from { box-shadow: 0 0 16px rgba(77,121,255,.2); }
  to   { box-shadow: 0 0 34px rgba(77,121,255,.55); }
}

/* linha do tempo das gravadoras: cada etapa entra uma por uma,
   com a seta surgindo entre elas, contando a sequência */
.flow .step, .flow .arrow { opacity: 0; }
.slide.active .flow .step { animation: stepIn .65s cubic-bezier(.22,.9,.35,1) forwards; }
.slide.active .flow .step:nth-of-type(1) { animation-delay: .4s; }
.slide.active .flow .step:nth-of-type(2) { animation-delay: 1.2s; }
.slide.active .flow .step:nth-of-type(3) { animation-delay: 2s; }
.slide.active .flow .step:nth-of-type(4) { animation-delay: 2.8s; }
.slide.active .flow .arrow { animation: arrowIn .5s ease forwards, arrowPulse 2.4s ease-in-out infinite; }
.slide.active .flow .arrow:nth-of-type(1) { animation-delay: .95s, 3.6s; }
.slide.active .flow .arrow:nth-of-type(2) { animation-delay: 1.75s, 3.9s; }
.slide.active .flow .arrow:nth-of-type(3) { animation-delay: 2.55s, 4.2s; }
@keyframes stepIn {
  0%   { opacity: 0; transform: translateY(30px) scale(.55); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes arrowIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes arrowPulse {
  0%, 100% { opacity: .5; transform: translateX(0); text-shadow: none; }
  50% { opacity: 1; transform: translateX(5px); text-shadow: 0 0 16px rgba(212,175,55,.7); }
}
@media (max-width: 640px) {
  /* no mobile a linha do tempo também entra em sequência, com setas estáticas */
  .slide.active .flow .arrow { animation: arrowIn .5s ease forwards; }
}

/* brilho passando pelos chips de marcas */
.logo-chip { position: relative; overflow: hidden; }
.logo-chip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: chipSheen 4.5s ease-in-out infinite;
}
.logo-chip:nth-child(2)::after { animation-delay: .4s; }
.logo-chip:nth-child(3)::after { animation-delay: .8s; }
.logo-chip:nth-child(4)::after { animation-delay: 1.2s; }
.logo-chip:nth-child(5)::after { animation-delay: 1.6s; }
@keyframes chipSheen {
  0%, 60% { left: -80%; }
  90%, 100% { left: 140%; }
}

/* cards ganham vida no hover (desktop/TV com mouse) */
.card, .pillar-big, .pillar-n {
  transition: transform .35s cubic-bezier(.22,.9,.35,1), box-shadow .35s, border-color .35s;
}
.card:hover, .pillar-n:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 30px rgba(212,175,55,.12);
}

/* barra de progresso com brilho animado */
.progress {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: progressShine 2.6s linear infinite;
}
@keyframes progressShine {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

/* 40% da proposta: gradiente vivo em movimento */
.proposal .pct {
  background: linear-gradient(120deg, #fff 15%, var(--gold-light) 40%, var(--gold) 60%, #fff 85%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: pctShine 4.5s ease-in-out infinite alternate;
}
@keyframes pctShine {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.slide.active .proposal .term { animation: termPulse 2.8s ease-in-out infinite .9s; }
@keyframes termPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(212,175,55,0); }
  50% { box-shadow: 0 0 34px rgba(212,175,55,.35); }
}

/* empresário Hulk: a linha cresce e ele entra em grande destaque */
.org-line { opacity: 0; transform: scaleY(0); transform-origin: top; }
.slide.active .org-line { animation: lineGrow .5s ease-out 1.15s forwards; }
@keyframes lineGrow { to { opacity: 1; transform: scaleY(1); } }

.org-boss { opacity: 0; }
.slide.active .org-boss { animation: bossIn 1s cubic-bezier(.22,.9,.35,1) 1.5s forwards; }
@keyframes bossIn {
  0%   { opacity: 0; transform: scale(.35) translateY(40px); filter: blur(6px); }
  55%  { opacity: 1; transform: scale(1.18) translateY(-8px); filter: blur(0); }
  75%  { transform: scale(.96) translateY(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.slide.active .org-boss .ic { animation: bossGlow 2.6s ease-in-out 2.5s infinite alternate; }
.slide.active .org-boss .who span { animation: goldGlow 3s ease-in-out 2.5s infinite alternate; }
@keyframes bossGlow {
  from { box-shadow: 0 0 24px rgba(212,175,55,.3); transform: scale(1); }
  to   { box-shadow: 0 0 60px rgba(212,175,55,.75); transform: scale(1.07); }
}

/* botões de navegação com brilho no hover */
.nav-btn:hover { box-shadow: 0 0 24px rgba(212,175,55,.35); }

/* desempenho: dá uma dica ao navegador do que vai animar */
.photo, .photo img, .slide, .rise { will-change: transform, opacity; }

/* acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
  }
  .slide .rise, .flow .step, .flow .arrow, .org-line, .org-boss { opacity: 1; transform: none; filter: none; }
}

/* impressão / fallback sem JS: mostra tudo em sequência */
@media print {
  html, body { overflow: visible; }
  .slide { position: static; opacity: 1 !important; visibility: visible !important; transform: none !important; filter: none !important; page-break-after: always; }
  .rise, .flow .step, .flow .arrow, .org-line, .org-boss { opacity: 1 !important; animation: none !important; transform: none !important; filter: none !important; }
  .nav-arrows, .dots, .counter, .progress { display: none !important; }
}
