/* =========================================================================
   MFLIX — componentes de página
   Depende dos tokens definidos em mflix.css.
   ========================================================================= */

/* ============================== LANDING ================================== */

.hero { position: relative; padding: clamp(48px, 7vw, 86px) 0 clamp(56px, 8vw, 92px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 20px 0 18px;
}
.hero h1 em { font-style: normal; color: var(--red-2); }

.hero-sub {
  max-width: 44ch;
  font-size: clamp(15.5px, 1.3vw, 18px);
  color: var(--text-2);
  line-height: 1.65;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--green); flex: none; }

/* Painel do hero: um "telão" que sugere o produto sem precisar de captura. */
.hero-screen {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 22%, #1d3a2c 0%, #14202a 42%, #0a0e15 78%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .95);
}

/* Linhas de varredura: dá textura de transmissão. */
.hero-screen::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .016) 3px 4px);
  pointer-events: none;
}

.screen-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #93a3b5;
}

.screen-title {
  position: absolute;
  top: clamp(56px, 9%, 84px);
  left: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}
.screen-title span { color: #a8e86a; }

/* Campo em perspectiva, desenhado em CSS puro. */
.pitch {
  position: absolute;
  left: 10%; right: 10%;
  top: 46%;
  height: 34%;
  border: 1px solid rgba(190, 235, 150, .28);
  transform: perspective(340px) rotateX(44deg);
  background: repeating-linear-gradient(90deg,
    rgba(130, 190, 95, .07) 0 38px, rgba(160, 210, 105, .11) 38px 76px);
}
.pitch::after {
  content: '';
  position: absolute; left: 50%; top: 0;
  height: 100%;
  border-left: 1px solid rgba(190, 235, 150, .34);
}
.pitch i {
  position: absolute;
  width: 62px; height: 62px;
  left: calc(50% - 31px); top: calc(50% - 31px);
  border: 1px solid rgba(190, 235, 150, .34);
  border-radius: 50%;
}
.pitch b, .pitch em {
  position: absolute; top: 28%; height: 44%; width: 14%;
  border: 1px solid rgba(190, 235, 150, .34);
}
.pitch b { left: 0; }
.pitch em { right: 0; }

.screen-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(10, 14, 20, .9);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.screen-bottom .ic {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-2);
  color: #a8e86a;
  flex: none;
}
.screen-bottom strong { display: block; font-size: 12.5px; }
.screen-bottom small { font-size: 10.5px; color: var(--muted); }

/* Faixa de números */
.strip { border-block: 1px solid var(--line); background: var(--bg-soft); }
.strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: 26px;
}
.strip-item { display: flex; align-items: center; gap: 13px; }
.strip-item .ic {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 67, 38, .1);
  border: 1px solid rgba(255, 67, 38, .22);
  color: var(--red-2);
  flex: none;
}
.strip-item strong { display: block; font-family: var(--font-display); font-size: 19px; }
.strip-item span { font-size: 12.5px; color: var(--muted); }

/* Blocos de valor */
.section-title { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.045em; margin: 16px 0 12px; }
.section-lead { max-width: 56ch; color: var(--muted); font-size: 15.5px; margin-bottom: 40px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.feature:hover { border-color: rgba(255, 67, 38, .38); transform: translateY(-3px); }
.feature .ic { color: var(--red-2); margin-bottom: 15px; display: inline-flex; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { padding: 26px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.step .num {
  display: block;
  margin-bottom: 13px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--red-2);
}
.step h3 { font-size: 16.5px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); }

/* ------------------------------- Planos ---------------------------------- */

.plans-section { background: var(--bg-soft); border-block: 1px solid var(--line); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

/* O plano em destaque precisa se separar dos outros à primeira vista. */
.price-card.featured {
  border-color: rgba(255, 67, 38, .55);
  background: linear-gradient(165deg, rgba(255, 67, 38, .13), var(--surface) 62%);
  box-shadow: 0 22px 60px -26px rgba(255, 67, 38, .6);
}

.plan-tag {
  display: block;
  min-height: 20px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--red-2);
}
.price-card h3 { font-size: 18px; margin-top: 4px; }

.cost {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 3px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.cost small { font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--muted); }

.price-card > p { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.price-card .btn { margin-top: auto; }

.pricing-caption { margin-top: 20px; font-size: 12.5px; color: var(--muted); }

.plan-list { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; }
.plan-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.plan-list .tick {
  display: grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(52, 209, 127, .15);
  color: var(--green);
  flex: none;
  margin-top: 2px;
}

/* ---------------------------------- FAQ ---------------------------------- */

.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-size: 15.5px; font-weight: 600; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--red-2); line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; font-size: 14.5px; color: var(--muted); max-width: 68ch; }

/* ------------------------------ Chamada final ----------------------------- */

.final-cta {
  margin: 20px auto 70px;
  padding: clamp(46px, 7vw, 76px) 24px;
  border: 1px solid rgba(255, 67, 38, .34);
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255, 67, 38, .2), var(--surface) 68%);
  text-align: center;
}
.final-cta h2 { font-size: clamp(32px, 5.2vw, 58px); letter-spacing: -.055em; margin: 16px 0 14px; }
.final-cta p { max-width: 48ch; margin: 0 auto 28px; color: var(--text-2); }

/* ============================ CARTÕES DE CONTEÚDO ========================= */

.match-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.match-card:hover { border-color: var(--line-2); transform: translateY(-3px); }

.match-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.match-league { display: flex; align-items: center; gap: 8px; min-width: 0; }
.match-league img { width: 18px; height: 18px; object-fit: contain; flex: none; }
.match-league span {
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.match-time { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); white-space: nowrap; }

.match-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
.team { display: flex; flex-direction: column; align-items: center; gap: 9px; min-width: 0; }
.team img { width: 46px; height: 46px; object-fit: contain; }
.team-name {
  font-size: 12.5px; font-weight: 600; text-align: center; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.match-vs { font-family: var(--font-display); font-size: 12px; font-weight: 800; color: var(--muted); }

.channel-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color .18s var(--ease), transform .18s var(--ease), background .18s var(--ease);
}
.channel-card:hover { border-color: rgba(255, 67, 38, .4); background: var(--surface-2); transform: translateY(-3px); }

.channel-logo {
  display: grid; place-items: center;
  height: 62px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
}
.channel-logo img { max-height: 42px; max-width: 78%; object-fit: contain; }

.channel-name {
  font-size: 13.5px; font-weight: 650;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.channel-epg {
  font-size: 11.5px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Grades */
.grid-matches { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 15px; }
.grid-channels { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 13px; }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 1fr);
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }

/* Barra de ferramentas / filtros */
.toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.push-right { margin-left: auto; }

.search-box { position: relative; flex: 1; min-width: 210px; max-width: 420px; display: flex; align-items: center; }
.search-box svg { position: absolute; left: 14px; color: var(--muted); pointer-events: none; }
.search-box .input { padding-left: 42px; }

.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 8px 15px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.pill:hover { color: var(--text); border-color: var(--line-2); }
.pill.active { background: var(--grad-red); border-color: transparent; color: #fff; box-shadow: var(--glow-red); }

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head h2 { font-size: 22px; }

/* ============================ PAINEL DO CLIENTE =========================== */

.status-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  margin-bottom: 26px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, rgba(255, 67, 38, .12), var(--surface) 58%);
}
.status-card h2 { font-size: 26px; margin: 12px 0 8px; }
.status-card p { color: var(--text-2); font-size: 14.5px; }
.status-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 34px; }

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
}
.stat .ic {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 67, 38, .1);
  border: 1px solid rgba(255, 67, 38, .2);
  color: var(--red-2);
  flex: none;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 21px; line-height: 1.2; }
.stat span { font-size: 12.5px; color: var(--muted); }

.info-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.info-row:last-child { border-bottom: 0; }
.info-row span { color: var(--muted); }

/* ============================ PAINEL DO CLIENTE REDESENHADO =========================== */

.dash-hero-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 67, 38, .35);
  background: radial-gradient(ellipse 90% 80% at 20% 0%, rgba(255, 67, 38, .18) 0%, rgba(17, 21, 29, .95) 65%, var(--bg) 100%);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .9), 0 0 40px -10px rgba(255, 67, 38, .2);
  overflow: hidden;
}
.dash-hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.dash-hero-title {
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing: -.045em;
  margin-bottom: 10px;
}
.dash-hero-sub {
  font-size: clamp(14px, 1.4vw, 16.5px);
  color: var(--text-2);
  max-width: 65ch;
  line-height: 1.6;
}

/* Grid de Hubs de Acesso Rápido */
.dash-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.dash-hub-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.dash-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 67, 38, .5);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, .8);
}
.dash-hub-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-2);
  color: var(--text);
  transition: background .2s ease, color .2s ease;
}
.dash-hub-card:hover .dash-hub-icon {
  background: var(--grad-red);
  color: #fff;
  border-color: transparent;
}
.dash-hub-info {
  flex: 1;
  min-width: 0;
}
.dash-hub-tag {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--red-2);
  margin-bottom: 2px;
}
.dash-hub-info h3 {
  font-size: 16px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-hub-info p {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-hub-arrow {
  font-size: 20px;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
.dash-hub-card:hover .dash-hub-arrow {
  transform: translateX(4px);
  color: var(--red-2);
}

/* Banner de Download do APK */
.dash-apk-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(52, 209, 127, .3);
  background: linear-gradient(135deg, rgba(52, 209, 127, .1) 0%, var(--surface) 60%);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.dash-apk-banner:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}
.dash-apk-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(52, 209, 127, .15);
  border: 1px solid rgba(52, 209, 127, .3);
  color: var(--green);
  display: grid;
  place-items: center;
  flex: none;
}
.dash-apk-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 3px;
}
.dash-apk-text h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.dash-apk-text p {
  font-size: 13.5px;
  color: var(--text-2);
}
@media (max-width: 640px) {
  .dash-apk-banner { flex-direction: column; text-align: center; }
  .dash-apk-banner .btn { margin-left: 0 !important; width: 100%; }
}

/* ============================== ASSINATURA =============================== */

.checkout-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; align-items: start; }

.pix-panel {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  background: var(--surface);
}

.pix-state { display: none; flex-direction: column; align-items: center; gap: 15px; text-align: center; width: 100%; }
.pix-state.active { display: flex; }

.qr-frame { padding: 14px; border-radius: var(--r-md); background: #fff; }
.qr-frame img { width: min(280px, 68vw); height: auto; display: block; }

.pix-hint { font-size: 13.5px; color: var(--muted); }

.pix-code {
  width: 100%;
  max-height: 9em;
  overflow-y: auto;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg-soft);
}
.pix-code code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 11.5px; color: var(--text-2); word-break: break-all; }

.pix-timer { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.pix-actions { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }

.pix-fallback {
  margin-top: 4px;
  border: 0; background: none;
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.pix-fallback:hover { color: var(--text-2); }

.success-ring {
  display: grid; place-items: center;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(52, 209, 127, .14);
  border: 1px solid rgba(52, 209, 127, .4);
  color: var(--green);
}

.summary-card { position: sticky; top: calc(var(--header-h) + 16px); }
.summary-row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; }
.summary-total b { font-family: var(--font-display); font-size: 27px; }

/* Escolha de período */
.planos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }

.plano {
  position: relative;
  display: flex; flex-direction: column; gap: 3px;
  padding: 17px 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  transition: all .17s var(--ease);
}
.plano:hover { border-color: var(--line-2); transform: translateY(-2px); }
.plano.ativo {
  border-color: var(--red-2);
  background: linear-gradient(180deg, rgba(255, 67, 38, .14), var(--surface) 70%);
  box-shadow: 0 0 0 1px rgba(255, 67, 38, .32);
}
.plano-nome  { font-size: 12.5px; color: var(--muted); }
.plano-preco { font-family: var(--font-display); font-size: 22px; font-weight: 750; letter-spacing: -.03em; }
.plano-mes   { font-size: 11.5px; color: var(--muted); }
.plano-selo {
  position: absolute; top: -9px; right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--grad-red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 750;
}

/* ================================ ADMIN ================================== */

.table-card { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; min-width: 720px; }
.table th, .table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.table th { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.table td { font-size: 14px; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: rgba(255, 255, 255, .022); }

.cell-user { display: flex; align-items: center; gap: 11px; }
.cell-user strong { display: block; font-size: 14px; }
.cell-user span { font-size: 12.5px; color: var(--muted); }

.row-actions { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

.mini-btn {
  padding: 6px 11px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.mini-btn:hover:not(:disabled) { background: rgba(255, 255, 255, .09); color: var(--text); }
.mini-btn:disabled { opacity: .4; cursor: not-allowed; }
.mini-btn.primary { background: var(--grad-red); border-color: transparent; color: #fff; }
.mini-btn.danger:hover:not(:disabled) { background: rgba(255, 67, 38, .16); border-color: rgba(255, 67, 38, .45); color: var(--red-2); }

.gw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.gw-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.gw-card.is-default { border-color: rgba(255, 67, 38, .45); box-shadow: 0 0 0 1px rgba(255, 67, 38, .16); }
.gw-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.gw-head strong { font-size: 16px; }
.gw-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 14px 0; margin-bottom: 16px;
  border-block: 1px solid var(--line);
}
.gw-stats div { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gw-stats b { font-family: var(--font-display); font-size: 17px; }
.gw-stats span { font-size: 11px; color: var(--muted); }
.gw-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================ ELEMENTOS FLUTUANTES ======================== */

.support-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #33a8e0, #1d8ac4);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 12px 34px -10px rgba(46, 166, 224, .8);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.support-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(46, 166, 224, .95); }
.support-fab svg { flex: none; }

body:has(:fullscreen) .support-fab { display: none; }
body:has(:-webkit-full-screen) .support-fab { display: none; }
body:has(.welcome-backdrop) .support-fab { display: none; }

.footer-telegram { display: inline-flex; align-items: center; gap: 7px; }
.footer-telegram svg { color: #33a8e0; flex: none; }

/* Chamada para baixar o app */
.app-baixar {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: all .18s var(--ease);
}
.app-baixar:hover { border-color: rgba(255, 67, 38, .45); background: var(--surface-2); transform: translateY(-2px); }
.app-baixar svg { color: var(--red-2); flex: none; }
.app-baixar span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.app-baixar strong { font-size: 14.5px; }
.app-baixar em { font-style: normal; font-size: 12.5px; color: var(--muted); }
.app-baixar-larga { display: flex; width: 100%; margin-bottom: 26px; }

/* Aviso de manutenção */
.manutencao {
  position: sticky; top: 0; z-index: 950;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 18px;
  background: linear-gradient(90deg, #8a4200, #c06500);
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.manutencao svg { flex: none; }

/* ------------------------------- Responsivo ------------------------------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-screen { max-width: 560px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 760px) {
  .planos { grid-template-columns: repeat(2, 1fr); }
  .status-card { grid-template-columns: 1fr; padding: 24px; }
  .status-art { display: none; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 40px; }
  .hero-cta .btn { width: 100%; }
  .grid-channels { grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 10px; }
  .grid-matches { grid-template-columns: 1fr; }
  .pix-panel { padding: 22px 16px; min-height: 0; }
  .price-card { padding: 20px 16px; }
  .cost { font-size: 33px; }
  .final-cta { margin-bottom: 44px; }
  .support-fab { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); padding: 12px; gap: 0; }
  .support-fab span { display: none; }
  body:has(.proof.show) .support-fab { transform: translateY(-104px); }
  .app-baixar { width: 100%; }
  .manutencao { font-size: 12.5px; align-items: flex-start; text-align: left; }
}

/* ============================ LOGIN E CADASTRO =========================== */

/* Duas colunas: o formulário à esquerda e a prova de valor à direita.
   No celular a coluna de apoio sai — ali só atrapalharia quem quer entrar. */
.auth-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.auth-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(22px, 5vw, 64px);
}

.auth-box { width: 100%; max-width: 400px; margin-inline: auto; }
.auth-box h1 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 8px; }
.auth-box .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 30px; }

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}
.auth-back:hover { color: var(--text); }

.auth-foot { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }
.auth-foot a { color: var(--red-2); font-weight: 650; }

.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  font-size: 12px;
  color: var(--muted);
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Olho de mostrar/ocultar senha. */
.input-toggle {
  position: absolute;
  right: 8px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 9px;
  background: none;
  color: var(--muted);
  cursor: pointer;
}
.input-toggle:hover { color: var(--text); background: rgba(255, 255, 255, .06); }

.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-2); }
.checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--red); flex: none; }

/* Coluna de apoio */
.auth-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 48px clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 70% 12%, rgba(255, 67, 38, .16), transparent 68%),
    var(--bg-soft);
  overflow: hidden;
}

.auth-aside-art { color: var(--red-2); }
.auth-aside-art svg { width: 100%; height: auto; max-width: 340px; }

.auth-points { display: grid; gap: 20px; list-style: none; margin: 0; padding: 0; }

.auth-point { display: flex; align-items: flex-start; gap: 13px; }
.auth-point svg { color: var(--green); flex: none; margin-top: 2px; }
.auth-point strong { display: block; font-size: 15px; margin-bottom: 3px; }
.auth-point span { font-size: 13.5px; color: var(--muted); }

@media (max-width: 900px) {
  .auth-page { grid-template-columns: 1fr; min-height: auto; }
  .auth-aside { display: none; }
  .auth-main { padding: 30px 22px 50px; min-height: 100vh; }
}

/* ============================ Blocos de informação ======================== */

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

/* ========================= Animações das ilustrações ===================== */

@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ring-pulse { 0% { transform: scale(.85); opacity: .55; } 100% { transform: scale(1.35); opacity: 0; } }

.art-float      { animation: float-y 6s ease-in-out infinite; }
.art-float-slow { animation: float-y 8s ease-in-out infinite; }
.art-ring       { transform-origin: center; animation: ring-pulse 3.2s ease-out infinite; }
.art-ring-2     { animation-delay: 1.1s; }

/* ========================= CARD DE BOAS-VINDAS =========================== */
/* Marcação gerada pelo social-proof.js — por isso não aparece em nenhum HTML. */

.welcome-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 6, 10, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
  animation: fade-in .22s var(--ease);
}
@keyframes fade-in { from { opacity: 0; } }

.welcome-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: auto;
  padding: 32px 30px 26px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 80% 60% at 50% -8%, rgba(255, 67, 38, .22), transparent 70%),
    var(--surface);
  box-shadow: 0 40px 90px -24px rgba(0, 0, 0, .9);
  animation: card-in .3s var(--ease);
}
@keyframes card-in { from { opacity: 0; transform: translateY(16px) scale(.97); } }

.welcome-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.welcome-close:hover { background: rgba(255, 255, 255, .1); color: var(--text); }

.welcome-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 67, 38, .4);
  border-radius: 999px;
  background: rgba(255, 67, 38, .12);
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: .12em;
  color: var(--red-2);
}
.welcome-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-2);
  animation: pulse 1.8s infinite;
}

.welcome-title { font-size: clamp(24px, 4.6vw, 30px); line-height: 1.15; margin: 16px 0 10px; }
.welcome-sub { font-size: 14px; color: var(--muted); line-height: 1.6; }

.welcome-perks { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; }
.welcome-perks li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-2); }

.wperk-ico {
  display: grid; place-items: center;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(52, 209, 127, .16);
  color: var(--green);
  flex: none;
}

/* Preço e selo do Pix lado a lado: valor e forma de pagamento na mesma olhada. */
.welcome-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-soft);
}

.welcome-price-badge { display: flex; align-items: baseline; gap: 3px; }
.wpr-cur { font-size: 14px; font-weight: 600; color: var(--muted); }
.wpr-val { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.wpr-per { font-size: 12.5px; color: var(--muted); margin-left: 4px; }

.welcome-pix-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(52, 209, 127, .35);
  border-radius: 999px;
  background: rgba(52, 209, 127, .1);
  font-size: 12px;
  font-weight: 650;
  color: var(--green);
}
.welcome-pix-tag svg { flex: none; }

.welcome-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  font-size: 11.5px;
  color: var(--muted);
}
.welcome-divider::before, .welcome-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.welcome-form { display: grid; gap: 10px; }

.w-field { position: relative; display: flex; align-items: center; }
.w-field-ico { position: absolute; left: 14px; display: flex; color: var(--muted); pointer-events: none; }
.w-input { padding-left: 42px; }

.w-error {
  display: none;
  padding: 10px 13px;
  border: 1px solid rgba(255, 67, 38, .4);
  border-radius: 10px;
  background: rgba(255, 67, 38, .1);
  font-size: 13px;
  color: #ffb3a3;
}
.w-error.show { display: block; }

.welcome-cta { width: 100%; min-height: 52px; margin-top: 4px; font-size: 15.5px; }

.welcome-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}
.welcome-secure svg { color: var(--green); flex: none; }

.welcome-foot {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.welcome-foot a { color: var(--red-2); font-weight: 650; }
.welcome-sep { margin: 0 7px; opacity: .5; }

.welcome-skip {
  border: 0;
  background: none;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.welcome-skip:hover { color: var(--text-2); }

/* ====================== NOTIFICAÇÃO DE PROVA SOCIAL ====================== */

.proof {
  position: fixed;
  left: 18px; bottom: 18px;
  z-index: 880;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(340px, calc(100vw - 36px));
  padding: 11px 13px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: var(--surface-2);
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, .9);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  pointer-events: none;
}
.proof.show { opacity: 1; transform: none; pointer-events: auto; }

.proof-ava { position: relative; flex: none; }
.proof-img, .proof-ava-fb {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.proof-ava-fb {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}
.proof-green-dot {
  position: absolute;
  right: -1px; bottom: -1px;
  width: 12px; height: 12px;
  border: 2px solid var(--surface-2);
  border-radius: 50%;
  background: var(--green);
}

.proof-cnt { min-width: 0; flex: 1; }
.proof-row1 { display: flex; align-items: baseline; gap: 8px; }
.proof-nm { font-size: 13.5px; font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proof-ci { font-size: 11px; color: var(--muted); white-space: nowrap; }

.proof-row2 { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.proof-check { display: flex; color: var(--green); flex: none; }
.proof-txt { font-size: 12.5px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proof-ago { font-size: 11px; color: var(--muted); white-space: nowrap; }

.proof-x {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: none;
  color: var(--muted);
  cursor: pointer;
  flex: none;
  opacity: .6;
  transition: opacity .15s, background .15s;
}
.proof-x:hover { opacity: 1; background: rgba(255, 255, 255, .08); }

/* Cabeçalho ganha fundo sólido quando a página rola. */
.site-header.solid { background: rgba(7, 9, 13, .97); }

@media (max-width: 560px) {
  .welcome-card { padding: 26px 20px 22px; }
  .welcome-title { font-size: 22px; }
  .welcome-perks li { font-size: 13px; }
  .proof { left: 12px; right: 12px; width: auto; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
}

/* ========================== CATÁLOGO (FILMES/SÉRIES) ===================== */

/* Categorias rolam na horizontal: são 22 em filmes e 29 em séries. */
.cat-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 22px;
  scrollbar-width: thin;
}
.cat-scroll .pill { flex: none; }
.cat-scroll::-webkit-scrollbar { height: 5px; }

.grid-posters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.poster {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: transform .18s var(--ease);
}
.poster:hover { transform: translateY(-4px); }

.poster-capa {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.poster-capa img { width: 100%; height: 100%; object-fit: cover; }
.poster-capa.sem-capa img { display: none; }
.poster:hover .poster-capa { border-color: rgba(255, 67, 38, .5); }

.poster-nota {
  position: absolute;
  top: 8px; right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(7, 9, 13, .85);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
}

.poster-nome {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.poster-ano { font-size: 12px; color: var(--muted); }

/* Paginação: com 1.500 páginas, só uma janela em volta da atual. */
.paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 34px 0 10px;
}

.pg {
  min-width: 38px;
  height: 38px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.pg:hover:not(:disabled):not(.atual) { background: rgba(255, 255, 255, .09); color: var(--text); }
.pg:disabled { opacity: .35; cursor: not-allowed; }
.pg.atual { background: var(--grad-red); border-color: transparent; color: #fff; }
.pg-gap { padding: 0 4px; color: var(--muted); }

/* --------------------------- Detalhe do título --------------------------- */

.detalhe-fundo {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: start center;
  padding: 24px 16px;
  background: rgba(4, 6, 10, .85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
  animation: fade-in .2s var(--ease);
}

.detalhe {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: auto;
  padding: 28px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: 0 40px 90px -24px rgba(0, 0, 0, .9);
  animation: card-in .28s var(--ease);
}

.detalhe-x {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
}
.detalhe-x:hover { background: rgba(255, 255, 255, .1); color: var(--text); }

.detalhe-topo { display: grid; grid-template-columns: 170px 1fr; gap: 22px; }

.detalhe-capa {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.detalhe-info h2 { font-size: clamp(21px, 3vw, 27px); padding-right: 40px; }

.detalhe-ficha { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 10px 0 14px; font-size: 13px; color: var(--muted); }
.detalhe-ficha span { display: inline-flex; align-items: center; gap: 5px; }
.detalhe-ficha svg { color: var(--amber); }

.detalhe-sinopse { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.detalhe-elenco { margin-top: 12px; font-size: 13px; color: var(--muted); }
.detalhe-elenco strong { color: var(--text-2); }

.detalhe-corpo { margin-top: 24px; }
.detalhe-secao { font-size: 15px; margin-bottom: 12px; }
.fontes { display: flex; gap: 9px; flex-wrap: wrap; }

/* ------------------------- Temporadas e episódios ------------------------ */

.temporada { border-top: 1px solid var(--line); }
.temporada summary {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}
.temporada summary::-webkit-details-marker { display: none; }
.temporada summary::after { content: '+'; float: right; color: var(--red-2); font-size: 19px; line-height: 1; }
.temporada[open] summary::after { content: '−'; }

.episodios { display: grid; gap: 7px; padding-bottom: 14px; }

.episodio {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: all .15s var(--ease);
}
.episodio:hover:not(:disabled) { border-color: rgba(255, 67, 38, .45); background: var(--surface-3); }
.episodio:disabled { opacity: .45; cursor: not-allowed; }
.episodio svg { margin-left: auto; color: var(--red-2); flex: none; }

.ep-num {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  flex: none;
}
.ep-txt { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ep-txt strong { font-size: 13.5px; font-weight: 600; }
.ep-txt span { font-size: 11.5px; color: var(--muted); }

/* -------------------------------- Player --------------------------------- */

.player-box { margin-top: 20px; border-radius: var(--r-md); overflow: hidden; background: #000; }
.player-box video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; }

@media (max-width: 620px) {
  .detalhe { padding: 22px 16px; }
  .detalhe-topo { grid-template-columns: 110px 1fr; gap: 15px; }
  .grid-posters { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 11px; }
  .poster-nome { font-size: 12.5px; }
}

/* ===================== REPRODUÇÃO DE FILME E SÉRIE ====================== */

.assistir-vod { padding-top: 22px; }
.assistir-vod .auth-back { margin-bottom: 18px; }

/* Em série a lista de episódios acompanha o player; em filme ela não existe
   e o grid vira uma coluna só, sem precisar de regra extra. */
.vod-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.vod-grid:has(.vod-side:not(.hidden)) { grid-template-columns: minmax(0, 1fr) 330px; }

.vod-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .95);
}
.vod-player video { width: 100%; height: 100%; display: block; background: #000; }

/* Camada de estado por cima do vídeo (carregando, erro, sem fonte). */
.vod-layer {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: rgba(7, 9, 13, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vod-layer.show { display: flex; }
.vod-layer-art { color: var(--red-2); }
.vod-layer h2 { font-size: 19px; }
.vod-layer p { font-size: 14px; color: var(--muted); max-width: 44ch; }
.vod-layer-actions { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

.vod-head { margin-top: 22px; }
.vod-head h1 { font-size: clamp(23px, 3.2vw, 32px); margin-bottom: 10px; }
.vod-head .detalhe-sinopse { margin-top: 12px; max-width: 76ch; }

.vod-fontes { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 20px; }
.vod-fontes-label {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}

/* ------------------------------ Episódios -------------------------------- */

.vod-side {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.vod-side-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.vod-side-head h2 { font-size: 15px; flex: none; }
.vod-temporada { min-height: 38px; padding: 0 10px; font-size: 13px; margin-left: auto; max-width: 170px; }

.vod-eps { display: grid; gap: 6px; padding: 12px; max-height: 62vh; overflow-y: auto; }

/* O episódio em reprodução precisa se distinguir na lista. */
.episodio.tocando {
  border-color: var(--red-2);
  background: linear-gradient(180deg, rgba(255, 67, 38, .16), var(--surface-2) 70%);
}
.episodio.tocando .ep-num { background: var(--grad-red); color: #fff; }

@media (max-width: 980px) {
  .vod-grid:has(.vod-side:not(.hidden)) { grid-template-columns: 1fr; }
  .vod-side { position: static; }
  .vod-eps { max-height: none; }
}

@media (max-width: 560px) {
  .assistir-vod { padding-top: 14px; }
  .vod-player { border-radius: var(--r-md); }
  .vod-side-head { flex-wrap: wrap; }
  .vod-temporada { margin-left: 0; max-width: none; width: 100%; }
}

/* =========================================================================
   DESIGN OVERHAUL — VITRINE, CONVERSÃO E PROVA SOCIAL
   ========================================================================= */

/* Hero Glow & Badges */
.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px -4px rgba(255, 67, 38, .75);
  animation: pulse-glow 2.2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px -4px rgba(255, 67, 38, .7); transform: scale(1); }
  50% { box-shadow: 0 0 35px 4px rgba(255, 67, 38, .95); transform: scale(1.02); }
}

.badge-gold {
  border-color: rgba(255, 185, 45, .4);
  background: rgba(255, 185, 45, .12);
  color: #ffc233;
}
.badge-4k {
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 4px;
}

/* Cinema Hero Mockup Screen */
.hero-screen-cinema {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(ellipse 90% 70% at 50% 0%, #151d2c 0%, #0c1017 60%, #06080d 100%);
  overflow: hidden;
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, .95), 0 0 60px -15px rgba(255, 67, 38, .2);
}
.hero-screen-cinema::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 8, 13, .85) 100%);
  pointer-events: none;
}
.cinema-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.cinema-cards-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  position: relative;
  z-index: 1;
}
.cinema-mini-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2 / 2.9;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .8);
  transition: transform .2s ease;
}
.cinema-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cinema-mini-card .mini-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .85);
  color: #ffc233;
}
.cinema-mini-card .mini-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 8px 6px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .95) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.cinema-screen-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(14, 18, 26, .9);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.cinema-bottom-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cinema-bottom-info .live-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.5s infinite;
}

/* Vitrine de Conteúdo Interativa */
.showcase-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  scrollbar-width: thin;
}
.showcase-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .04);
  color: var(--text-2);
  font-weight: 650;
  font-size: 13.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .16s ease;
}
.showcase-tab:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}
.showcase-tab.active {
  background: var(--grad-red);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-red);
}

.showcase-panel {
  display: none;
}
.showcase-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.showcase-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 67, 38, .5);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, .9);
}
.showcase-card-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--surface-2);
}
.showcase-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.showcase-card:hover .showcase-card-thumb img {
  transform: scale(1.06);
}
.showcase-card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.showcase-card-body {
  padding: 12px 14px;
}
.showcase-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.showcase-card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Compatibilidade com Dispositivos */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.device-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.device-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 67, 38, .4);
}
.device-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(255, 67, 38, .1);
  border: 1px solid rgba(255, 67, 38, .2);
  color: var(--red-2);
  display: grid;
  place-items: center;
}
.device-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.device-card p {
  font-size: 13px;
  color: var(--muted);
}

/* Comparativo MFLIX vs TV a Cabo */
.compare-container {
  margin-top: 32px;
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--surface-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.compare-table th.mflix-col, .compare-table td.mflix-col {
  background: rgba(255, 67, 38, .07);
  color: #fff;
}
.compare-table th.mflix-col {
  border-top: 3px solid var(--red);
}
.check-yes {
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.check-no {
  color: #8893a4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Depoimentos / Avaliações */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.testimonial-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars-row {
  color: #ffb020;
  display: flex;
  gap: 3px;
}
.testimonial-quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-3);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--red-2);
  font-size: 13px;
  border: 1px solid var(--line-2);
}
.author-info strong {
  display: block;
  font-size: 13px;
}
.author-info small {
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Barra Fixa Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 15, 23, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 67, 38, .35);
  padding: 12px 18px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .8);
}
.sticky-mobile-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-price-info {
  line-height: 1.2;
}
.sticky-price-info span {
  font-size: 11px;
  color: var(--muted);
}
.sticky-price-info strong {
  font-size: 16px;
  font-family: var(--font-display);
  color: #fff;
  display: block;
}

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  .cinema-cards-shelf { grid-template-columns: repeat(2, 1fr); }
  .showcase-panel.active { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  body { padding-bottom: 74px; }
}


/* ==========================================================================
   DESIGN STREAMING ULTRA-MODERNO (DASHBOARD, JOGOS & APP MFLIX)
   ========================================================================== */

/* Hero Spotlight Cinema */
.dash-spotlight-hero {
  position: relative;
  border-radius: 20px;
  background: radial-gradient(circle at 10% 20%, rgba(255, 67, 38, 0.18), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(255, 176, 32, 0.10), transparent 50%),
              linear-gradient(135deg, #0d121c 0%, #07090e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 38px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dash-spotlight-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 67, 38, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.dash-spotlight-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.dash-hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge-gold {
  background: linear-gradient(135deg, rgba(255, 176, 32, 0.2), rgba(255, 140, 0, 0.25));
  color: #ffb833;
  border: 1px solid rgba(255, 184, 51, 0.4);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-4k {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
}

.dash-spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.dash-spotlight-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.dash-action-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Quick Hub Cards - Modern Glassmorphism */
.dash-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

@media (max-width: 1024px) {
  .dash-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .dash-hub-grid { grid-template-columns: 1fr; }
}

.dash-hub-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.dash-hub-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 67, 38, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.dash-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 67, 38, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 67, 38, 0.15);
}

.dash-hub-card:hover::after {
  opacity: 1;
}

.dash-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 67, 38, 0.12);
  color: #ff5238;
  border: 1px solid rgba(255, 67, 38, 0.25);
  box-shadow: 0 4px 15px rgba(255, 67, 38, 0.2);
}

.dash-hub-info {
  flex: 1;
  min-width: 0;
}

.dash-hub-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ff6854;
  display: block;
  margin-bottom: 4px;
}

.dash-hub-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.dash-hub-card p {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-hub-arrow {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.dash-hub-card:hover .dash-hub-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* ==========================================================================
   BROADCAST MATCH CENTER (JOGOS AO VIVO MODERNOS)
   ========================================================================== */

/* Featured Game Hero (Spotlight no topo da agenda) */
.match-hero-spotlight {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(255, 67, 38, 0.22), transparent 70%),
              linear-gradient(180deg, rgba(20, 26, 38, 0.95) 0%, rgba(10, 13, 20, 0.98) 100%);
  border: 1px solid rgba(255, 67, 38, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 67, 38, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.match-hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.match-hero-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  width: 100%;
  margin-bottom: 24px;
}

.match-hero-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 180px;
}

.match-hero-team img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

.match-hero-team span {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
}

.match-hero-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.match-hero-vs {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.match-hero-time {
  font-size: 13px;
  font-weight: 700;
  color: #ff5238;
  background: rgba(255, 67, 38, 0.12);
  border: 1px solid rgba(255, 67, 38, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Broadcast Match Row (Linhas Elegantes de Transmissão) */
.broadcast-fixtures {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixture-row {
  display: grid;
  grid-template-columns: 190px 1fr 180px;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: rgba(14, 18, 27, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.fixture-row:hover {
  background: rgba(20, 26, 38, 0.85);
  border-color: rgba(255, 67, 38, 0.35);
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 67, 38, 0.1);
}

.fixture-row.live {
  border-color: rgba(255, 67, 38, 0.28);
  background: linear-gradient(90deg, rgba(255, 67, 38, 0.08) 0%, rgba(14, 18, 27, 0.7) 35%);
}

.fixture-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.fixture-league {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fixture-matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.fixture-team {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.fixture-team.away {
  flex-direction: row-reverse;
  text-align: right;
}

.fixture-team img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: none;
}

.fixture-team span {
  font-size: 14.5px;
  font-weight: 650;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fixture-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: none;
  width: 70px;
}

.fixture-vs {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
}

.fixture-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 860px) {
  .fixture-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .fixture-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .fixture-matchup {
    justify-content: space-between;
    gap: 12px;
  }
  .fixture-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   APP SHOWCASE BANNER (NOVO DESIGN PREMIUM)
   ========================================================================== */
.app-showcase-card {
  position: relative;
  background: radial-gradient(circle at 90% 20%, rgba(255, 67, 38, 0.16), transparent 50%),
              linear-gradient(135deg, #0e131d 0%, #080a0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

.app-showcase-text {
  max-width: 620px;
}

.app-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.app-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.app-showcase-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.app-features-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.app-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #e5e7eb;
}

.app-showcase-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: none;
}

@media (max-width: 840px) {
  .app-showcase-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .app-showcase-cta {
    width: 100%;
  }
  .app-showcase-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION (APP-LIKE EXPERIENCE)
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(10, 14, 23, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 990;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  body:has(.mobile-bottom-nav) {
    padding-bottom: 74px;
  }

  .mb-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    flex: 1;
  }

  .mb-nav-item.active,
  .mb-nav-item:hover {
    color: var(--red-glow);
  }

  .mb-nav-item.active .mb-nav-icon {
    transform: translateY(-2px);
  }

  .mb-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
}

/* ==========================================================================
   BLOG & CENTRAL DE GUIAS (MODERN, MOBILE-FIRST, SEO-OPTIMIZED)
   ========================================================================== */
.blog-hero {
  position: relative;
  background: radial-gradient(circle at 80% 30%, rgba(255, 67, 38, 0.15), transparent 60%),
              linear-gradient(135deg, #0f1522 0%, #080a0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px 40px;
  margin-bottom: 36px;
}

@media (max-width: 640px) {
  .blog-hero {
    padding: 28px 20px;
    border-radius: 18px;
  }
}

.blog-hero-content {
  max-width: 720px;
}

.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.blog-hero-desc {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.blog-featured-card {
  position: relative;
  background: rgba(15, 20, 30, 0.75);
  border: 1px solid rgba(255, 67, 38, 0.25);
  border-radius: 20px;
  padding: 32px 34px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 67, 38, 0.08);
  cursor: pointer;
}

@media (max-width: 640px) {
  .blog-featured-card {
    padding: 22px 18px;
  }
}

.blog-featured-card:hover {
  border-color: var(--red-2);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 67, 38, 0.16);
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: rgba(14, 18, 27, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.blog-card:hover {
  border-color: rgba(255, 67, 38, 0.4);
  transform: translateY(-4px);
  background: rgba(18, 24, 36, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 67, 38, 0.1);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 750;
  color: #fff;
  line-height: 1.35;
  margin-top: 4px;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12.5px;
  color: var(--muted);
}

.blog-read-link {
  color: var(--red-glow);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Article Reader View */
.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-breadcrumb a:hover {
  color: #fff;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.article-body {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.8;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f3f4f6;
  margin-top: 24px;
  margin-bottom: 10px;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul, .article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.article-tip-box {
  background: rgba(255, 67, 38, 0.07);
  border-left: 4px solid var(--red-2);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
}

.article-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(15, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
