/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000; /* fundo preto */
  color: #ffffff; /* texto branco */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000; /* fundo preto */
  padding: 1rem 2rem;
  border-bottom: 2px solid #1e1e1e; /* borda cinza escuro */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 50px;
  filter: drop-shadow(0 0 20px #e20d09); /* efeito neon vermelho */
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

/* deixa o botão position relative para as spans absolute */
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  margin-bottom: 5px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}


/* posições das barras inicialmente */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
  margin-bottom: 0;
}

/* Quando ativo: o X perfeito */
.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


/* Menu */
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
}

.logo img {
  max-height: 50px;
}

/* Botão Hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 10000;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Quando o botão estiver ativo (menu aberto) */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(11px) rotate(-45deg);
}

/* Menu principal */
/* FIXAR O MENU NO TOPO */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #111; /* Recomendo manter fundo para melhor visual */
  z-index: 9999;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* para não ficar em cima do conteúdo, dá um padding-top no body igual a altura do menu (exemplo 60px) */
body {
  padding-top: 60px;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.menu a:hover {
  color: #fc0303;
}

/* Submenu */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  display: none;
  flex-direction: column;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border-radius: 4px;
}

.submenu a {
  padding: 10px;
  color: #ccc;
}

.submenu a:hover {
  color: white;
  background-color: #fc0303;
}

.has-submenu.active .submenu {
  display: flex;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #111;
    flex-direction: column;
    width: 250px;
    padding: 20px;
    display: none;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-radius: 0 0 10px 10px;
  }

  .menu.show {
    display: flex;
  }

  .has-submenu .submenu {
    position: static;
    box-shadow: none;
    border-left: 2px solid #fc0303;
    margin-top: 5px;
  }
}





/* section 01 */
.hero-slide {
  position: relative;
  overflow: hidden;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e20d09;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
  background: url('imagens/banner.jpg') no-repeat center center/cover; /* imagem de fundo */
  background-attachment: fixed; /* faz a imagem ficar fixa enquanto o conteúdo rola */
  background-position: center;
  background-size: cover;
}

/* Efeito para o overlay */
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  animation: fadeIn 5s ease forwards;
}

/* Título */
.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-overlay h1 .highlight {
  color: #e50914; /* vermelho Start TV */
}

/* Subtítulo */
.hero-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Botão */
.btn-hero {
  background-color: #e50914; /* vermelho Start TV */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-hero:hover {
  background-color: #b00610; /* tom mais escuro no hover */
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 2rem;
  }

  .hero-slide h3 {
    font-size: 1.2rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


/* Animação */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero-text {
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}



/* Section 02 - Text + Video */
.text-video-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #111; /* fundo escuro */
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
  margin: 2rem;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 280px;
}


.text-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.text-content h2 .highlight {
  color: #e50914;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ddd;
}

.text-content .subtitulo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e50914;
  margin-top: 1rem;
}

.video-content {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-content video {
  width: 100%;
  max-width: 295px;
  border-radius: 12px;
  border: 2px solid #e50914;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.video-description {
  margin-top: 0.75rem;
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
  .text-video-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .text-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .video-content video {
    max-width: 100%;
  }

  .text-content p {
    font-size: 1rem;
    text-align: center;
  }
}

/* Section 03 - carrossel */
/* Estilo geral da seção */
.filmes-carousel {
  padding: 2rem 1rem;
  background-color: #111;
  color: #fff;
}

/* Título da seção */
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Container do carrossel */
.carousel-container {
  width: 100%;
  overflow: hidden; /* 🔴 impede barra de rolagem */
  position: relative;
}

/* Trilho dos cards */
.carousel-track {
  display: flex;
  gap: 10px;
  
  animation: scrollLinear 30s linear infinite; /* 🔁 animação contínua */
  animation-play-state: running;
  will-change: transform;
}

/* Card de filme/série */
.filme-card {
  flex: 0 0 auto;
  width: 150px;
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.filme-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #333;
}

.filme-titulo {
  font-size: 0.9rem;
  padding: 0.5rem;
  text-align: center;
  color: #fff;
}

.filme-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}


/* 🔁 Animação de scroll infinito */
@keyframes scrollLinear {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-0%); /* ajusta conforme a quantidade de conteúdo */
  }
}



/*section 04 */
.carrossel-depoimentos {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.depoimentos-carrossel {
  overflow: hidden;
  width: 100%;
}

.depoimentos-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 40s linear infinite;
}

.depoimentos-track:hover {
  animation-play-state: paused;
}

.depoimentos-track img {
  width: 300px;
  height: auto;
  margin-right: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carrossel-depoimentos::before,
.carrossel-depoimentos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}
.carrossel-depoimentos::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}
.carrossel-depoimentos::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}


/*section 05 */

.img-starttv {
  max-width: 100%;  /* para não ultrapassar o container */
  width: 250px;     /* diminui para 250px de largura, ajuste o valor */
  height: auto;     /* mantém a proporção */
  border-radius: 12px; /* se quiser o mesmo estilo do vídeo */
  border: 2px solid #e50914;
  box-shadow: 0 0 100px rgba(229, 9, 20, 0.5);
}

/* section 06 */
/* Section - Status Dashboard */
.status-dashboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 2rem;
  background-color: #111; /* fundo escuro */
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
}

/* Cartões de status */
.status-card {
  background-color: #1a1a1a;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  width: 220px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #222;
}

.status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

/* Ícones */
.status-icon {
  font-size: 2.5rem;
  color: #e50914;
  margin-bottom: 1rem;
}

/* Título dos cards */
.status-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Valor numérico */
.status-card p {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .status-card {
    width: 100%;
    max-width: 300px;
  }
}

/* <!-- Planos --> */
.planos-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #1a1a1a, #000);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.planos-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.plano-card {
  background: #121212;
  border: 2px solid #fc0303;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 30px rgba(252, 3, 3, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(252, 3, 3, 0.5);
}

.plano-card.destaque {
  border-color: #FF9800;
  background: linear-gradient(to bottom, #2a1a00, #000);
}

.badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #FF9800;
  color: #000;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 0 10px #FF9800;
}

.plano-card h3 {
  font-size: 1.8rem;
  color: #ff0000;
  margin-bottom: 10px;
}

.preco {
  font-size: 1.5rem;
  color: #25D366;
  font-weight: bold;
}

.duracao {
  font-size: 1rem;
  color: #B0BEC5;
  margin-bottom: 15px;
}

.beneficios {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.beneficios li {
  padding: 5px 0;
  font-size: 0.95rem;
}

.beneficios li::before {
  content: ' ';
  color: #ff0303;
}

.beneficios .bloqueado {
  color: #B71C1C;
  text-decoration: line-through;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebd5a;
}

/*  section 09 */
/* Seção de aplicativos parceiros */
.apps-parceiros-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #111, #000);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

/* Título da seção */
.apps-parceiros-section .section-title {
  font-size: 2.5rem;
  color: #e50914;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Subtítulo/descrição */
.apps-parceiros-section > p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Grade de aplicativos */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cartão do aplicativo */
.app-card {
  background-color: #1a1a1a;
  border: 2px solid #e50914;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.5);
}

/* Imagem do app */
.app-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #000;
  padding: 10px;
}

/* Nome do app */
.app-nome {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Dispositivos suportados */
.app-dispositivos {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.4;
}

.app-nome a {
  color: inherit;
  text-decoration: none;
}

.app-nome a:hover {
  text-decoration: underline;
}


/* Chat Whatsaap */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fc0303;
  color: white;
  font-size: 16px;
  border-radius: 40px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-chat:hover {
  background-color: #e00202;
  transform: scale(1.05);
}

.whatsapp-chat .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: white;
}

/* <!-- Streamings --> */
.streaming-section {
  background-color: #1c1c1c;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.streaming-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.streaming-section h2 span {
  color: #fc0303;
}

.streaming-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.streaming-section .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.streaming-section .logos img {
  height: 60px;
  filter: brightness(0.9);
  transition: transform 0.3s ease;
}

.streaming-section .logos img:hover {
  transform: scale(1.1);
}

.btn-saiba-mais {
  background-color: #fc0303;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-saiba-mais:hover {
  background-color: #e00202;
  transform: scale(1.05);
}


/* <!--Canais --> */
.carousel-logos-canais {
  padding: 40px 20px;
  background-color: #242424;
  text-align: center;
}

.carousel-logos-canais h2 {
  font-size: 28px;
  color: #fc0303;
  margin-bottom: 30px;
}

.carousel-track-canais {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-inner-canais {
  display: flex;
  gap: 30px;
  animation: canais-scroll 30s linear infinite;
}

.carousel-inner-canais:hover {
  animation-play-state: paused;
}

.carousel-inner-canais img {
  height: 50px;
  filter: brightness(0.9);
  transition: transform 0.3s ease;
}

.carousel-inner-canais img:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

@keyframes canais-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* <!--Rodapé --> */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #ccc;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fc0303;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-social ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #777;
}


/* <!--Ancora --> */
html {
  scroll-behavior: smooth;
}
