/* base.css - ESTRUTURA apenas (layout/medidas). ZERO cor de tema aqui.
   As cores saem do \3c style id="v2-theme"> gerado por theme.js a partir dos tokens.
   Regra: nada aqui depende de var() (roda em TV antiga Maple/NetCast). */

* { margin: 0; padding: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;                 /* recorta o overshoot de +1px da escala (fim da costura) */
  background: #000;                 /* letterbox neutro atras do palco */
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  -ms-touch-action: none; touch-action: none;
}

/* Palco canonico 1920x1080. A escala e aplicada por scale.js. */
.v2-stage {
  position: fixed;
  top: 0; left: 0;
  width: 1920px;
  height: 1080px;
  -webkit-transform-origin: 0 0;
     -moz-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  overflow: hidden;
}

/* ---- Navbar ---- */
.v2-navbar {
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 48px;
  -webkit-box-shadow: 0 3px 14px rgba(0,0,0,.35);
          box-shadow: 0 3px 14px rgba(0,0,0,.35);
}
.v2-logo { font-size: 34px; font-weight: 400; letter-spacing: 1px; }
.v2-logo b { font-weight: 800; }

.v2-nav { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; margin-left: 56px; }
.v2-nav-item {
  font-size: 27px;
  padding: 10px 26px;
  margin-right: 8px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.v2-spacer { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }

.v2-clock { font-size: 27px; margin-right: 28px; font-variant-numeric: tabular-nums; }

.v2-toggle {
  font: inherit;
  font-size: 20px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

/* ---- Conteudo ---- */
.v2-content { padding: 24px 48px 48px; }
.v2-screen-title { font-size: 40px; font-weight: 700; margin-bottom: 20px; }

.v2-row { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; }
.v2-card {
  width: 224px;
  height: 336px;
  margin-right: 26px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: -webkit-transform .12s ease;
  transition: -webkit-transform .12s ease;
  -o-transition: -o-transform .12s ease;
  -moz-transition: transform .12s ease, -moz-transform .12s ease;
  transition: transform .12s ease;
  transition: transform .12s ease, -webkit-transform .12s ease, -moz-transform .12s ease, -o-transform .12s ease;
}
.v2-card-thumb {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 64px; font-weight: 800;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  border-radius: 16px;   /* arredonda o proprio thumb -> mata a hairline do fundo nos cantos */
}
.v2-card-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 12px 12px;
  font-size: 20px; font-weight: 600;
  line-height: 1.15;
  color: #fff;
  border-bottom-left-radius: 16px; border-bottom-right-radius: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,.85);
  display: none;   /* titulo escondido por padrao (capa limpa) */
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.8)), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);   /* leve, so aparece no foco */
}
/* titulo aparece SO no card focado */
.v2-card.is-focus .v2-card-label { display: block; }

/* barra de progresso (Continuar Assistindo) na base do card */
.v2-card-prog { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 3; }
.v2-card-prog i { display: block; height: 100%; border-bottom-left-radius: 16px; }

/* estrela de favorito no canto do card */
.v2-fav-star { position: absolute; top: 8px; right: 8px; width: 36px; height: 36px; border-radius: 50%; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 21px; z-index: 3; -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.5); box-shadow: 0 1px 5px rgba(0,0,0,.5); }
.v2-fav-hint { line-height: 1.6; max-width: 900px; }
.v2-fav-hint b { font-weight: 700; }

/* ---- Foco (o ANEL de cor vem do tema; aqui so o comportamento) ---- */
[data-focus] { outline: none; }
[data-focus]:focus, .is-focus:focus, [data-focus] input:focus, [data-focus] textarea:focus { outline: none; }
.is-focus { position: relative; z-index: 2; }
.v2-card.is-focus { -webkit-transform: scale(1.06); -moz-transform: scale(1.06); -ms-transform: scale(1.06); -o-transform: scale(1.06); transform: scale(1.06); }

/* feedback rapido do OK/clique */
.is-active { opacity: .55; }
.v2-card.is-active { -webkit-transform: scale(1.0); -moz-transform: scale(1.0); -ms-transform: scale(1.0); -o-transform: scale(1.0); transform: scale(1.0); }

/* ================= LOGIN ================= */
.v2-login {
  position: absolute; top: 0; left: 0;
  width: 1920px; height: 1080px;
  overflow: hidden;
}
/* fundo do login: transparente -> aparece o .v2-login (t.bg = verde #001205, igual ao app nativo).
   (era um gradiente escuro placeholder; usuario pediu o mesmo verde do nativo) */
.v2-login-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
}
.v2-login-scrim { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }

.v2-login-card {
  position: absolute; top: 50%; left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 470px;
  padding: 40px 40px 26px;
  border-radius: 26px;
  text-align: center;
  -webkit-box-shadow: 0 24px 70px rgba(0,0,0,.5);
          box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.v2-logo-play { width: 132px; height: 132px; display: inline-block; }
.v2-login-logo { display: inline-block; max-width: 350px; max-height: 128px; width: auto; height: auto; margin-bottom: 6px; }
.v2-login-sub { font-size: 25px; margin: 6px 0 26px; }

.v2-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center;
  height: 66px;
  border-radius: 13px;
  padding: 0 16px;
  margin-bottom: 18px;
  position: relative;
}
.v2-field .v2-ic { width: 30px; height: 30px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; margin-right: 12px; }
.v2-field input {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border: 0; background: transparent; outline: none;
  font: inherit; font-size: 24px; height: 100%;
}
.v2-eye {
  width: 34px; height: 34px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  border-radius: 8px;
}
.v2-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center;
  height: 66px; width: 100%;
  border: 0; border-radius: 13px;
  font: inherit; font-size: 26px; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; margin-top: 4px;
}
.v2-btn .v2-arrow { margin-left: 12px; font-size: 24px; }
.v2-login-msg { font-size: 18px; min-height: 22px; margin-top: 14px; line-height: 1.2; }
.v2-login-foot { font-size: 16px; margin-top: 14px; }

/* ================= TELAS DO APP (navbar / home) ================= */
.v2-screen { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; overflow: hidden; }
.v2-screen .v2-navbar { position: relative; z-index: 5; }

.v2-nav-logo { position: absolute; left: 50%; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; pointer-events: none; }
.v2-nav-logo-img { height: 68px; width: auto; display: block; }
.v2-nav-user { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; height: 54px; padding: 0 18px 0 14px; border-radius: 12px; margin-right: 12px; font-size: 22px; cursor: pointer; }
.v2-nav-ic { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; margin-right: 8px; }
.v2-nav-renew { color: #e9b04a; font-weight: 700; }
.v2-nav-gear { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 54px; height: 54px; border-radius: 12px; margin-right: 12px; cursor: pointer; }
.v2-nav-support { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 54px; height: 54px; border-radius: 12px; margin-right: 12px; cursor: pointer; }
.v2-nav-exit { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; height: 54px; padding: 0 20px; border-radius: 12px; font-size: 22px; cursor: pointer; }
.v2-nav-exit span { margin-left: 8px; }

/* hero */
.v2-hero { position: relative; height: 500px; overflow: hidden; }
.v2-hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center 20%; }
.v2-hero-scrim { position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,.88)), color-stop(42%, rgba(0,0,0,.5)), color-stop(72%, rgba(0,0,0,0))),
    -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.7)), color-stop(42%, rgba(0,0,0,0)));
  background:
    -webkit-linear-gradient(left, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,0) 72%),
    -webkit-linear-gradient(bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 42%);
  background:
    -moz-linear-gradient(left, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,0) 72%),
    -moz-linear-gradient(bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 42%);
  background:
    -o-linear-gradient(left, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,0) 72%),
    -o-linear-gradient(bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 42%);
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,0) 72%),
    linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 42%);
}
.v2-hero-inner { position: absolute; left: 64px; right: 64px; bottom: 52px; max-width: 1000px; z-index: 2; color: #fff; }
.v2-hero-title { font-size: 56px; font-weight: 800; line-height: 1.05; margin-bottom: 14px; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.v2-hero-meta { font-size: 26px; margin-bottom: 24px; min-height: 30px; }
.v2-hero-actions { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; }
.v2-btn-hero { width: auto; height: 62px; padding: 0 36px; margin-right: 16px; }
.v2-btn2 { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; height: 62px; padding: 0 30px; border: 0; border-radius: 13px; font: inherit; font-size: 24px; font-weight: 700; cursor: pointer; margin-right: 16px; }
.v2-fav { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 62px; height: 62px; border: 0; border-radius: 50%; font-size: 30px; cursor: pointer; }

/* fileiras */
.v2-rows { padding: 24px 48px 40px; }
.v2-row-title { font-size: 32px; font-weight: 700; margin: 4px 0 16px; }
.v2-row-vp { overflow: hidden; margin: -8px 0 10px; padding: 16px 14px; }   /* viewport: recorta a faixa; padding = folga p/ scale+anel do card no foco (margin negativa compensa a altura extra) */
.v2-row { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; min-height: 120px; will-change: transform; }        /* faixa que desliza na horizontal (translateX) */
.v2-empty { font-size: 22px; padding: 16px 2px; }
.v2-retry { cursor: pointer; text-decoration: underline; font-weight: 700; border-radius: 8px; padding: 2px 8px; }

/* ================= TELAS COM SIDEBAR (Filmes / Series / Ao Vivo) ================= */
.v2-catlayout { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; height: 970px; }               /* 1080 - navbar 110 */
.v2-sidebar { width: 360px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; overflow: hidden; padding: 14px 0; }
.v2-sidebar-inner { will-change: transform; }
.v2-cat-item { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; margin: 2px 14px; padding: 14px 18px; border-radius: 12px; font-size: 23px; cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-cat-ic { display: inline-block; width: 26px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; opacity: .8; }

.v2-catmain { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden; padding: 14px 40px 0; }
.v2-cathead { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 18px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-search { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; height: 60px; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; max-width: 620px; border-radius: 13px; padding: 0 20px; font-size: 23px; cursor: pointer; }
.v2-search-ic { margin-right: 12px; }
.v2-search-input { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; border: 0; background: transparent; outline: none; font: inherit; font-size: 23px; height: 100%; padding: 0; }
.v2-catcount { margin-left: auto; font-size: 24px; padding-left: 20px; }

.v2-grid-scroll { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; overflow: hidden; padding: 16px 0 0 14px; }   /* folga p/ o scale+anel do foco nao cortar no topo/esquerda */
/* grade que QUEBRA LINHA: inline-block (roda em TV antiga — o -webkit-box do flexbox antigo NAO
   quebra linha). font-size:0 mata o espaco em branco entre inline-blocks (senao estoura o 6/linha). */
.v2-grid { font-size: 0; }
.v2-grid .v2-card { display: inline-block; vertical-align: top; margin: 0 20px 24px 0; }   /* 6 por linha: 6*(224+20)=1464 <= ~1480 disponivel */
/* botões de paginação = BARRA ocupando a LINHA inteira (bloco quebra a linha do inline-block; cards nunca ficam do lado) */
.v2-pagebtn { display: block; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; text-align: center; height: 62px; line-height: 62px; margin: 2px 0 22px 0; border-radius: 12px; font-size: 23px; font-weight: 700; cursor: pointer; }

/* rolagem por foco (o conteudo abaixo da navbar sobe/desce) */
.v2-home-scroll { position: relative; -webkit-transition: -webkit-transform .18s ease; transition: -webkit-transform .18s ease; -o-transition: -o-transform .18s ease; -moz-transition: transform .18s ease, -moz-transform .18s ease; transition: transform .18s ease; transition: transform .18s ease, -webkit-transform .18s ease, -moz-transform .18s ease, -o-transform .18s ease; will-change: transform; }

/* hero: fade suave na troca de destaque */
.v2-hero-bg { opacity: 1; -webkit-transition: opacity .3s ease; -o-transition: opacity .3s ease; -moz-transition: opacity .3s ease; transition: opacity .3s ease; }
/* fallback sem backdrop: capa BORRADA como fundo ambiente (esconde a baixa resolução; scale cobre as bordas do blur) */
.v2-hero-bg.is-blur { filter: blur(28px); -webkit-filter: blur(28px); -webkit-transform: scale(1.18); -moz-transform: scale(1.18); -ms-transform: scale(1.18); -o-transform: scale(1.18); transform: scale(1.18); }

/* ================= DETALHE (overlay Filme / Serie) ================= */
.v2-modal { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; overflow: hidden; z-index: 100; }
.v2-detail-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center 18%; }
.v2-detail-scrim { position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,.94)), color-stop(46%, rgba(0,0,0,.72)), to(rgba(0,0,0,.35))),
    -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.92)), color-stop(55%, rgba(0,0,0,.15)));
  background:
    -webkit-linear-gradient(left, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 46%, rgba(0,0,0,.35) 100%),
    -webkit-linear-gradient(bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.15) 55%);
  background:
    -moz-linear-gradient(left, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 46%, rgba(0,0,0,.35) 100%),
    -moz-linear-gradient(bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.15) 55%);
  background:
    -o-linear-gradient(left, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 46%, rgba(0,0,0,.35) 100%),
    -o-linear-gradient(bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.15) 55%);
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 46%, rgba(0,0,0,.35) 100%),
    linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.15) 55%); }
.v2-detail-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 70px 72px 56px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.v2-detail-load { font-size: 30px; margin-top: 40px; }

.v2-detail-top { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -webkit-align-items: flex-start; -moz-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.v2-detail-poster { width: 300px; height: 450px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 18px; background-size: cover; background-position: center; -webkit-box-shadow: 0 18px 50px rgba(0,0,0,.6); box-shadow: 0 18px 50px rgba(0,0,0,.6); }
.v2-detail-info { margin-left: 48px; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; max-width: 1180px; }
.v2-detail-title { font-size: 62px; font-weight: 800; line-height: 1.03; margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.v2-detail-meta { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; font-size: 27px; margin-bottom: 18px; }
.v2-detail-meta > span { opacity: .92; }
.v2-rate { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 22px; font-weight: 700; }
.v2-rate .v2-star { margin-right: 6px; }
.v2-detail-people { font-size: 23px; line-height: 1.4; margin-bottom: 20px; opacity: .85; }
.v2-detail-plot { font-size: 25px; line-height: 1.5; max-width: 1040px; margin-bottom: 30px;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.v2-plot-sr { -webkit-line-clamp: 3; margin-bottom: 22px; }
.v2-detail-actions { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; }
.v2-detail-actions .v2-btn, .v2-detail-actions .v2-btn2 { margin-right: 16px; }
.v2-detail-actions .v2-btn { width: auto; height: 66px; padding: 0 40px; }

/* series: temporadas + episodios */
.v2-detail-top-sr { -webkit-box-align: start; -webkit-align-items: flex-start; -moz-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.v2-detail-top-sr .v2-detail-poster { width: 230px; height: 345px; }
.v2-detail-eps { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-top: 22px; padding: 6px 6px 0; overflow: hidden; }   /* padding-top: folga p/ o anel de foco do seletor nao cortar */

/* seletor de temporada (dropdown customizado) */
.v2-season-wrap { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; margin-bottom: 18px; }
.v2-season-lbl { font-size: 24px; font-weight: 600; margin-right: 18px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-season-box { position: relative; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; max-width: 820px; }
.v2-season-sel { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; height: 64px; padding: 0 24px; border-radius: 14px; font-size: 24px; cursor: pointer; }
.v2-season-chev { margin-left: 18px; font-size: 22px; -webkit-transition: -webkit-transform .15s ease; transition: -webkit-transform .15s ease; -o-transition: -o-transform .15s ease; -moz-transition: transform .15s ease, -moz-transform .15s ease; transition: transform .15s ease; transition: transform .15s ease, -webkit-transform .15s ease, -moz-transform .15s ease, -o-transform .15s ease; }
.v2-season-sel.is-open .v2-season-chev { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); }
.v2-season-drop { display: none; position: absolute; top: 72px; left: 0; right: 0; max-height: 430px; overflow: hidden; border-radius: 14px; z-index: 130; -webkit-box-shadow: 0 22px 55px rgba(0,0,0,.65); box-shadow: 0 22px 55px rgba(0,0,0,.65); }
.v2-season-drop-inner { will-change: transform; padding: 8px; }
.v2-season-opt { padding: 15px 20px; border-radius: 10px; font-size: 23px; cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.v2-eps-scroll { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; overflow: hidden; padding: 6px 6px 0 6px; }   /* padding-left: folga p/ o anel de foco dos episodios nao cortar */
.v2-eps-list { will-change: transform; }
.v2-ep { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; padding: 16px 22px; margin-bottom: 12px; border-radius: 14px; font-size: 24px; cursor: pointer; }
.v2-ep-num { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; min-width: 46px; height: 46px; border-radius: 10px; font-weight: 800; margin-right: 20px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-ep-title { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-ep-dur { margin-left: 20px; font-size: 20px; opacity: .7; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }

/* toast (avisos temporarios ex.: "player em breve") */
.v2-toast { position: absolute; left: 50%; bottom: 60px; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); padding: 16px 30px; border-radius: 14px; font-size: 24px; opacity: 0; -webkit-transition: opacity .25s ease; -o-transition: opacity .25s ease; -moz-transition: opacity .25s ease; transition: opacity .25s ease; z-index: 120; }

/* ================= TV / AO VIVO (3 painéis) ================= */
.v2-live-layout { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; height: 970px; }               /* 1080 - navbar 110 */
/* usa .v2-sidebar (mesma da grade) na 1a coluna */
.v2-live-mid { width: 660px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden; padding: 18px 22px 0 24px; }
.v2-live-search { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; margin-bottom: 16px; height: 68px; }   /* NÃO cresce vertical (o .v2-search base tem flex:1 1 auto p/ a horizontal) */
.v2-live-listhead { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; font-size: 24px; font-weight: 700; padding: 4px 6px 12px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-live-count { font-size: 22px; font-weight: 700; }
.v2-live-chscroll { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; overflow: hidden; padding: 2px 6px 0 2px; }
.v2-live-chlist { will-change: transform; }
.v2-ch { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; min-height: 92px; margin-bottom: 10px; padding: 12px 16px; border-radius: 14px; cursor: pointer; }
.v2-ch-logo { width: 60px; height: 60px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 10px; background-size: contain; background-position: center; background-repeat: no-repeat; margin-right: 16px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 26px; font-weight: 800; }
.v2-ch-info { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; overflow: hidden; }
.v2-ch-name { font-size: 23px; font-weight: 600; line-height: 1.22; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.v2-ch-status { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; font-size: 18px; margin-top: 3px; }
.v2-ch-dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; }
.v2-ch-fav { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; font-size: 26px; margin-left: 10px; cursor: pointer; opacity: 0; }
.v2-ch.is-focus .v2-ch-fav, .v2-ch.is-fav .v2-ch-fav { opacity: 1; }
.v2-ch-play { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; font-size: 26px; margin-left: 12px; opacity: 0; }
.v2-ch.is-focus .v2-ch-play, .v2-ch.is-playing .v2-ch-play { opacity: 1; }

.v2-live-right { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden; padding: 18px 40px 24px 22px; }
.v2-live-player { position: relative; width: 100%; padding-top: 56.25%; border-radius: 16px; overflow: hidden; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-live-player video, .v2-live-player .v2-live-ph { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
/* overshoot de 1px (recortado pelo overflow:hidden) -> mata a costura de subpixel na borda de baixo */
.v2-live-player .v2-live-video { -o-object-fit: contain; object-fit: contain; background: #000; top: -1px; left: -1px; width: -webkit-calc(100% + 2px); width: -moz-calc(100% + 2px); width: calc(100% + 2px); height: -webkit-calc(100% + 2px); height: -moz-calc(100% + 2px); height: calc(100% + 2px); }
/* overlay de erro "canal fora do ar" (sobre o vídeo) */
.v2-live-status { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 4; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; text-align: center; padding: 24px; }
.v2-live-status.on { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; }
.v2-live-off { font-size: 26px; line-height: 1.5; max-width: 640px; }
.v2-live-ph { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 28px; }
/* faixa "VOCÊ ESTÁ ASSISTINDO": SÓ em tela cheia (inline não escurece o canal) */
.v2-live-nowbar { display: none; position: absolute; top: 0; left: 0; right: 0; z-index: 3; padding: 26px 34px; pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.75)), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%); }
.v2-live-player.is-full .v2-live-nowbar { display: block; }
/* TELA CHEIA: cobre o palco 1920x1080 (fixed dentro do .v2-stage transformado = relativo a ele) */
.v2-live-player.is-full { position: fixed; top: 0; left: 0; width: 1920px; height: 1080px; padding-top: 0; border-radius: 0; z-index: 400; }
.v2-live-nowlbl { display: block; font-size: 15px; letter-spacing: 1px; opacity: .8; }
.v2-live-now { display: block; font-size: 28px; font-weight: 800; margin-top: 2px; }
/* barra de controles do ao vivo (mesmas classes/estilo do player VOD); SÓ na tela cheia */
.v2-live-ctrl { display: none; position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 48px 44px; height: 150px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.92)), to(rgba(0,0,0,.85)));
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.85) 100%);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.85) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.85) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.85) 100%); }
.v2-live-player.is-full .v2-live-ctrl { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; }
/* auto-hide dos controles em tela cheia: some depois de alguns segundos, volta no OK/mouse */
.v2-live-player.is-full .v2-live-nowbar, .v2-live-player.is-full .v2-live-ctrl, .v2-live-player.is-full .v2-live-nowinfo { -webkit-transition: opacity .25s ease; -o-transition: opacity .25s ease; -moz-transition: opacity .25s ease; transition: opacity .25s ease; }
.v2-live-player.is-full.ctrl-off .v2-live-nowbar, .v2-live-player.is-full.ctrl-off .v2-live-ctrl, .v2-live-player.is-full.ctrl-off .v2-live-nowinfo { opacity: 0; pointer-events: none; }
.v2-live-player.is-full.ctrl-off { cursor: none; }
/* EPG na tela cheia (programa atual + sinopse + a seguir), logo acima da barra de controles */
.v2-live-nowinfo { display: none; }
.v2-live-player.is-full .v2-live-nowinfo { display: block; position: absolute; left: 0; right: 0; bottom: 150px; z-index: 6; padding: 28px 48px 8px; pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.85)), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%); }
.v2-live-nowprog { font-size: 25px; font-weight: 700; }
.v2-live-nowdesc { font-size: 19px; color: #fff; opacity: .85; margin-top: 5px; line-height: 1.4; max-height: 2.8em; overflow: hidden; }
.v2-live-nownext { font-size: 18px; color: #fff; opacity: .6; margin-top: 8px; }
.v2-live-ctrl .v2-live-badge { display: -webkit-inline-box; display: -webkit-inline-flex; display: -moz-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; margin: 0 18px; }
.v2-live-ctrl .v2-ch-dot { width: 12px; height: 12px; margin-right: 8px; }
.v2-live-epg { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-top: 20px; border-radius: 16px; padding: 22px 26px; overflow: hidden; }
.v2-live-epghead { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-bottom: 14px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-live-prog { font-size: 30px; font-weight: 800; }
.v2-live-badge { font-size: 20px; font-weight: 700; padding: 8px 16px; border-radius: 10px; }
.v2-live-epglist { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; overflow: hidden; }
.v2-epg-item { padding: 12px 0; }
.v2-epg-time { font-size: 20px; font-weight: 700; }
.v2-epg-title { font-size: 21px; }
.v2-epg-desc { font-size: 18px; margin-top: 4px; line-height: 1.4; }

/* ================= TECLADO-NA-TELA (busca / senha) ================= */
.v2-kb { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; z-index: 150; }
.v2-kb-scrim { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.v2-kb-panel { position: absolute; left: 50%; bottom: 70px; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); width: 1200px; padding: 30px 32px 26px; border-radius: 22px; -webkit-box-shadow: 0 24px 70px rgba(0,0,0,.6); box-shadow: 0 24px 70px rgba(0,0,0,.6); }
.v2-kb-input { width: 100%; height: 72px; border: 0; border-radius: 14px; padding: 0 24px; font: inherit; font-size: 30px; margin-bottom: 22px; outline: none; }
.v2-kb-row { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-bottom: 12px; }
.v2-key { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 96px; height: 80px; margin: 0 6px; border-radius: 12px; font-size: 30px; cursor: pointer; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; text-transform: uppercase; }
.v2-key-md { width: 176px; font-size: 24px; text-transform: none; }
.v2-key-go { width: 236px; font-size: 24px; font-weight: 700; text-transform: none; }
.v2-kb-title { font-size: 26px; font-weight: 700; margin-bottom: 16px; text-align: center; }
/* senha: mascara o texto com bolinhas SEM ser type=password (evita o "salvar senha" do navegador) */
.v2-kb-input-mask { -webkit-text-security: disc; text-security: disc; letter-spacing: 4px; }
/* PC/celular: sem teclado-na-tela, só o campo (nativo) + botão Buscar centralizado */
.v2-kb.is-pc .v2-kb-panel { width: 760px; }
.v2-kb.is-pc .v2-key-go { margin: 0 auto; }

/* ================= CADEADO (conteúdo adulto / censura) ================= */
.v2-lock { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.5); box-shadow: 0 1px 5px rgba(0,0,0,.5); }
.v2-card .v2-lock { position: absolute; top: 8px; left: 8px; z-index: 3; }        /* card: canto sup. esq. (a estrela fica na dir.) */
.v2-ch .v2-lock { margin-left: 10px; width: 30px; height: 30px; }                  /* canal: inline na linha, sempre visível */
.v2-cat-item .v2-lock { margin-left: auto; width: 26px; height: 26px; -webkit-box-shadow: none; box-shadow: none; }   /* categoria: cadeado à direita da linha */

/* ================= CONFIGURAÇÕES (overlay) ================= */
.v2-cfg { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; z-index: 140; }
.v2-cfg-scrim { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.v2-cfg-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.v2-cfg-panel { width: 1120px; max-height: 900px; overflow: hidden; padding: 40px 48px 36px; border-radius: 24px; -webkit-box-shadow: 0 30px 90px rgba(0,0,0,.6); box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.v2-cfg-title { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.v2-cfg-sec { padding: 26px 0 6px; margin-top: 20px; }
.v2-cfg-h { font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.v2-cfg-row { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.v2-cfg-row > * + * { margin-left: 24px; }   /* gap: TV antiga ignora o flex gap -> margem entre irmaos */
.v2-cfg-txt { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; min-width: 0; }
.v2-cfg-label { font-size: 28px; font-weight: 600; margin-bottom: 6px; }
.v2-cfg-desc { font-size: 22px; line-height: 1.4; }
.v2-cfg-badge { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: 18px; font-weight: 700; vertical-align: middle; }
.v2-cfg-row .v2-btn, .v2-cfg-row .v2-btn2 { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-cfg-forgot { margin-top: 16px; }
.v2-cfg-link { background: none; border: 0; font: inherit; font-size: 22px; font-weight: 600; padding: 8px 10px; border-radius: 8px; text-decoration: underline; cursor: pointer; }
.v2-cfg-actions { margin-top: 34px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -moz-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }

/* ================= SUPORTE (overlay) ================= */
.v2-sup-panel { width: 760px; max-height: 940px; overflow: hidden; padding: 40px 48px 36px; border-radius: 24px; -webkit-box-shadow: 0 30px 90px rgba(0,0,0,.6); box-shadow: 0 30px 90px rgba(0,0,0,.6); text-align: center; }
.v2-sup-sub { font-size: 23px; line-height: 1.4; margin: 6px 0 26px; }
.v2-sup-msg { font-size: 24px; line-height: 1.5; margin: 30px 0; }
.v2-sup-qr { width: 240px; height: 240px; margin: 0 auto 22px; background: #fff; padding: 12px; border-radius: 14px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
.v2-sup-link { font-size: 22px; word-break: break-all; line-height: 1.4; margin-bottom: 26px; }
.v2-sup-actions { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -moz-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
.v2-sup-actions > * + * { margin-top: 14px; }   /* gap -> margem (TV antiga) */
.v2-sup-actions .v2-btn, .v2-sup-actions .v2-btn2 { width: 100%; text-align: center; text-decoration: none; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; }

/* ================= RENOVAÇÃO (overlay de tela cheia) ================= */
.v2-renov { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; z-index: 220; }
.v2-rn-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.v2-rn-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.v2-rn-panel { width: 820px; max-height: 960px; overflow: hidden; padding: 44px 52px 40px; border-radius: 24px; -webkit-box-shadow: 0 30px 90px rgba(0,0,0,.6); box-shadow: 0 30px 90px rgba(0,0,0,.6); display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.v2-rn-title { font-size: 42px; font-weight: 800; margin-bottom: 8px; }
.v2-rn-sub { font-size: 24px; line-height: 1.4; margin-bottom: 26px; }
.v2-rn-msg { font-size: 24px; line-height: 1.5; margin: 24px 0; }
.v2-rn-plans { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden; }
.v2-rn-plans > * + * { margin-top: 14px; }   /* gap -> margem (TV antiga) */
.v2-rn-plan { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 22px 28px; border-radius: 16px; cursor: pointer; }
.v2-rn-plan-name { font-size: 27px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.v2-rn-plan-price { font-size: 28px; font-weight: 800; }
.v2-rn-plan.is-promo { -webkit-box-shadow: inset 0 0 0 2px #e9b04a; box-shadow: inset 0 0 0 2px #e9b04a; }
.v2-rn-plan-promo { display: inline-block; margin-left: 10px; padding: 2px 9px; border-radius: 7px; font-size: 15px; font-weight: 800; letter-spacing: .04em; background: #e9b04a; color: #201400; vertical-align: middle; }
.v2-rn-form { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-bottom: 8px; }
.v2-rn-form > * + * { margin-top: 20px; }   /* gap -> margem (TV antiga) */
.v2-rn-fgroup { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.v2-rn-flabel { font-size: 19px; font-weight: 700; letter-spacing: .04em; margin-bottom: 8px; }
.v2-rn-field { border-radius: 14px; padding: 0 20px; height: 68px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; }
.v2-rn-field input { width: 100%; height: 100%; border: 0; background: transparent; outline: none; font: inherit; font-size: 26px; }
.v2-rn-qr { width: 240px; height: 240px; margin: 0 auto 18px; background: #fff; padding: 12px; border-radius: 14px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
.v2-rn-copia { font-size: 18px; word-break: break-all; line-height: 1.4; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; max-height: 120px; overflow: hidden; }
.v2-rn-wait { font-size: 22px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-bottom: 22px; }
.v2-rn-wait > * + * { margin-left: 12px; }   /* gap -> margem (TV antiga) */
.v2-rn-spin { width: 26px; height: 26px; border-radius: 50%; border: 4px solid rgba(255,255,255,.25); border-top-color: #fff; -webkit-animation: v2spin 1s linear infinite; -moz-animation: v2spin 1s linear infinite; -o-animation: v2spin 1s linear infinite; animation: v2spin 1s linear infinite; display: inline-block; }
.v2-rn-check { font-size: 70px; line-height: 1; text-align: center; margin-bottom: 10px; }
.v2-rn-actions { margin-top: 30px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.v2-rn-actions > * { margin: 0 8px; }   /* gap -> margem lateral (TV antiga; 2 botoes, wrap raro) */

/* ================= PLAYER (overlay VOD/Serie/Trailer) ================= */
.v2-player { position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; overflow: hidden; z-index: 200; background: #000; }
.v2-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; }
.v2-trailer-host { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.v2-trailer-host iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.v2-player-scrim { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }   /* area de toque p/ mostrar/ocultar */

.v2-player-center { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; pointer-events: none; }
.v2-player-msg { text-align: center; font-size: 30px; line-height: 1.5; padding: 0 60px; }
.v2-player-msg-sub { font-size: 22px; opacity: .7; }
.v2-spin { width: 66px; height: 66px; border-radius: 50%; border: 6px solid rgba(255,255,255,.25); border-top-color: #fff; -webkit-animation: v2spin 1s linear infinite; -moz-animation: v2spin 1s linear infinite; -o-animation: v2spin 1s linear infinite; animation: v2spin 1s linear infinite; }
@-webkit-keyframes v2spin { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
@-moz-keyframes v2spin { to { -moz-transform: rotate(360deg); transform: rotate(360deg); } }
@-o-keyframes v2spin { to { -o-transform: rotate(360deg); transform: rotate(360deg); } }
@keyframes v2spin { to { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } }

/* UI (some/aparece) */
.v2-player-ui { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; pointer-events: none; -webkit-transition: opacity .2s ease; -o-transition: opacity .2s ease; -moz-transition: opacity .2s ease; transition: opacity .2s ease; }
.v2-player.is-ui .v2-player-ui { opacity: 1; pointer-events: auto; }
.v2-player-top { position: absolute; top: 0; left: 0; right: 0; height: 150px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 48px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.75)), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%); }
.v2-player-title { font-size: 34px; font-weight: 700; margin-left: 26px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-player-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 170px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 48px 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,.85)), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%); }
.v2-pbtn { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; height: 66px; min-width: 66px; padding: 0 22px; margin-right: 16px;
  border: 0; border-radius: 14px; font: inherit; font-size: 24px; font-weight: 700; cursor: pointer; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
.v2-pplay { width: 82px; padding: 0; font-size: 28px; }
.v2-ptime { font-size: 22px; color: #fff; font-variant-numeric: tabular-nums; margin: 0 16px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -moz-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
/* area de clique alta (facil de acertar) com a barra fina centralizada */
.v2-pseek { -webkit-box-flex: 1; -webkit-flex: 1 1 auto; -moz-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; height: 44px; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; }
.v2-pprog { position: relative; width: 100%; height: 8px; border-radius: 4px; }
.v2-pprog-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; border-radius: 4px; }
.v2-pprog-knob { position: absolute; top: 50%; left: 0; width: 20px; height: 20px; border-radius: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.5); box-shadow: 0 1px 4px rgba(0,0,0,.5); }
