/* =========================================================
   Área de Membros — Dorama vertical (9:16), vídeo único
   Mesma paleta da LP. HTML/CSS/JS puro.
   ========================================================= */

:root {
  --bg: #0f1320;
  --bg-soft: #161b2b;
  --bg-media: #1c2236;
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-dim: #9aa3b5;
  --gold: #f5c542;
  --amber: #f5a623;
  --amber-ink: #1a1205;
  --red: #e01f2c;
  --radius: 16px;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  background-image: radial-gradient(120% 50% at 50% -8%, #1a2138 0%, var(--bg) 55%);
  background-attachment: fixed;
}

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

/* ===================== TOPBAR ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(15, 19, 32, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__logo {
  height: 64px;
  width: auto;
  display: block;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
}
.brand__logo {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(224, 31, 44, 0.8);
}
.brand__name { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand__name b { font-weight: 800; }
.badge-vip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--amber-ink);
  background: var(--amber);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===================== APP CONTAINER ===================== */
.app {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 18px 40px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 30px 26px 28px;
  border: 1px solid var(--border);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 70px -30px rgba(0, 0, 0, 0.85);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 16%;   /* foca os rostos e tira o título da arte de cena */
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
/* Variante com leve blur no fundo (banners cuja arte já tem texto) */
.hero--soft .hero__bg {
  background-position: center;
  filter: blur(5px) saturate(1.05) contrast(1.02) brightness(0.9);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    /* base escura embaixo: legibilidade + esconde o título embutido na arte */
    linear-gradient(180deg,
      rgba(15,19,32,0.42) 0%,
      rgba(15,19,32,0.06) 26%,
      rgba(15,19,32,0.80) 70%,
      rgba(15,19,32,0.985) 100%),
    /* escurece a esquerda para o texto respirar */
    linear-gradient(90deg,
      rgba(15,19,32,0.93) 0%,
      rgba(15,19,32,0.5) 52%,
      rgba(15,19,32,0.12) 100%),
    /* brilho sutil de marca na base */
    radial-gradient(75% 55% at 24% 118%, rgba(224,31,44,0.22), transparent 60%);
}
.hero__content { position: relative; max-width: 560px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(224, 31, 44, 0.9);
}
.hero__title {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-top: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero__synopsis {
  margin-top: 14px;
  color: #cdd4e0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__meta i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
  display: inline-block;
}

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 12px;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  margin-top: 22px;
  background: linear-gradient(180deg, #f0303d 0%, var(--red) 58%, #c81825 100%);
  color: #fff;
  box-shadow:
    0 16px 34px -12px rgba(224, 31, 44, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--primary:hover { filter: brightness(1.06); }

/* ===================== WATCH (player único) ===================== */
.watch { margin-top: 28px; }
.player-col {
  max-width: 340px;
  margin: 0 auto;          /* centraliza a coluna da VSL */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.player {
  position: relative;
  width: 100%;             /* 100% da coluna (largura definida) */
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px var(--border),
    0 22px 60px -24px rgba(224, 31, 44, 0.55),
    0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.player wistia-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.player wistia-player:not(:defined) {
  padding-top: 0; /* o container já define a proporção 9:16 */
}
.player__media,
.player iframe,
.player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}
.player__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.player__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 20px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(224, 31, 44, 0.8);
  animation: pulse 2.2s ease-in-out infinite;
}
.player__play svg { margin-left: 4px; }
.player__play:hover { transform: scale(1.06); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(224,31,44,0.6); }
  50% { box-shadow: 0 10px 42px -4px rgba(224,31,44,0.95); }
}
.player__hint {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding: 0 14px;
}
.player__hint b { color: var(--text); }

/* ===================== FOOTER ===================== */
.foot {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  padding: 36px 0 8px;
}

/* ===================== RESPONSIVO ===================== */
@media (min-width: 900px) {
  .player-col { max-width: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  .player__play, .hero__bg { animation: none; }
  html { scroll-behavior: auto; }
}
