/* ============================================
   CBN Salvador IPTV — Cinema Streaming Dark
   Vibe: Netflix / Mubi / Plataforma de streaming premium
   Paleta: Preto profundo + Magenta/Roxo neon
   ============================================ */

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

:root {
  /* Backgrounds */
  --bg-deepest: #06060a;
  --bg-base: #0a0a12;
  --bg-card: #10101a;
  --bg-card-hover: #15152a;
  --bg-elevated: #1a1a2e;

  /* Lines & strokes */
  --line: #1a1a26;
  --line-strong: #2a2a3e;

  /* Text */
  --text: #e8e6f2;
  --text-secondary: #a5a3b8;
  --text-muted: #71718a;
  --text-faded: #4a4a5e;

  /* Neon accents */
  --neon-pink: #ec4899;
  --neon-purple: #a855f7;
  --neon-pink-soft: rgba(236, 72, 153, 0.12);
  --neon-purple-soft: rgba(168, 85, 247, 0.10);

  /* Status */
  --green: #10b981;
  --green-soft: rgba(16, 185, 129, 0.15);
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.15);
  --red: #ef4444;
  --red-soft: rgba(239, 68, 68, 0.15);

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 760px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deepest);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(236, 72, 153, 0.04), transparent);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease, opacity .15s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--neon-pink); color: #fff;
  padding: 12px 18px; z-index: 999;
  font-size: 0.88rem; font-weight: 500;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; top: 0; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 9px; height: 9px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--neon-pink), 0 0 28px rgba(236, 72, 153, 0.4);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

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

.logo span.brand-dot { color: var(--neon-pink); }

.nav-main {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-main a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color .15s ease;
}

.nav-main a:hover { color: #fff; }
.nav-main a.active { color: var(--neon-pink); }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-soft);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  background: var(--bg-card);
  color: var(--text);
  border-radius: 6px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 70px 0 50px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--neon-pink);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  line-height: 1.08;
}

.hero h1 .gradient {
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.5);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
  color: #fff;
}

.btn-cta-gold {
  background: var(--neon-pink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.btn-cta-gold:hover {
  background: #db2777;
  color: #fff;
}

/* Hero featured card (right side) */
.hero-featured {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.04) 50%, var(--bg-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}

.hero-featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.hero-featured .pick-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--neon-pink);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.hero-featured h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.025em;
}

.hero-featured .tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-featured .score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-featured .score-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-featured .score-value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-featured .score-max {
  font-size: 1rem;
  color: var(--text-faded);
  margin-left: 2px;
}

/* ============================================
   RANKING — GRID DE CARDS (estilo streaming)
   ============================================ */
.section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-header > div { max-width: 720px; }
.section-header h2 { margin-bottom: 8px; color: #fff; }
.section-header p { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.55; }

.section-link {
  font-size: 0.85rem;
  color: var(--neon-pink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.section-link:hover { color: var(--neon-purple); }

/* Grid de 7 cards (estilo "now playing") */
.streaming-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.stream-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
}

.stream-card:hover {
  transform: translateY(-2px);
  border-color: var(--text-faded);
  background: var(--bg-card-hover);
  color: inherit;
}

.stream-card.featured {
  grid-row: 1 / 3;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.08) 40%, var(--bg-card));
  border: 1px solid rgba(236, 72, 153, 0.3);
  padding: 26px;
}

.stream-card.featured::before {
  content: 'EDITOR\'S PICK';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--neon-pink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 3px;
}

.stream-rank {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 10px;
}

.stream-card.featured .stream-rank {
  color: var(--neon-pink);
}

.stream-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stream-card.featured .stream-name {
  font-size: 2rem;
  margin-bottom: 8px;
}

.stream-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 14px;
}

.stream-card.featured .stream-tagline {
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.5;
}

.stream-score-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.stream-card.featured .stream-score-row {
  border-top: 1px solid rgba(236, 72, 153, 0.2);
  padding-top: 16px;
}

.stream-price {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stream-card.featured .stream-price {
  font-size: 0.92rem;
}

.stream-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stream-card.featured .stream-score {
  font-size: 2.6rem;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stream-score-max {
  font-size: 0.85rem;
  color: var(--text-faded);
  font-weight: 600;
}

.stream-card.featured .stream-score-max {
  font-size: 1.2rem;
}

.stream-card.featured .featured-extras {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(236, 72, 153, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.featured-extra {
  text-align: center;
}

.featured-extra dt {
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.featured-extra dd {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

/* Comparativa rápida abaixo do grid */
.compare-cta {
  margin-top: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.compare-cta-text {
  flex: 1;
  min-width: 280px;
}

.compare-cta h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #fff;
}

.compare-cta p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================
   RANKING DETALHADO (lista completa)
   ============================================ */
.detailed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 60px 1fr 200px;
  gap: 24px;
  align-items: center;
  transition: border-color .2s ease, background .2s ease;
}

.detail-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}

.detail-card.is-top {
  border-color: rgba(236, 72, 153, 0.4);
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.08), transparent 40%);
}

.detail-rank {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.04em;
  font-family: var(--font-mono);
}

.detail-card.is-top .detail-rank {
  color: var(--neon-pink);
}

.detail-main h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
  letter-spacing: -0.02em;
}

.detail-main h3 a { color: inherit; }
.detail-main h3 a:hover { color: var(--neon-pink); }

.detail-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.detail-criteria {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.detail-criterion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-criterion-label {
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.detail-criterion-value {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.detail-score-panel {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-score-big {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
}

.detail-score-big strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.detail-card.is-top .detail-score-big strong {
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-score-big small {
  font-size: 0.95rem;
  color: var(--text-faded);
  font-weight: 600;
}

.detail-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.detail-actions .btn-mini {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all .15s ease;
}

.detail-actions .btn-mini-primary {
  background: var(--neon-pink);
  color: #fff;
}

.detail-actions .btn-mini-primary:hover {
  background: #db2777;
  color: #fff;
}

.detail-actions .btn-mini-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.detail-actions .btn-mini-ghost:hover {
  border-color: var(--text-muted);
  color: #fff;
}

/* ============================================
   CRITÉRIOS (cards)
   ============================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.criterion-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  transition: all .2s ease;
}

.criterion-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.criterion-card .weight {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--neon-pink-soft);
  color: var(--neon-pink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.criterion-card .ico {
  width: 38px; height: 38px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.criterion-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #fff;
}

.criterion-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   SOBRE (institucional)
   ============================================ */
.about-block {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 50px 50px;
  margin-top: 30px;
}

.about-block .lead-text {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-block .lead-text p { margin-bottom: 14px; }
.about-block .lead-text strong { color: #fff; font-weight: 600; }
.about-block .lead-text a { color: var(--neon-pink); }
.about-block .lead-text a:hover { color: var(--neon-purple); }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.about-pillar .ico {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--neon-pink-soft);
  color: var(--neon-pink);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.about-pillar h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.about-pillar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   PÁGINAS INTERNAS — Hero
   ============================================ */
.page-hero {
  padding: 50px 0 32px;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.breadcrumb a { color: var(--neon-pink); }
.breadcrumb a:hover { color: var(--neon-purple); }

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero > .container > p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.55;
}

/* ============================================
   REVIEW INDIVIDUAL
   ============================================ */
.review-summary {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.summary-stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}

.summary-stat dt {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.summary-stat dd {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.summary-stat dd strong { color: var(--neon-pink); }

.review-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* Body do review */
.review-body { padding: 50px 0; }

.review-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.review-prose h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.review-prose h2:first-child { margin-top: 0; }

.review-prose h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: #fff;
}

.review-prose p { margin-bottom: 16px; }
.review-prose ul, .review-prose ol { margin: 0 0 18px 24px; }
.review-prose li { margin-bottom: 6px; color: var(--text); }

.review-prose a {
  color: var(--neon-pink);
  border-bottom: 1px solid rgba(236, 72, 153, 0.3);
  font-weight: 500;
}

.review-prose a:hover {
  color: var(--neon-purple);
  border-bottom-color: var(--neon-purple);
}

.review-prose strong { color: #fff; font-weight: 600; }

.review-prose blockquote {
  border-left: 2px solid var(--neon-pink);
  padding: 10px 0 10px 22px;
  margin: 26px 0;
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
}

.review-prose blockquote strong { color: var(--neon-pink); }

/* Critérios detalhados na review */
.review-criteria {
  background: rgba(10, 10, 18, 0.5);
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.review-criterion {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.review-criterion-icon {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.review-criterion h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #fff;
}

.review-criterion p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.review-criterion-score {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
  min-width: 78px;
}

.review-criterion-score strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-criterion-score small {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

/* Alternativas */
.alternatives-section { padding: 50px 0; }

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.alt-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
}

.alt-card:hover {
  border-color: var(--neon-pink);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  color: inherit;
}

.alt-card .pos {
  font-size: 0.74rem;
  color: var(--neon-pink);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.alt-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.alt-card .score {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.alt-card .score strong {
  color: #fff;
  font-weight: 700;
}

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 36px 0;
  text-align: center;
  color: #fff;
}

.cta-box h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn-white {
  background: #fff;
  color: var(--neon-pink);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-block;
  transition: transform .2s ease;
}

.cta-box .btn-white:hover {
  transform: translateY(-1px);
  color: var(--neon-pink);
}

/* ============================================
   PROSE (páginas textuais)
   ============================================ */
.prose-section { padding: 50px 0; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.prose h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: #fff;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: #fff;
}

.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 6px; }

.prose a {
  color: var(--neon-pink);
  border-bottom: 1px solid rgba(236, 72, 153, 0.3);
  font-weight: 500;
}
.prose a:hover { color: var(--neon-purple); }

.prose strong { color: #fff; font-weight: 600; }

.prose blockquote {
  border-left: 2px solid var(--neon-pink);
  padding: 10px 0 10px 22px;
  margin: 24px 0;
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
}

.prose .callout {
  background: var(--bg-card);
  border-left: 2px solid var(--neon-pink);
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prose .callout strong { color: var(--neon-pink); }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease;
}

.faq-item:hover { border-color: var(--line-strong); }

.faq-item[open] { border-color: var(--neon-pink); }

.faq-item summary {
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--neon-pink);
  font-weight: 300;
  transition: transform .2s ease;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-content {
  padding: 0 22px 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Test table */
.test-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.92rem;
  margin: 24px 0;
}

.test-table thead {
  background: var(--bg-elevated);
}

.test-table th {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neon-pink);
}

.test-table td {
  padding: 14px;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.test-table tr:hover td { background: var(--bg-card-hover); }

.test-table strong { color: #fff; }

.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.disclosure-bar {
  background: var(--neon-pink-soft);
  border-top: 1px solid rgba(236, 72, 153, 0.2);
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
  padding: 14px 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-align: center;
}

.disclosure-bar a {
  color: var(--neon-pink);
  font-weight: 600;
}

.disclosure-bar strong { color: #fff; }

.site-footer {
  background: var(--bg-deepest);
  border-top: 1px solid var(--line);
  padding: 50px 0 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.86rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--neon-pink);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.86rem;
  transition: color .15s ease;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  color: var(--text-faded);
  font-size: 0.78rem;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .streaming-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .stream-card.featured { grid-row: auto; grid-column: 1 / -1; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .review-summary-grid { grid-template-columns: repeat(3, 1fr); }
  .review-criteria-grid { grid-template-columns: 1fr; }
  .alternatives-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .detail-card { grid-template-columns: 50px 1fr; gap: 18px; padding: 20px; }
  .detail-score-panel { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .detail-criteria { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 40px 0; }
  .hero { padding: 50px 0 30px; }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-base);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .nav-main.open { display: flex; }
  .nav-toggle { display: flex; }
  .streaming-grid { grid-template-columns: 1fr; }
  .stream-card.featured .featured-extras { grid-template-columns: 1fr; gap: 10px; }
  .detail-criteria { grid-template-columns: repeat(2, 1fr); }
  .review-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-block { padding: 32px 24px; }
  h1 { font-size: 1.7rem; }
}
