* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  /* font-family: "Roboto", sans-serif; */
}

.navbar {
  width: 100%;
  height: 50px;
  background-color: black;
}
.navbar-container {
  display: flex;
  align-items: center;
  padding: 0px 50px;
  height: 100%;
  color: #fff;
}
.logo-container {
  flex: 2;
  display: flex;
  align-items: center;
}
.logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(2.1);
}
/* MENU CONTAINER */
.menu-container {
  flex: 6;
  display: flex;
  align-items: center;

  /* overflow-x: auto;           🔥 ativa scroll horizontal */
  /* overflow-y: hidden; */
  /* scrollbar-width: thin;      firefox */
}

/* LISTA */
.menu-list {
  display: flex;
  list-style: none;
  gap: 12px;

  /* white-space: nowrap;        🔥 impede quebrar linha  */
  /* min-width: max-content;    🔥 força largura real */
}

/* ITEM */
.menu-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ccc;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}
/* HOVER */
.menu-list-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ATIVO */
.menu-list-item.active {
  color: #fff;
  background: rgba(70,194,255,0.15);
  border: 1px solid #46c2ff;
}
/* ÍCONES */
.menu-list-item i {
  font-size: 13px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 70px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profile-container {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.profile-picture {
  width: 10%;
  height: 10%;
  cursor: pointer;
  object-fit: cover;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.profile-picture:hover {
  transform: scale(0.8);
}
.profile-text-container {
  margin: 0 15px;
}
.toggle {
  width: 40px;
  height: 20px;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.toggle-icon {
  color: goldenrod;
  font-size: 13px;
}
.toggle-ball {
  width: 18px;
  height: 18px;
  background-color: black;
  position: absolute;
  right: 1px;
  border-radius: 50%;
  cursor: pointer;
}
.sidebar {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}
.left-menu-icon {
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.left-menu-icon:hover {
  transform: scale(0.8);
}
.container {
  background-color: #151515;
  min-height: calc(100vh - 50px);
  color: #fff;
}
/* .content-container {
  margin-left: 50px;
} */
.featured-content {
  height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.featured-content:nth-last-child(2) {
  height: 80vh;
  margin-left: 0;
  margin-right: 0;
  margin-top: 50px;
  margin-bottom: 50px;
}
.featured-title {
  width: 500px;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 45px;
  font-family: "Poppins", sans-serif;
}
.featured-desc {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}
.featured-button {
  background-color: #f40612;
  color: #fff;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  outline: none;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.featured-button:hover {
  transform: scale(0.8);
}
.btn-icon {
  margin-left: 5px;
}
.movie-list-container {
  padding: 0 20px;
}
.movie-list-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: -20px;
}
.movie-list-title {
  margin-top: 40px;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
}
.movie-list {
  display: flex;
  align-items: center;
  height: 250px;
}
.movie-list-item {
  margin-right: 20px;
  position: relative;
}
.movie-list-item-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.movie-list-item:hover .movie-list-item-img {
  transform: scale(0.9);
  opacity: 0.5;
}
.movie-list-item:hover .movie-list-item-title,
.movie-list-item:hover .movie-list-item-desc,
.movie-list-item:hover .movie-list-item-button {
  opacity: 1;
}
.movie-list-item-title {
  background-color: #151515;
  padding: 0 12px;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 15%;
  left: 25px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.movie-list-item-desc {
  background-color: #151515;
  padding: 12px;
  font-size: 14px;
  position: absolute;
  top: 32%;
  left: 25px;
  width: 250px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.movie-list-item-button {
  padding: 8px 10px;
  background-color: #c70913;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  bottom: 18%;
  left: 25px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

/* Toggle Dark Mode  */
.dark-mode .container {
  background-color: white;
}
.movie-list-title.active {
  color: #151515;
}
.navbar-container.active {
  background-color: #fff;
  color: #151515;
}
.toggle.active {
  background-color: #151515;
}
.toggle-ball.active {
  background-color: #fff;
  transform: translateX(-20px);
}
.sidebar.active {
  background-color: #fff;
}
.left-menu-icon.active {
  color: #151515;
}

/* Responsive Mobile Friendly  */
@media screen and (max-width: 600px) {
  .sidebar {
    display: none;
  }
  .sidebar.active {
    display: none;
  }
  .menu-list {
    display: none;
  }
  .navbar-container {
    padding: 0 15px;
  }
  .profile-picture {
    display: none;
  }
  .profile-text {
    display: none;
  }
  .fa-solid.fa-caret-down {
    display: none;
  }
  /* .logo {
    width: 80px;
    height: 25px;
  } */
 .container {
  background-color: #151515;
  min-height: calc(100vh - 50px);
  color: #fff;
  padding-top: 50px; /* compensa navbar */
}
  .content-container {
    margin-left: 0px;
  }
  .featured-content {
    height: 50vh;
  }
  .featured-content:nth-last-child(2) {
    height: 50vh;
  }
  .featured-title {
    width: 300px;
    line-height: 1.2;
    font-size: 25px;
    text-align: center;
  }
  .featured-desc {
    font-size: 20px;
  }
  .featured-button {
    font-size: 15px;
    padding: 12px 20px;
  }
  .movie-list-container {
    padding: 0 15px;
  }
  .movie-list-title {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .movie-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130vh;
  }
  .movie-list-item {
    margin-right: 0px;
  }
  .movie-list-item-img {
    margin: 10px;
    width: 360px;
    height: 200px;
    border-radius: 15px;
  }
}

/* Menu ao vivo */
/* TEXTO AO VIVO */
.menu-list-item.live {
  color: #ff3b3b;
  font-weight: bold;
  position: relative;
}

/* PONTO LIVE */
.menu-list-item.live::after {
  content: "LIVE";
  font-size: 11px;
  margin-left: 6px;
  padding: 2px 5px;
  background: red;
  color: #fff;
  border-radius: 4px;
  animation: blink 1s infinite;
}

/* ANIMAÇÃO PISCAR */
@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 5px red;
  }
  50% {
    opacity: 0.3;
    box-shadow: 0 0 15px red;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 5px red;
  }
}

/* HOVER MAIS FORTE */
.menu-list-item.live:hover {
  background: rgba(255, 0, 0, 0.15);
}
\.menu-list-item.live::before {
  content: "";
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.6); opacity: 0.3; }
  100% { transform: scale(1); opacity: 1; }
}

/* Banner Section  */

/* CENTRALIZAÇÃO */
.featured-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* BLOCO DE TEXTO */
.featured-text {
  max-width: 700px;
}

/* TÍTULO */
.featured-title {
  font-size: 48px;
  line-height: 1.2;
}

/* DESTAQUE */
.featured-title span {
  display: block;
  color: #46c2ff;
}

/* DESCRIÇÃO */
.featured-desc {
  margin-top: 20px;
  font-size: 18px;
  color: #ccc;
}

/* BOTÃO */
.featured-button {
  margin-top: 25px;
}

.featured-title span {
  background: linear-gradient(90deg, #46c2ff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card em breve */
/* SWIPER FIX SEM QUEBRAR SEU LAYOUT */
/* SWIPER AJUSTE FINAL */
.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}



/* REMOVE CONFLITO */
.movie-list {
  height: auto !important;
}


/* BADGE */
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #46c2ff;
  color: #000;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 2;
}

/* AO VIVO */
.live-badge.live {
  background: red;
  color: #fff;
  animation: pulse 1.2s infinite;
}

/* ANIMAÇÃO */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* MELHORAR BOTÃO */
.movie-list-item-button {
  background: linear-gradient(90deg, #c70913, #ff3b3b);
  font-weight: bold;
}

/* HOVER MAIS SUAVE */
.movie-list-item:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* GRADIENTE PARA LEITURA */
.movie-list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* DATA DISCRETA */
.live-date {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  color: #ddd;
  background: rgba(0,0,0,0.6);
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 2;
}

/* BOTÃO LEMBRAR */
.notify-button {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  z-index: 2;
}

/* HOVER BOTÃO */
.notify-button:hover {
  background: #46c2ff;
  color: #000;
}

/* ESTADO ATIVO */
.notify-button.active {
  background: #00ffcc;
  color: #000;
}


/* HOVER */
.left-menu-icon:hover {
  background: rgba(70, 194, 255, 0.2);
  transform: scale(1.15);
}
/* .live-banner-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: red;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: bold;
}
.featured-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
} */

/* ===== HERO CAROUSEL ISOLADO ===== */
.heroSwiper {
  width: 100%;
  height: 92vh;
}

.heroSwiper .swiper-wrapper {
  height: 100%;
}

.heroSwiper .swiper-slide {
  width: 100% !important; /* sobrescreve os 300px */
  height: 100%;
}

.heroSwiper .featured-content {
  height: 100%;
}

/* ajuste de espacos */
/* ESPAÇO ENTRE BLOCOS */
.movie-list-container {
  margin-bottom: 60px;
}

/* ESPAÇO PARA O BANNER */
.featured-carousel {
  margin: 60px 0;
}
/* TÍTULOS COM RESPIRO */
.movie-list-title {
  margin-bottom: 20px;
}

/* MAIS ESPAÇO INTERNO */
.movie-list-wrapper {
  padding-top: 10px;
}

/* BOTÃO SEMPRE VISÍVEL PARA LIVE */
/* BOTÃO SEMPRE VISÍVEL EM LIVE */
.movie-list-item.is-live .movie-list-item-button {
  opacity: 1;
}

/* CATEGORIA */
.category-section .movie-list-wrapper {
  overflow: visible; /* remove scroll */
}

.category-section .movie-list {
  display: flex;
  flex-wrap: wrap;       /* quebra linha */
  justify-content: center;
  gap: 30px;
}

.category-section .movie-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* imagem maior e redonda */
.category-section .movie-list-item-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

/* título */
.category-section .category-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.category-section .movie-list-item::after {
  display: none !important;
}

.category-section .movie-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* 🔥 espaço automático entre imagem e texto */
}

/* PLANOS DESTACADO */
.menu-list-item.planos {
  background: linear-gradient(90deg, #46c2ff, #00ffcc);
  color: #000;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

/* ÍCONE */
.menu-list-item.planos i {
  color: #000;
}

/* HOVER */
.menu-list-item.planos:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(70,194,255,0.6);
}

/* CARD TOP */
.top-card {
  position: relative;
  width: 240px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGEM */
.top-card .movie-list-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.top-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.2), transparent);
  color: #fff;
}

/* NOME */
.top-name {
  font-size: 18px;
  font-weight: 800;
}

/* SUBTEXTO */
.top-role {
  font-size: 13px;
  color: #ccc;
  margin-top: 4px;
}

/* FOOTER */
.top-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
}

/* PREÇO */
.price {
  color: #00ffcc;
  font-weight: 700;
  font-size: 15px;
}

/* RATING */
.rating {
  color: #fff;
}

/* BADGE RANK */
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 12px;
  z-index: 2;
}

/* ÍCONE */
.top-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  color: yellow;
  font-size: 13px;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
}

/* HOVER */
.top-card:hover {
  transform: scale(1.06);
  transition: 0.3s ease;
}

.movie-list-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.top-card {
  width: 220px;
  height: 440px; /* 🔥 formato mais vertical */
}

.top-card .movie-list-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 mantém proporção bonita */
}

.top-card:nth-child(1)::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(120,0,0,0.8),
    rgba(180,0,0,1)
  );
}

.rank-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border-radius: 12px;
  font-weight: bold;
}

.rank-badge::before {
  content: "🏆";
  font-size: 12px;
}
.top-card:hover {
  transform: scale(1.08);
  z-index: 10;
}

/* REMOVE QUALQUER FUNDO ESCURO DOS CARDS */
.movie-list-item::after {
  display: none !important;
}
/* REMOVE FUNDO DE TEXTOS */
.movie-list-item-title,
.movie-list-item-desc {
  background: transparent !important;
}
/* REMOVE ESCURECIMENTO DO TOP */
.top-overlay {
  background: transparent !important;
}


/* Menu e submenu */
.menu-list-item {
  position: relative;
  cursor: pointer;
  padding: 8px 4px;
}

/* ✅ ponte invisível (corrigido para BEFORE) */
.menu-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 10px;
}

/* ✅ seta (AGORA NÃO CONFLITA) */
.menu-list-item.has-submenu::after {
  content: "▾";
  font-size: 12px;
  margin-left: 6px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

/* animação da seta */
.menu-list-item.has-submenu:hover::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #111;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 200px;
  border-radius: 8px;

  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);

  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 999;
}

/* itens */
.submenu li {
  padding: 10px 16px;
  color: #ccc;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.submenu li:hover {
  background: #1a1a1a;
  color: #fff;
  padding-left: 20px;
}

/* mostrar submenu */
.menu-list-item:hover .submenu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}




/* Redes Sociais index */
/* container fixo */
.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* botão base */
.social-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;

  background: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);

  transition: all 0.3s ease;
}

/* hover */
.social-item:hover {
  transform: translateY(-4px) scale(1.1);
}

/* cores por rede */
.social-item.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-item.tiktok:hover {
  background: #000;
}

.social-item.x:hover {
  background: #000;
}

.social-item.facebook:hover {
  background: #1877f2;
}


/* 🔴 LIVE FLOATING - MODERNO */
.live-floating {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 12px;
  border-radius: 8px;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  border: 1px solid rgba(255, 255, 255, 0.1);

  overflow: hidden;
}

/* TEXTO */
.live-text {
  color: #ff3b3b;
  position: relative;
  z-index: 2;
}

/* 🔥 EFEITO DE LUZ PASSANDO */
.live-floating::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 0, 0, 0.6),
    transparent
  );

  animation: liveScan 2s infinite;
}

/* ANIMAÇÃO DO SCAN */
@keyframes liveScan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* 🔥 MICRO PULSE (bem sutil) */
.live-floating {
  animation: liveFloat 2.5s ease-in-out infinite;
}

@keyframes liveFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
  100% { transform: translateY(0); }
}

/* HOVER */
.live-floating:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 600px) {
  .live-floating {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }
}


/* BOTÃO ENTRAR (SECUNDÁRIO) */
.btn-login {
  background: transparent;
  color: #fff;

  padding: 6px 12px;
  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.2);

  font-size: 13px;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.25s ease;

  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}

/* HOVER */
.btn-login:hover {
  background: rgba(255,255,255,0.08);
  border-color: #46c2ff;
  color: #46c2ff;
}

.btn-login {
  display: inline-block;
  text-decoration: none;
  text-align: center;

  background: transparent;
  color: #fff;

  padding: 6px 12px;
  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.2);

  font-size: 13px;
  font-weight: 500;

  cursor: pointer;
}

/* Planos */
.submenu a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.submenu a:hover {
  color: #e50914;
}

