/* ==========================================================================
   INSPIRAÇÃO FLIX - DESIGN SYSTEM (3D ELEVATION & SPECULAR DEPTH)
   Paleta: Preto Profundo, Branco Puro & Cinza Prata do Flix
   Zero Outlines Genéricos de IA · Iluminação 3D, Profundidade e Camadas
   ========================================================================== */

:root {
  /* Cores Base - Preto Profundo & Superfícies 3D */
  --bg-dark: #000000;
  --bg-dark-rgb: 0, 0, 0;
  --bg-surface-top: #151520;
  --bg-surface-bottom: #09090e;

  /* Escala de Azul Gelo & Prata (Extraído da logo "Flix") */
  --white: #ffffff;
  --silver-bright: #ffffff;
  --silver-light: #c2d1e8;
  --silver-mid: #8fa3c7;       /* Azul acinzentado da tipografia FLIX */
  --silver-muted: #647898;
  --silver-dark: #2d3b50;

  /* Gradientes de Iluminação com o Azul do Flix */
  --silver-gradient: linear-gradient(135deg, #ffffff 0%, #cbd8ec 48%, #8fa3c7 100%);
  --surface-gradient: linear-gradient(180deg, #131722 0%, #090b10 100%);
  --surface-featured: linear-gradient(180deg, #1a2030 0%, #0d1017 100%);

  /* Tipografia Harmonizada */
  --text-main: #ffffff;
  --text-sub: #cbd7ea;
  --text-muted: #889ab8;
  --text-faint: #647898;

  /* Sombras 3D Escalonadas (Multi-Camadas com Efeito de Luz Superior) */
  --shadow-3d-tile: 0 10px 24px -4px rgba(0, 0, 0, 0.8), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  --shadow-3d-card: 0 20px 48px -10px rgba(0, 0, 0, 0.9), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
  --shadow-3d-hover: 0 30px 60px -12px rgba(0, 0, 0, 0.98), inset 0 1px 1px 0 rgba(255, 255, 255, 0.28);
  --shadow-3d-featured: 0 25px 65px -10px rgba(0, 0, 0, 0.98), 0 0 35px rgba(255, 255, 255, 0.08), inset 0 1px 1px 0 rgba(255, 255, 255, 0.35);
  --shadow-btn: 0 10px 28px -6px rgba(255, 255, 255, 0.3);

  /* Tipografia Reta e Sóbria */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Respiro vertical das seções: um valor só, pra transição não ficar
     apertada em cima da página e larga demais embaixo */
  --secao-y: clamp(48px, 5.2vw, 76px);

  /* Raios de Curvatura Orgânicos */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

button, a, .family-toggle-btn, .faq-header, .header-pill-btn, .hero-cta-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   EFEITO DE REVELAÇÃO SUAVE & ULTRA-RÁPIDO (GPU ACCELERATED REVEAL)
   ========================================================================== */
.reveal-blur {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-blur.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delays Otimizados para Efeito Cascata Ágil */
.delay-1 { transition-delay: 0.03s; }
.delay-2 { transition-delay: 0.06s; }
.delay-3 { transition-delay: 0.09s; }
.delay-4 { transition-delay: 0.12s; }
.delay-5 { transition-delay: 0.15s; }
.delay-6 { transition-delay: 0.18s; }
.delay-7 { transition-delay: 0.21s; }
.delay-8 { transition-delay: 0.24s; }

/* ==========================================================================
   HEADER FLUTUANTE (BALÃO ESTILO PÍLULA 3D)
   ========================================================================== */
.site-header-wrapper {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 5vw;
  pointer-events: none;
}

.site-header-pill {
  pointer-events: auto;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 18px 8px 14px;
  background: rgba(18, 18, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  border: none;
  transition: all 0.3s ease;
}

.site-header-pill.scrolled {
  background: rgba(12, 12, 16, 0.96);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), inset 0 1px 0 0 rgba(255, 255, 255, 0.22);
}

.brand-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mascot-img {
  height: 52px;
  width: auto;
  max-width: 66px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
  transition: transform 0.25s ease;
}

.brand-pill-left:hover .brand-mascot-img {
  transform: scale(1.1) rotate(-3deg);
}

.brand-pill-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-pill-text span {
  color: #8fa3c7;
  font-weight: 700;
}

.header-pill-btn {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.header-pill-btn:hover {
  background: #f1f5f9;
  color: #000000;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.45);
}

@media (max-width: 600px) {
  .site-header-pill {
    padding: 6px 12px 6px 10px;
  }
  .brand-mascot-img {
    height: 38px;
    width: 38px;
  }
  .brand-pill-text {
    font-size: 1.15rem;
  }
  .header-pill-btn {
    padding: 10px 18px;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary, .btn-main {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 28px -4px rgba(255, 255, 255, 0.3);
  font-size: 1.05rem;
}

.btn-primary:hover, .btn-main:hover {
  background: #f1f5f9;
  color: #000000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -4px rgba(255, 255, 255, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 8px 20px rgba(0, 0, 0, 0.6);
}

.btn-pulse {
  animation: btnPulseWhite 2.4s ease-in-out infinite;
}

.btn-pulse:hover {
  animation-play-state: paused;
}

@keyframes btnPulseWhite {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 10px 28px -6px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0), 0 14px 34px -4px rgba(255, 255, 255, 0.45);
    transform: scale(1.02);
  }
}

/* ==========================================================================
   HERO SECTION (Cinema Imersivo, Boneco na Direita & Texto na Esquerda)
   ========================================================================== */
.hero-section {
  position: relative;
  isolation: isolate;
  /* A altura tem que acompanhar a largura. Se a hero fica baixa e larga demais,
     o cover passa a ampliar pela ALTURA e empurra o mascote pra esquerda, em
     cima do texto — foi o que acontecia a 1101px. */
  min-height: clamp(560px, 46vw, 840px);
  display: flex;
  align-items: center;
  background-color: #000000;
  overflow: hidden;
  padding: 122px 5vw 76px;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* A arte foi feita com o mascote na DIREITA e a metade esquerda vazia. Ancorar
   à direita mantém ele inteiro mesmo quando a janela estreita e o corte vem. */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  filter: brightness(1.06) contrast(1.03);
}

/* Escurece a esquerda, onde mora o texto, e deixa a direita limpa pro mascote */
.hero-scrim-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.88) 32%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0) 78%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0) 68%,
      rgba(0, 0, 0, 0.75) 92%,
      #000000 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.hero-text-col {
  /* nunca passa de 42% da largura: é onde o mascote começa */
  max-width: min(560px, 42vw);
  width: 100%;
  text-align: left;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.98), 0 2px 10px rgba(0, 0, 0, 0.95);
}

.hero-title .highlight-orange,
.hero-title .highlight-silver {
  color: #8fa3c7;
  font-weight: 900;
  display: inline;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  color: #e2e8f0;
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.6;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.98), 0 1px 6px rgba(0, 0, 0, 0.95);
}

.hero-desc b {
  color: #ffffff;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.btn-hero-cta {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px -4px rgba(255, 255, 255, 0.35);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-hero-cta:hover {
  background: #f1f5f9;
  color: #000000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px -2px rgba(255, 255, 255, 0.55);
}

/* De 769 a 1100 não cabe lado a lado: medido a 900px, o texto invadia 205px do
   rosto do mascote. Nessa faixa a hero empilha — texto em cima, arte embaixo. */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 132px 5vw 56px;
  }

  .hero-container {
    order: 1;
    justify-content: center;
  }

  .hero-bg-picture {
    order: 2;
    position: relative;
    inset: auto;
    z-index: 0;
    height: auto;
    margin-top: 36px;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-bg-img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-scrim-layer {
    display: none;
  }

  .hero-text-col {
    max-width: 640px;
    text-align: center;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-wrap {
    justify-content: center;
  }
}

/* No celular não cabe lado a lado */
@media (max-width: 768px) {
  .hero-section {
    min-height: min(94vh, 800px);
    align-items: flex-end;
    padding: 120px 20px 46px;
  }

  .hero-bg-img {
    object-position: center top;
  }

  .hero-scrim-layer {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.12) 22%,
      rgba(0, 0, 0, 0.45) 46%,
      rgba(0, 0, 0, 0.82) 62%,
      rgba(0, 0, 0, 0.94) 100%);
  }

  .hero-container {
    justify-content: center;
  }

  .hero-text-col {
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7.4vw, 2.3rem);
    line-height: 1.16;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .hero-cta-wrap {
    justify-content: center;
  }

  .btn-hero-cta {
    width: 100%;
    max-width: 340px;
    padding: 16px 28px;
  }
}

/* ==========================================================================
   SEÇÃO DISPOSITIVOS COMPATÍVEIS & OFERTA RÁPIDA
   ========================================================================== */
.devices-offer-section {
  position: relative;
  padding: 0 5vw var(--secao-y);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.devices-offer-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Dispositivos Compatíveis */
.devices-ticker-wrap {
  margin-top: 0;
  margin-bottom: 28px;
}

.devices-ticker-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.devices-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.device-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
}

.device-badge-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Card de Oferta Rápida 3D */
.hero-offer-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  border: none;
  box-shadow: var(--shadow-3d-card);
}

@media (max-width: 768px) {
  .hero-offer-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

.hero-offer-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero-offer-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-offer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.hero-offer-action .btn {
  animation: btnSubtlePulse 2.4s ease-in-out infinite;
}

.hero-offer-action .btn:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
}

@keyframes btnSubtlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 8px 26px rgba(255, 255, 255, 0.55);
  }
}

@media (max-width: 768px) {
  .hero-offer-action {
    align-items: center;
  }
  .hero-offer-action .btn {
    width: 100%;
  }
}

.hero-offer-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-offer-price {
    align-items: center;
  }
}

.hero-offer-price strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: #ffffff;
}

/* ==========================================================================
   SHOWCASE SECTION (CARDS 3D EM BLOCOS ELEVADOS)
   ========================================================================== */
.showcase-section {
  padding: var(--secao-y) 6vw;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .showcase-section {
    padding: var(--secao-y) 4vw;
  }
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
}

.section-head h2 .accent-silver {
  color: var(--silver-mid);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card.category-card-clone {
  display: none !important;
}

@media (max-width: 1024px) {
  .category-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .category-card.category-card-clone {
    display: flex !important;
  }

  .category-showcase-grid {
    position: relative;
    display: flex;
    gap: 12px;
    margin-inline: -4vw;
    padding-inline: 4vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4vw;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .category-showcase-grid > .category-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: none !important;
    transition: box-shadow 0.3s ease;
  }

  .category-showcase-grid > .category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.62);
    opacity: var(--catalog-shade, 0.62);
    pointer-events: none;
    transition: opacity 0.12s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .category-showcase-grid > .category-card.is-carousel-active {
    z-index: 2;
  }

  .category-showcase-grid > .category-card.is-carousel-left {
    z-index: 1;
  }

  .category-showcase-grid > .category-card.is-carousel-right {
    z-index: 1;
  }

  .category-showcase-grid > .category-card:hover {
    transform: none !important;
  }

  .category-card.hide-on-mobile {
    display: none !important;
  }
}

.category-card {
  position: relative;
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d-card);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-3d-hover);
}

/* Parede de pôsteres: colunas deslizando em sentidos opostos, sem parar */
.category-carousel-viewport {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: #000000;
}

.poster-wall {
  position: absolute;
  inset: 0;
  display: flex;
  /* flex-start é obrigatório: se a coluna esticar até a altura do card, o -50%
     da animação deixa de valer exatamente uma cópia e o loop dá solavanco */
  align-items: flex-start;
  gap: 10px;
  padding: 0 10px;
}

.poster-col {
  flex: 1 1 0;
  min-width: 0;
  animation: poster-scroll-up 22s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.showcase-section:not(.is-in-view) .poster-col {
  animation-play-state: paused;
}

.poster-col:nth-child(1) {
  animation-duration: 20s;
}

.poster-col--down {
  animation-name: poster-scroll-down;
  animation-duration: 25s;
}

.poster-col:nth-child(3) {
  animation-duration: 22s;
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover .poster-col {
    animation-play-state: paused;
  }
}

/* margem em vez de gap: assim metade da coluna é exatamente uma cópia da lista,
   e o loop fecha sem solavanco */
.poster-col img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.9);
}

@keyframes poster-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes poster-scroll-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* topo esmaecido pra parede nascer do escuro em vez de ser cortada na régua */
.poster-wall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

.category-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(10, 10, 15, 0.95) 100%);
  pointer-events: none;
}

.category-card-body {
  position: relative;
  z-index: 2;
  padding: 16px 20px 18px;
  margin-top: 0;
  background: transparent;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
}

.category-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ==========================================================================
   STREAMING HUB (BANNER 1:1 POLAR BRANCO COM LOGOS DAS PLATAFORMAS)
   ========================================================================== */
.streaming-hub-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 48vw, 880px);
  display: flex;
  align-items: flex-start;      /* texto no alto; o mascote fica embaixo dele */
  justify-content: center;
  padding: 62px 6vw 40px;
  margin-bottom: 36px;
  text-align: center;
  overflow: hidden;
  background: #000000;
}

.streaming-hub-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.streaming-hub-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* a arte ganhou uma faixa preta no topo; ancorar em cima é o que empurra
     o mascote pra baixo e abre espaço pro texto */
  object-position: center top;
  display: block;
  filter: brightness(0.95) contrast(1.02);
}

/* Escurece só a faixa de cima, onde mora o texto, e deixa o mascote limpo */
.streaming-hub-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.08) 55%,
    rgba(0, 0, 0, 0.05) 78%,
    rgba(0, 0, 0, 0.45) 96%,
    rgba(0, 0, 0, 0.7) 100%);
}

.streaming-hub-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.streaming-hub-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.98), 0 2px 10px rgba(0, 0, 0, 0.95);
  max-width: 780px;
  margin: 0;
}

.streaming-hub-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 4px auto 0;
}

.hub-logo-card {
  width: clamp(52px, 5.2vw, 68px);
  height: clamp(52px, 5.2vw, 68px);
  border-radius: 14px;
  overflow: hidden;
  background: #14141c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-logo-card:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}

.hub-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-logo-card--more {
  background: #f8fafc;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.hub-logo-card--more span {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 800;
  line-height: 1.15;
  color: #020617;
  text-align: left;
  letter-spacing: -0.01em;
}

.streaming-hub-desc {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: #e2e8f0;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
  max-width: 620px;
  line-height: 1.5;
  margin: 0;
}

/* Versão Mobile (com imagem vertical polar-branco-mob) */
@media (max-width: 768px) {
  .streaming-hub-section {
    min-height: min(86vh, 700px);
    padding: 46px 20px 34px;
    margin-bottom: 24px;
  }

  .streaming-hub-title {
    font-size: 1.62rem;
    line-height: 1.22;
  }

  .streaming-hub-logos {
    gap: 8px;
    max-width: 320px;
  }

  .hub-logo-card {
    width: 50px;
    height: 50px;
    border-radius: 11px;
  }

  .hub-logo-card--more {
    padding: 4px 6px;
  }

  .hub-logo-card--more span {
    font-size: 0.62rem;
  }

  .streaming-hub-desc {
    font-size: 0.96rem;
    line-height: 1.45;
  }
}

/* ==========================================================================
   SPORTS SECTION (BANNER 1:1 POLAR SPORTS COM TEXTO NA FRENTE)
   ========================================================================== */
.sports-section {
  position: relative;
  background: #000000;
  padding: var(--secao-y) 6vw;
  text-align: center;
}

.sports-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sports-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 740px;
  margin: 0;
}

.sports-desc {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: var(--text-sub);
  font-weight: 500;
  max-width: 620px;
  line-height: 1.55;
  margin: 0;
}

/* Grade dos campeonatos - mesma linguagem dos cards de assinatura */
.leagues-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);   /* 12 logos = 6 x 2, sem sobra */
  gap: 18px;
  max-width: 1120px;
  margin: -10px auto 0;
  padding: 0 6vw;
}

.league-card {
  background: var(--surface-gradient);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-3d-tile);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.league-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.league-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

@media (max-width: 1023px) {
  .leagues-grid {
    grid-template-columns: repeat(4, 1fr);  /* 12 = 4 x 3 */
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .sports-title {
    font-size: 1.62rem;
    line-height: 1.2;
  }

  .sports-desc {
    font-size: 0.95rem;
  }

  .sports-section {
    padding: var(--secao-y) 18px;
  }

  .leagues-grid {
    grid-template-columns: repeat(3, 1fr);  /* 12 = 3 x 4 */
    gap: 12px;
    padding: 0 18px;
  }
}

/* ==========================================================================
   COMPARATIVO DE PREÇOS (TILES 3D & PAINEL DE PROFUNDIDADE)
   ========================================================================== */
.price-comparison-section {
  padding: var(--secao-y) 6vw;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comp-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 40px auto 44px;
}

@media (max-width: 900px) {
  .comp-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 580px) {
  .comp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.comp-item-card {
  background: var(--surface-gradient);
  border-radius: var(--radius-md);
  padding: 12px 12px 16px;
  text-align: center;
  border: none;
  box-shadow: var(--shadow-3d-tile);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comp-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.comp-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  background: #14141c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.comp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-service-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

/* Painel 3D de Economia (Bevel & Specular Top-Light) */
.price-shock-box {
  background: radial-gradient(ellipse at 50% 0%, #181826 0%, #0a0a0f 100%);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
  border: none;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.95), inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 0 rgba(0, 0, 0, 0.8);
}

.price-shock-total {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-shock-total span {
  text-decoration: line-through;
  color: #889ab8;
  font-weight: 800;
  font-size: 1.4rem;
}

.price-shock-winner {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.price-shock-winner span {
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

/* ==========================================================================
   CARROSSEL PLANO DE PROVAS SOCIAIS
   ========================================================================== */
.social-proof-section {
  position: relative;
  padding: var(--secao-y) 4vw;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.social-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.98rem;
}

.carousel-3d-wrapper {
  position: relative;
  /* estica até as bordas da seção, que é quem corta: senão sobra de cada lado uma
     faixa sem vinheta onde o painel aparece cortado na régua */
  width: calc(100% + 8vw);
  height: 640px;
  margin: 40px -4vw 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: none;
  -webkit-perspective: none;
  user-select: none;
  touch-action: pan-y;
}

/* As pontas da esteira dissolvem no preto em vez de serem cortadas na régua */
.carousel-3d-wrapper::before,
.carousel-3d-wrapper::after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  width: 13%;
  z-index: 15;
  pointer-events: none;
}

.carousel-3d-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark, #000000) 15%, transparent);
}

.carousel-3d-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark, #000000) 15%, transparent);
}

.carousel-3d-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: flat;
  -webkit-transform-style: flat;
}

.carousel-3d-card {
  position: absolute;
  width: 280px;
  max-width: 78vw;
  height: 520px;
  top: 50%;
  left: 50%;
  margin-top: -260px;
  margin-left: -140px;
  border-radius: 32px;
  cursor: pointer;
  transform-style: flat;
  -webkit-transform-style: flat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

.carousel-3d-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0d0d12;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.85),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.14),
              0 0 0 1px rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.carousel-3d-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-camera-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 6px;
  z-index: 4;
}

/* Badge de clique/toque para ampliar - Ultra Leve sem backdrop-filter */
.card-zoom-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 18, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}

.card-zoom-badge svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.carousel-3d-card.pos-0 .card-zoom-badge {
  opacity: 1;
}

/* Esteira plana: os feedbacks permanecem frontais; o JS altera apenas a posição. */
.carousel-3d-card.is-front .carousel-3d-card-inner {
  border-color: rgba(255, 255, 255, 0.22);
}

.carousel-3d-card.is-front .card-zoom-badge {
  opacity: 1;
}


.social-proof-cta-wrap {
  margin-top: 15px;
}

/* Responsividade da esteira plana - Cards Ampliados */
@media (max-width: 900px) {
  .social-proof-section {
    padding: var(--secao-y) 4vw;
  }

  .carousel-3d-wrapper {
    height: 580px;
  }

  .carousel-3d-card {
    width: 260px;
    max-width: 76vw;
    height: 485px;
    margin-top: -242px;
    margin-left: -130px;
  }
}

@media (max-width: 540px) {
  .carousel-3d-card {
    width: 240px;
    max-width: 75vw;
    height: 450px;
    margin-top: -225px;
    margin-left: -120px;
  }

  .carousel-3d-wrapper {
    height: 530px;
  }

  .carousel-3d-wrapper::before,
  .carousel-3d-wrapper::after {
    width: 8%;
  }
}

@media (max-width: 380px) {
  .carousel-3d-card {
    width: 215px;
    max-width: 72vw;
    height: 402px;
    margin-top: -201px;
    margin-left: -107px;
  }

  .carousel-3d-wrapper {
    height: 470px;
  }
}

/* ==========================================================================
   FEEDBACK LIGHTBOX MODAL (ZOOM EM TELA CHEIA)
   ========================================================================== */
.feedback-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 460px;
  width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-lightbox-modal.is-open .lightbox-dialog {
  transform: scale(1) translateY(0);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 82vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.98), inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.12);
  background: #09090e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.lightbox-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 16px rgba(255, 255, 255, 0.3);
  z-index: 10;
  transition: all 0.25s ease;
}

.lightbox-close-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lightbox-close-btn:hover {
  background: #f1f5f9;
  transform: scale(1.1) rotate(90deg);
}

.lightbox-hint {
  margin-top: 14px;
  font-size: 0.82rem;
  color: #889ab8;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   PLANS & PRICING SECTION (CARDS 3D ELEVADOS & DESTAQUE METÁLICO)
   ========================================================================== */
.pricing-section {
  padding: var(--secao-y) 6vw;
  max-width: 1280px;
  margin: 0 auto;
}

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

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 22px;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 38px;
  }
}

.plan-card {
  position: relative;
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 34px 26px 30px;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: var(--shadow-3d-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  z-index: 1;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3d-hover);
  z-index: 4;
}

/* Plano Destaque (Trimestral) */
.plan-card.featured-card {
  background: var(--surface-featured);
  box-shadow: var(--shadow-3d-featured);
  transform: scale(1.03);
  z-index: 2;
  border: none;
}

.plan-card.featured-card:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 30px 75px -10px rgba(0, 0, 0, 0.98), 0 0 45px rgba(255, 255, 255, 0.12), inset 0 1px 1px 0 rgba(255, 255, 255, 0.45);
  z-index: 5;
}

@media (max-width: 1100px) {
  .plan-card.featured-card {
    transform: scale(1);
    z-index: 1;
  }
  .plan-card.featured-card:hover {
    transform: translateY(-4px);
    z-index: 4;
  }
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  z-index: 10;
}

.plan-badge-highlight {
  background: #ffffff;
  color: #000000;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.65), 0 4px 16px rgba(0, 0, 0, 0.8);
  border: 1px solid #ffffff;
  z-index: 10;
}

.plan-badge-subtle {
  background: #1e1e2c;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2), 0 4px 14px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  z-index: 10;
}

.plan-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.plan-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  min-height: 20px;
  margin-bottom: 20px;
}

.plan-feature-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-sub);
  line-height: 1.4;
}

.plan-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #889ab8;
  margin-top: 1px;
}

.plan-price-area {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: auto;
}

.plan-price-old {
  font-size: 0.82rem;
  color: var(--text-faint);
  text-decoration: line-through;
  min-height: 18px;
}

.plan-price-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 4px 0 6px;
}

.plan-price-save {
  font-size: 0.78rem;
  font-weight: 700;
  color: #889ab8;
  min-height: 18px;
  margin-bottom: 18px;
}

.plan-cta-btn {
  width: 100%;
}

/* Family Plan Duration Switcher */
.family-toggle-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
  margin: 10px 0 10px;
  position: relative;
  overflow: visible;
}

.family-toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 7px 4px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.family-toggle-btn.active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.family-btn-with-sticker {
  overflow: visible !important;
  position: relative;
}

/* Adesivo tipo Verificado Meta no botão de 3 Meses */
.meta-verified-sticker {
  position: absolute;
  top: -10px;
  right: -5px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
  animation: metaStickerPulse 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.meta-badge-icon {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes metaStickerPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.18);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 1));
  }
}

/* Balãozinho Mais Popular no Card Família */
.fam-badge-top {
  opacity: 0;
  transform: translateX(-50%) translateY(-8px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card.fam-is-featured .fam-badge-top {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.plan-card.fam-is-featured {
  background: var(--surface-featured);
  box-shadow: var(--shadow-3d-featured);
}

.family-billing-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sub);
  text-align: left;
  margin-bottom: 14px;
}

#fam-price-note {
  color: var(--text-sub);
  font-weight: 700;
}

/* ==========================================================================
   7-DAYS GUARANTEE SECTION (COM 5 ESTRELAS DOURADAS 3D & AURA DOURADA DE FUNDO)
   ========================================================================== */
.guarantee-section {
  padding: calc(var(--secao-y) + 24px) 6vw var(--secao-y);
  background: #000000;
  text-align: center;
  position: relative;
  overflow: visible;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.guarantee-stars-wrap {
  max-width: 320px;
  margin: 0 auto -30px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guarantee-seal-backdrop {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto -54px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(245, 158, 11, 0.55));
}

.guarantee-stars-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 270px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(245, 158, 11, 0.45)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.95));
  animation: starsFloat 4s ease-in-out infinite alternate;
}

@keyframes starsFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.guarantee-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, #13131c 0%, #09090d 100%);
  border-radius: var(--radius-lg);
  padding: 52px 38px 42px;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.98), 0 0 40px rgba(245, 158, 11, 0.08), inset 0 1px 1px 0 rgba(255, 215, 0, 0.25);
  border: none;
  position: relative;
  z-index: 1;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #ffffff;
}

.guarantee-title .highlight-silver {
  color: #fbbf24;
  font-weight: 900;
}

.guarantee-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-sub);
  font-size: 0.98rem;
  line-height: 1.7;
}

.guarantee-text-block p {
  margin: 0;
}

.guarantee-text-block strong {
  color: #ffffff;
}

.guarantee-footer-note {
  font-weight: 700;
  color: #ffffff;
  margin-top: 6px !important;
  font-size: 1.05rem;
}

/* ==========================================================================
   HOW IT WORKS (PASSOS EM BLOCOS 3D)
   ========================================================================== */
.steps-section {
  padding: var(--secao-y) 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.step-card {
  background: var(--surface-gradient);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  position: relative;
  border: none;
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.85), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.95), inset 0 1px 1px 0 rgba(255, 255, 255, 0.22);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.35);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE FAQ (3D PANELS)
   ========================================================================== */
.faq-section {
  padding: var(--secao-y) 6vw;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--surface-gradient);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.75), inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.faq-item.open {
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.9), inset 0 1px 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  color: #889ab8;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* WhatsApp Support Help Card */
.whatsapp-help-card {
  margin-top: 50px;
  background: var(--surface-gradient);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: none;
  box-shadow: 0 18px 45px -8px rgba(0, 0, 0, 0.9), inset 0 1px 0 0 rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}

.whatsapp-help-card:hover {
  box-shadow: 0 24px 55px -8px rgba(0, 0, 0, 0.98), inset 0 1px 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.wa-card-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.wa-card-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.btn-whatsapp {
  background: #ffffff;
  color: #000000;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px -4px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
  background: #f1f5f9;
  box-shadow: 0 12px 28px -2px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .whatsapp-help-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .btn-whatsapp {
    width: 100%;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: var(--secao-y) 6vw 40px;
  background: #000000;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-top-grid {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

@media (max-width: 860px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  line-height: 1.65;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   PERFORMANCE & RENDERING OPTIMIZATION (MOBILE GPU / CPU SHIELD)
   ========================================================================== */
.streaming-hub-section,
.price-shock-section,
.comp-table-section,
.pricing-section,
.guarantee-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

