/* =============================================================
   AECADEMY — landing cinematográfica · suíte Aeprax
   Tema: preto + vermelho · experiência de streaming
   ============================================================= */

:root {
  --black:   #0A0A0A;
  --panel:   #131313;
  --panel-2: #1B1B1B;
  --panel-3: #262626;

  --red:        #E50914;
  --red-bright: #F6121D;
  --red-deep:   #B20710;
  --green:      #46D369;

  --white:  #FFFFFF;
  --gray:   #B9B9B9;
  --gray-2: #808080;
  --gray-3: #565656;
  --line:   rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.18);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --px: clamp(1rem, 4.2vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
::selection { background: var(--red); color: #fff; }
.hl { color: var(--red-bright); }

/* grão de filme */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   PRELOADER
   ============================================================= */
.pl {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.pl.is-done { opacity: 0; visibility: hidden; }
.pl__inner { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.pl__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 7vw, 3.4rem);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--red);
  animation: pl-pop 1.4s var(--ease) both;
}
.pl__tag {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--gray-3);
  opacity: 0;
  animation: pl-fade 0.6s ease 0.7s forwards;
}
.pl__bar {
  width: 190px;
  height: 2px;
  background: var(--panel-3);
  overflow: hidden;
  border-radius: 2px;
}
.pl__bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
  animation: pl-load 1.5s var(--ease) 0.3s forwards;
}
@keyframes pl-pop {
  0%   { opacity: 0; transform: scale(1.3); filter: blur(8px); }
  60%  { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes pl-fade { to { opacity: 1; } }
@keyframes pl-load { to { transform: scaleX(1); } }

/* =============================================================
   BOTÕES
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.92rem 1.8rem;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
  white-space: nowrap;
}
.btn svg { width: 1.4em; height: 1.4em; }
.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; border-radius: 5px; }
.btn--lg { padding: 1.1rem 2.3rem; font-size: 1.06rem; }
.btn--red    { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(229,9,20,0.8); }
.btn--play   { background: var(--white); color: #111; }
.btn--play:hover { background: rgba(255,255,255,0.78); transform: translateY(-2px); }
.btn--info   { background: rgba(109,109,110,0.5); color: #fff; }
.btn--info:hover { background: rgba(109,109,110,0.34); transform: translateY(-2px); }
.btn--circle {
  width: 42px; height: 42px;
  padding: 0;
  border-radius: 50%;
  background: rgba(42,42,42,0.7);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.btn--circle:hover { border-color: #fff; background: rgba(60,60,60,0.9); }
.btn:active { transform: scale(0.97); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.15rem var(--px);
  background: linear-gradient(180deg, rgba(0,0,0,0.9), transparent);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,10,10,0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  color: var(--red);
}
.nav__brand-mark { width: 22px; height: 22px; display: grid; place-items: center; }
.nav__brand-mark svg { width: 21px; height: 21px; }
.nav__links { display: flex; gap: 1.7rem; margin-right: auto; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s ease;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: 0.85rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 7px;
  cursor: pointer;
}
.nav__burger span {
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   BILLBOARD
   ============================================================= */
.bb { position: relative; min-height: 100svh; }
.bb__stage { position: relative; min-height: 100svh; }
.bb__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 9rem var(--px) 13rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
}
.bb__slide.is-active { opacity: 1; visibility: visible; }

.bb__art { position: absolute; inset: 0; overflow: hidden; }
.bb__glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.bb__glow--a { width: 58vw; height: 58vw; top: -16%; right: -6%; }
.bb__glow--b { width: 40vw; height: 40vw; bottom: -20%; left: -8%; }

.bb__slide--brand .bb__art { background: radial-gradient(ellipse at 72% 36%, #2A0608, #0A0A0A 74%); }
.bb__slide--brand .bb__glow--a { background: rgba(229,9,20,0.5); }
.bb__slide--brand .bb__glow--b { background: rgba(124,18,18,0.42); }
.bb__slide--money .bb__art { background: radial-gradient(ellipse at 74% 40%, #2A1004, #0A0A0A 74%); }
.bb__slide--money .bb__glow--a { background: rgba(234,88,12,0.4); }
.bb__slide--money .bb__glow--b { background: rgba(229,9,20,0.4); }
.bb__slide--own .bb__art { background: radial-gradient(ellipse at 72% 38%, #170A26, #0A0A0A 74%); }
.bb__slide--own .bb__glow--a { background: rgba(147,51,234,0.38); }
.bb__slide--own .bb__glow--b { background: rgba(229,9,20,0.4); }

/* parede de pôsteres (slide 1) */
.bb__wall {
  position: absolute;
  top: 50%; right: -4%;
  transform: translateY(-50%) rotate(-14deg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 58vw;
  max-width: 760px;
  opacity: 0.85;
}
.bb__poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--a), var(--b));
  box-shadow: 0 30px 50px -28px rgba(0,0,0,0.9);
  animation: wall-float 7s ease-in-out infinite;
}
.bb__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bb__poster:nth-child(2n) { animation-delay: -2.3s; }
.bb__poster:nth-child(3n) { animation-delay: -4.6s; }
@keyframes wall-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* arte slide 2 / 3 */
.bb__giant {
  position: absolute;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.13);
}
.bb__rings {
  position: absolute;
  width: 44vw; height: 44vw;
  max-width: 600px; max-height: 600px;
  top: 50%; right: 7%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 130px rgba(147,51,234,0.4);
}
.bb__rings::before, .bb__rings::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.bb__rings::after { inset: 34%; border-color: rgba(229,9,20,0.45); }

.bb__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.6) 42%, transparent 74%),
    linear-gradient(0deg, var(--black) 1%, transparent 40%);
}

.bb__content { position: relative; z-index: 2; max-width: 660px; }
.bb__kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.bb__kicker-mark {
  display: grid; place-items: center;
  width: 22px; height: 26px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 3px;
}
.bb__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
  text-shadow: 0 8px 44px rgba(0,0,0,0.7);
}
.bb__title--mega {
  font-size: clamp(3rem, 8vw, 6.6rem);
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 52%, #C2C2C2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bb__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.bb__meta-match { color: var(--green); font-weight: 700; }
.bb__meta-rating { border: 1px solid var(--line-2); padding: 0.05rem 0.5rem; font-size: 0.78rem; letter-spacing: 0.1em; }
.bb__meta-tag { background: var(--panel-3); padding: 0.13rem 0.6rem; border-radius: 4px; font-size: 0.8rem; }
.bb__desc {
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.5;
  color: #E8E8E8;
  max-width: 34em;
  margin-bottom: 1.9rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}
.bb__desc strong { color: #fff; }
.bb__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.bb__dots {
  position: absolute;
  bottom: 8.5rem; right: var(--px);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.bb__dot {
  width: 34px; height: 4px;
  border: 0; padding: 0;
  background: rgba(255,255,255,0.3);
  cursor: pointer; border-radius: 2px;
  transition: background 0.2s ease;
}
.bb__dot.is-active { background: var(--red); }
.bb__scroll {
  position: absolute;
  bottom: 7rem; left: var(--px);
  z-index: 3;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.bb__scroll::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gray-2);
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* =============================================================
   FILEIRAS
   ============================================================= */
.rows {
  position: relative;
  z-index: 5;
  margin-top: -5rem;
  padding-bottom: 3.5rem;
}
.rows__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 var(--px) 1.6rem;
  padding: 0.55rem 1rem;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #F1C6C8;
}
.rows__hint-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-bright);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

.row { margin-bottom: 0.5rem; }
.row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  padding: 0 var(--px);
  margin-bottom: 0.2rem;
}
.row__viewport { position: relative; }
.row__track {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2.25rem var(--px) 3rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.row__track::-webkit-scrollbar { display: none; }
.row__track.is-dragging { scroll-behavior: auto; cursor: grabbing; }

.row__nav {
  position: absolute;
  top: 2.25rem; bottom: 3rem;
  width: clamp(2.2rem, 4vw, 3.4rem);
  border: 0;
  background: rgba(10,10,10,0.72);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.row__viewport:hover .row__nav { opacity: 1; }
.row__nav:hover { background: rgba(10,10,10,0.94); }
.row__nav--prev { left: 0; }
.row__nav--next { right: 0; }

/* card paisagem */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(220px, 24vw, 296px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: transform 0.28s var(--ease);
}
.card:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 4px; }
.card__art {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--a), var(--b));
  transition: box-shadow 0.25s ease;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s var(--ease), filter 0.25s ease;
}
.card:hover .card__img { transform: scale(1.06); }
.card__art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, transparent 32%, transparent 64%, rgba(0,0,0,0.34) 100%);
}
.card__playicon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 3;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid #fff;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.card:hover, .card:focus-visible { transform: scale(1.08); z-index: 7; }
.card:hover .card__art, .card:focus-visible .card__art {
  box-shadow: 0 20px 44px -18px rgba(0,0,0,0.9), 0 0 0 2px rgba(255,255,255,0.16);
}
.card:hover .card__playicon, .card:focus-visible .card__playicon {
  opacity: 1; transform: translate(-50%,-50%) scale(1);
}

.card__tag {
  position: absolute;
  top: 0.55rem; left: 0.55rem;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.card__tag--new { background: var(--red); }
.card__info { display: block; padding: 0.55rem 0.15rem 0; }
.card__name { display: block; font-size: 0.92rem; font-weight: 600; }
.card__sub { display: block; font-size: 0.8rem; color: var(--gray-2); margin-top: 0.1rem; }
.card__bar {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: var(--panel-3);
  margin-top: 0.5rem;
  overflow: hidden;
}
.card__bar i { display: block; height: 100%; background: var(--red); }

/* top 10 */
.row__track--top { gap: 0; padding-left: calc(var(--px) + 0.5rem); }
.top {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  border: 0; padding: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.top__rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(7rem, 13vw, 11rem);
  line-height: 0.7;
  color: #0A0A0A;
  -webkit-text-stroke: 3px #555;
  margin-right: -0.3em;
  letter-spacing: -0.05em;
}
.top:last-child .top__rank { margin-right: -0.14em; }
.top__poster {
  position: relative;
  flex: 0 0 clamp(120px, 14vw, 168px);
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--a), var(--b));
}
.top__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5));
}
.top:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 4px; }
.top:hover, .top:focus-visible { transform: scale(1.07); z-index: 7; }
.top:hover .top__rank, .top:focus-visible .top__rank { -webkit-text-stroke-color: var(--red); }
.top:hover .top__poster, .top:focus-visible .top__poster { box-shadow: 0 24px 48px -14px rgba(0,0,0,0.9); }

/* =============================================================
   BRIDGE
   ============================================================= */
.bridge {
  text-align: center;
  padding: clamp(4rem, 9vw, 8rem) var(--px);
  border-top: 1px solid var(--line);
}
.bridge__line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--gray-2);
}
.bridge__line--big { color: var(--white); }
.bridge__sub {
  max-width: 52ch;
  margin: 1.5rem auto 0;
  color: var(--gray);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}

/* =============================================================
   A VIRADA
   ============================================================= */
.virada {
  padding: clamp(4.5rem, 9vw, 8rem) var(--px);
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 0%, rgba(229,9,20,0.16), transparent 60%), var(--black);
}
.virada__eyebrow {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.virada__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.strike { position: relative; color: var(--gray-2); white-space: nowrap; }
.strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 5px; background: var(--red);
  transform: rotate(-3deg);
}
.virada__lead {
  max-width: 56ch;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--gray);
  line-height: 1.6;
}
.versus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 880px) { .versus { grid-template-columns: 1fr auto 1fr; } }
.versus__col {
  text-align: left;
  border-radius: 14px;
  padding: 1.9rem 1.7rem;
  border: 1px solid var(--line);
}
.versus__col--old { background: var(--panel); }
.versus__col--new {
  background: linear-gradient(160deg, rgba(229,9,20,0.16), var(--panel));
  border-color: rgba(229,9,20,0.5);
}
.versus__tag {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.versus__col--old .versus__tag { color: var(--gray-2); }
.versus__col--new .versus__tag { color: var(--red-bright); }
.versus__list { display: flex; flex-direction: column; gap: 0.85rem; }
.versus__list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.45;
}
.versus__list li::before {
  position: absolute; left: 0; top: -0.05rem;
  font-size: 1.1rem; font-weight: 700;
}
.versus__col--old .versus__list li::before { content: "✕"; color: var(--gray-3); }
.versus__col--new .versus__list li { color: #EDEDED; }
.versus__col--new .versus__list li::before { content: "✓"; color: var(--green); }
.versus__vs {
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto; align-self: center;
}


/* =============================================================
   APP INTERATIVO NO CELULAR
   ============================================================= */
.app {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  padding: clamp(4.5rem, 9vw, 8rem) var(--px);
  border-top: 1px solid var(--line);
  background: var(--panel);
}
@media (min-width: 920px) { .app { grid-template-columns: 1.05fr 0.95fr; } }
.app__eyebrow {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.app__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.app__body {
  color: var(--gray);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  max-width: 42ch;
}
.app__list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.4rem; }
.app__list li {
  display: flex; align-items: center; gap: 0.6rem;
  color: #E5E5E5; font-size: 0.97rem;
}
.app__list li span {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(70,211,105,0.16);
  color: var(--green);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.app__try {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: #F1C6C8;
  background: rgba(229,9,20,0.1);
  border: 1px solid rgba(229,9,20,0.35);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  margin-bottom: 1.6rem;
}
.app__try-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 9px var(--red-bright);
  animation: pulse 1.8s ease infinite;
}

.app__device {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}
.app__glow {
  position: absolute;
  width: 420px; height: 420px;
  max-width: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.4), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}
.app__phone-wrap { position: relative; }

.phone {
  position: relative;
  width: 296px;
  height: 604px;
  background: #060606;
  border: 2px solid #2C2C2C;
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 60px 100px -45px rgba(0,0,0,0.95), 0 0 0 7px #161616;
}
.phone__notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #060606;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone__screen {
  width: 100%; height: 100%;
  background: var(--black);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.35rem 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
}
.phone__status-icons { display: inline-flex; align-items: center; gap: 0.3rem; fill: #fff; }
.phone__view {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.app__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(20,20,20,0.92);
  border: 1px solid var(--line-2);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.9);
  white-space: nowrap;
  animation: chip-float 5s ease-in-out infinite;
}
.app__chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.app__chip--1 { top: 16%; left: -56px; color: var(--green); }
.app__chip--2 { bottom: 19%; right: -52px; color: var(--red-bright); animation-delay: -2.5s; }
@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
@media (max-width: 480px) {
  .app__chip--1 { left: -10px; }
  .app__chip--2 { right: -10px; }
}

/* ---- telas internas do app ---- */
.pa { height: 100%; display: flex; flex-direction: column; background: var(--black); }
.pa-scroll { flex: 1; overflow-y: auto; scrollbar-width: none; animation: pa-in 0.32s var(--ease); }
.pa-scroll::-webkit-scrollbar { display: none; }
@keyframes pa-in { from { opacity: 0; transform: translateX(8px); } }

.pa-topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem 0.6rem;
  border-bottom: 1px solid var(--line);
}
.pa-back {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 0;
  background: var(--panel-2);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  flex-shrink: 0;
}
.pa-back:hover { background: var(--panel-3); }
.pa-topbar__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pa-greet { padding: 0.7rem 1rem 0.3rem; }
.pa-greet__hi { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.pa-greet__sub { font-size: 0.78rem; color: var(--gray-2); }

.pa-feat {
  position: relative;
  margin: 0.7rem 1rem 0.4rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  cursor: pointer;
}
.pa-feat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pa-feat__shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 6%, transparent 62%);
}
.pa-feat__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.85rem; }
.pa-feat__tag {
  display: inline-block;
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--red);
  padding: 0.18rem 0.45rem;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}
.pa-feat__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.pa-feat__meta { font-size: 0.72rem; color: var(--gray); margin: 0.15rem 0 0.5rem; }
.pa-feat__bar { height: 4px; border-radius: 3px; background: rgba(255,255,255,0.22); overflow: hidden; }
.pa-feat__bar i { display: block; height: 100%; background: var(--red); }
.pa-feat__play {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid #fff;
  font-size: 0.7rem;
}

.pa-sec {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0.85rem 1rem 0.5rem;
}
.pa-sec__t { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.pa-sec__a { font-size: 0.7rem; color: var(--red-bright); }

.pa-row {
  display: flex; gap: 0.55rem;
  overflow-x: auto;
  padding: 0 1rem 0.5rem;
  scrollbar-width: none;
}
.pa-row::-webkit-scrollbar { display: none; }
.pa-tile {
  flex: 0 0 112px;
  border: 0; padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.pa-tile__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}
.pa-tile__name {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  margin-top: 0.3rem;
  line-height: 1.2;
}
.pa-tile__meta { display: block; font-size: 0.66rem; color: var(--gray-2); }

.pa-list { padding: 0.4rem 0.75rem 0.5rem; }
.pa-litem {
  display: flex; align-items: center; gap: 0.65rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  text-align: left;
}
.pa-litem:hover { background: var(--panel); border-radius: 8px; }
.pa-litem__img {
  width: 76px; height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.pa-litem__body { flex: 1; min-width: 0; }
.pa-litem__name { display: block; font-size: 0.82rem; font-weight: 600; }
.pa-litem__bar { height: 3px; border-radius: 3px; background: var(--panel-3); overflow: hidden; margin-top: 0.3rem; }
.pa-litem__bar i { display: block; height: 100%; background: var(--red); }
.pa-litem__meta { display: block; font-size: 0.68rem; color: var(--gray-2); margin-top: 0.2rem; }
.pa-litem__chev { color: var(--gray-3); font-size: 0.9rem; }

.pa-tabs {
  flex-shrink: 0;
  display: flex;
  border-top: 1px solid var(--line);
  background: #0D0D0D;
  padding-bottom: 0.25rem;
}
.pa-tab {
  flex: 1;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0;
  cursor: pointer;
  color: var(--gray-3);
}
.pa-tab svg { width: 19px; height: 19px; }
.pa-tab span { font-size: 0.6rem; font-weight: 600; }
.pa-tab.is-active { color: var(--red-bright); }

.pa-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pa-cover__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pa-cover__shade { position: absolute; inset: 0; background: linear-gradient(0deg, var(--black) 4%, transparent 65%); }
.pa-cover__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.85rem 1rem; }
.pa-cover__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.1; }
.pa-cover__meta { font-size: 0.72rem; color: var(--gray); margin-top: 0.2rem; }
.pa-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  width: calc(100% - 2rem);
  margin: 0.8rem 1rem 0.4rem;
  padding: 0.7rem;
  border: 0; border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.pa-cta:hover { background: var(--red-bright); }

.pa-lesson {
  display: flex; align-items: center; gap: 0.7rem;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 1rem;
  cursor: pointer;
  text-align: left;
}
.pa-lesson:hover { background: var(--panel); }
.pa-lesson__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-3);
  width: 1.4rem;
  flex-shrink: 0;
}
.pa-lesson__body { flex: 1; min-width: 0; }
.pa-lesson__name { display: block; font-size: 0.8rem; font-weight: 600; line-height: 1.25; }
.pa-lesson__meta { display: block; font-size: 0.68rem; color: var(--gray-2); margin-top: 0.15rem; }
.pa-lesson__ic {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.pa-lesson--done .pa-lesson__ic { background: var(--green); border-color: var(--green); color: #062; }
.pa-lesson--done .pa-lesson__n { color: var(--green); }

.pa-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.pa-video__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.pa-video__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(229,9,20,0.92);
  border: 0;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.pa-video__bar {
  position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.6rem;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}
.pa-video__bar i { display: block; height: 100%; width: 34%; background: var(--red); border-radius: 3px; }
.pa-pl { padding: 0.9rem 1rem; }
.pa-pl__lesson { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.pa-pl__course { font-size: 0.74rem; color: var(--gray-2); margin-bottom: 0.85rem; }
.pa-pl__ctrl {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem;
  padding: 0.4rem 0 0.95rem;
  color: var(--gray);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.85rem;
}
.pa-pl__ctrl span { font-size: 0.8rem; }
.pa-pl__ctrl .pa-pl__big { font-size: 1.4rem; color: #fff; }
.pa-pl__nexttitle {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.pa-prof { text-align: center; padding: 1.1rem 1rem 0.6rem; }
.pa-prof__av {
  width: 64px; height: 64px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #7C1010);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}
.pa-prof__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.pa-prof__plan { font-size: 0.72rem; color: var(--red-bright); font-weight: 600; }
.pa-stats {
  display: flex;
  margin: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.pa-stat { flex: 1; text-align: center; padding: 0.7rem 0.3rem; }
.pa-stat + .pa-stat { border-left: 1px solid var(--line); }
.pa-stat__n { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--red-bright); }
.pa-stat__l { font-size: 0.62rem; color: var(--gray-2); }
.pa-menu { padding: 0.3rem 1rem 0.6rem; }
.pa-menu__i {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.3rem;
  font-size: 0.84rem;
  border-bottom: 1px solid var(--line);
}
.pa-menu__i span:first-child { color: var(--red-bright); }
.pa-menu__i span:last-child { margin-left: auto; color: var(--gray-3); }

/* =============================================================
   RECURSOS
   ============================================================= */
.feat {
  padding: clamp(4.5rem, 9vw, 8rem) var(--px);
  border-top: 1px solid var(--line);
}
.feat__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.feat__eyebrow {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.9rem;
}
.feat__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.feat__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .feat__grid { grid-template-columns: repeat(2, 1fr); } }
.feat__card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.9rem 1.7rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.feat__card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.55); }
.feat__card--hero { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 720px) {
  .feat__card--hero { grid-column: span 2; flex-direction: row; align-items: center; }
  .feat__card--rev { flex-direction: row-reverse; }
}
.feat__no {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-3);
}
.feat__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(229,9,20,0.15);
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.feat__icon svg { width: 24px; height: 24px; }
.feat__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}
.feat__card p { font-size: 0.95rem; color: var(--gray); line-height: 1.55; }
.feat__text { flex: 1; position: relative; }
.feat__mock {
  flex: 0 0 clamp(180px, 32%, 290px);
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  padding: 0.9rem;
  height: 180px;
}
.feat__mock--catalog { display: flex; flex-direction: column; gap: 0.55rem; }
.feat__mock-row {
  flex: 1; border-radius: 6px;
  background: linear-gradient(90deg,
    #B91C1C 0 22%, transparent 22% 24%,
    #2563EB 24% 46%, transparent 46% 48%,
    #7C3AED 48% 70%, transparent 70% 72%,
    #D97706 72% 94%);
}
.feat__mock-row:nth-child(2) { filter: hue-rotate(45deg); }
.feat__mock-row:nth-child(3) { filter: hue-rotate(-55deg); }
.feat__mock--stats { display: flex; align-items: flex-end; gap: 0.5rem; }
.feat__bar {
  flex: 1; height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
}

/* =============================================================
   BANDA
   ============================================================= */
.band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 820px) { .band { grid-template-columns: repeat(4, 1fr); } }
.band__item {
  background: var(--black);
  padding: clamp(2rem, 4vw, 3.25rem) 1.5rem;
  text-align: center;
}
.band__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.band__lbl { font-size: 0.9rem; color: var(--gray); }

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  padding: clamp(4.5rem, 9vw, 8rem) var(--px);
  max-width: 820px;
  margin: 0 auto;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 2.25rem;
  letter-spacing: -0.02em;
}
.faq__list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.faq__item[open] { border-color: rgba(229,9,20,0.5); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem; font-weight: 300;
  color: var(--red-bright);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--gray); line-height: 1.6; }

/* =============================================================
   CTA FINAL
   ============================================================= */
.end {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) var(--px);
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.end__glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  max-width: 130vw;
  background: radial-gradient(ellipse, rgba(229,9,20,0.34), transparent 65%);
  pointer-events: none;
}
.end__inner { position: relative; z-index: 1; }
.end__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.end__sub {
  max-width: 48ch;
  margin: 0 auto 2.25rem;
  color: var(--gray);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.end__actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   FOOTER
   ============================================================= */
.ft {
  border-top: 1px solid var(--line);
  padding: 3rem var(--px) 2.25rem;
}
.ft__inner { max-width: 1100px; margin: 0 auto; }
.ft__brand {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--red);
}
.ft__tag { color: var(--gray-2); font-size: 0.9rem; margin: 0.75rem 0 1.25rem; }
.ft__nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.ft__nav a { font-size: 0.88rem; color: var(--gray); transition: color 0.15s ease; }
.ft__nav a:hover { color: var(--white); }
.ft__nav a[aria-current="page"] { color: var(--red-bright); }
.ft__legal {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--gray-2);
}

/* =============================================================
   MODAL DE CURSO
   ============================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3.5rem) 1rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  width: min(880px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.95);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(10,10,10,0.85);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.modal__close:hover { background: #000; }
.modal__hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background-color: var(--panel-2);
  background-image: linear-gradient(135deg, var(--a, #7F1D1D), var(--b, #B91C1C));
  background-size: cover;
  background-position: center;
}
.modal__hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--panel) 2%, transparent 55%),
              linear-gradient(90deg, rgba(10,10,10,0.6), transparent 60%);
}
.modal__hero-content { position: relative; z-index: 1; }
.modal__cat {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--red);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}
.modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  max-width: 18ch;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.modal__actions { display: flex; align-items: center; gap: 0.6rem; }
.modal__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.6rem clamp(1.5rem, 4vw, 2.5rem) 0.5rem;
}
@media (min-width: 640px) { .modal__body { grid-template-columns: 1.6fr 1fr; } }
.modal__meta {
  display: flex; flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--gray);
}
.modal__meta .m-match { color: var(--green); font-weight: 700; }
.modal__meta .m-box {
  border: 1px solid var(--line-2);
  padding: 0.02rem 0.45rem;
  font-size: 0.76rem;
}
.modal__synopsis { color: #E2E2E2; line-height: 1.6; font-size: 0.97rem; }
.modal__side-row {
  font-size: 0.78rem;
  color: var(--gray-2);
  margin-bottom: 0.55rem;
}
.modal__learn { display: flex; flex-direction: column; gap: 0.4rem; }
.modal__learn li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: #E2E2E2;
  line-height: 1.4;
}
.modal__learn li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}
.modal__mods { padding: 0.5rem clamp(1.5rem, 4vw, 2.5rem) 2rem; }
.modal__mods-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1.2rem 0 0.85rem;
}
.modal__mods-title span { color: var(--gray-2); font-weight: 400; font-size: 0.95rem; }
.modal__mods-list { display: flex; flex-direction: column; }
.modal__mod {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0.5rem;
  border-top: 1px solid var(--line);
  transition: background 0.15s ease;
}
.modal__mod:hover { background: var(--panel-2); }
.modal__mod-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gray-3);
  width: 1.6em;
  text-align: center;
  flex-shrink: 0;
}
.modal__mod-body { flex: 1; min-width: 0; }
.modal__mod-name { display: block; font-size: 0.95rem; font-weight: 600; }
.modal__mod-sub { display: block; font-size: 0.8rem; color: var(--gray-2); margin-top: 0.1rem; }
.modal__mod-play {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =============================================================
   REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    gap: 0.4rem;
    padding: 6rem 2rem 2rem;
    background: var(--black);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    z-index: 790;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; padding: 0.5rem 0; }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; }
  .nav { gap: 1rem; }
  .bb__dots { bottom: 7.5rem; }
  .bb__scroll { display: none; }
  .bb__wall { width: 80vw; opacity: 0.5; }
  .rows { margin-top: -3rem; }
}
@media (max-width: 560px) {
  .nav__right .btn--sm { display: none; }
  .bb__giant { font-size: 56vw; }
}
