html {
  font-size: 100%; /* Usa a base do navegador, responsivo a zoom */
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.container, .slide-track {
  overflow: hidden;
}

body {
  line-height: 1.6;
  font-size: 1rem; /* ou 16px, baseado no root */
  max-width: 100%;
  overflow-x: hidden;
}
/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
  position: relative;
}

/* === ANIMAÇÕES PERSONALIZADAS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    text-shadow: 0 0 8px #ffd700, 0 0 20px #ffd700;
  }
  50% {
    text-shadow: 0 0 16px #ffcc00, 0 0 30px #ffcc00;
  }
}

.text-glow-gold {
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700, 0 0 15px #ffcc00, 0 0 25px #fff3b0;
  animation: pulse 2.5s infinite;
}

.reveal-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards;
}

/* === BANNER DE FUNDO === */
#banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/introbanner.webp') no-repeat center center/cover;
  filter: none;
  z-index: -3;
  transition: background-image 1s ease-in-out;
}

/* === ANIMAÇÃO DE BACKGROUND SUAVE === */
#background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #0047ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  opacity: 0.2;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: slideDown 0.8s ease-out;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px #ff0000;
}
.logo span {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ff0033;
  box-shadow: 0 0 10px #ff0033 inset;
}

/* === HEADER === */
header {
  padding: 120px 20px 90px; /* subiu 60px no topo */
  text-align: center;
}
header h1 {
  font-size: 3.5rem;
  color: #ff0033;
  text-shadow: 0 0 15px #ff0033;
  animation: fadeInUp 1.2s ease forwards, pulse 2.5s infinite;
}
header p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #eee;
  max-width: 700px;
  margin-inline: auto;
}
header button {
  margin-top: 10px;
  background: linear-gradient(45deg, #ff0033, #cc0000);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px #ff0033;
}
header button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff0033, 0 0 50px #cc0000;
}

/* === BOTÕES DE AÇÃO === */
.botoes-duplos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.botao-animado, .botao-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 50px;
  margin-top: 0px; /* subiu 20px */
  padding: 0 15px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(0,255,255,0.2);
}

.botao-animado {
  background: linear-gradient(135deg, #ff0033, #cc0000);
  border-color: #ff0033;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.4);
}
.botao-animado:hover {
  background-color: #ff0033;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(255, 0, 51, 0.8);
}

.botao-whatsapp {
  background: linear-gradient(135deg, #25D366, #1faa5d);
  border-color: #25D366;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
}
.botao-whatsapp:hover {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 0 20px #25D366;
}

/* === SEÇÕES === */
section {
  padding: 100px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
section h2 {
  font-size: 2.2rem;
  color: #ffd700;
  text-shadow: 0 0 15px #ffcc00;
  animation: fadeInUp 1.2s ease forwards, pulse 2.5s infinite;
}
section p, section li {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

/* === PLANOS === */
#planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
}

.plano {
  background: rgba(34, 34, 34, 0.9); /* Sem fundo extra */
  border: 2px solid #8B0000; /* Borda vermelha escura e elegante */
  border-radius: 20px;
  padding: 25px;
  width: 280px; /* Diminuído para tornar o card mais estreito */
  text-align: center;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: 0 0 25px rgba(255, 0, 51, 0.4); /* Brilho suave ao redor do plano */
  overflow: hidden;
}

.plano:hover {
  transform: translateY(-5px) scale(1.02); /* Card mais estreito e leve deslocamento */
  opacity: 0.9; /* Efeito de esmaecimento ao passar o mouse */
  box-shadow: 0 0 35px rgba(255, 0, 51, 0.6), 0 0 50px rgba(204, 0, 0, 0.8); /* Efeito de brilho mais intenso */
}

.plano h3 {
  color: #FF6347; /* Cor de título em tom de vermelho mais suave e sofisticado */
  margin-bottom: 20px;
  font-size: 1.4rem; /* Ajuste para caber em uma linha */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 99, 71, 0.8); /* Efeito de sombra para dar mais impacto */
  animation: fadeInUp 1s ease-out forwards;
}

.plano p {
  margin: 20px 0;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.plano button {
  background: linear-gradient(45deg, #FF6347, #B22222); /* Gradiente suave com vermelho alaranjado */
  color: #fff;
  border: none;
  padding: 18px 40px;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px rgba(255, 99, 71, 0.8);
  display: inline-block;
  text-align: center;
}

.plano button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.6), 0 0 50px rgba(255, 99, 71, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FOOTER === */
footer {
  background: #0d0d0d;
  text-align: center;
  padding: 30px;
  font-size: 0.95rem;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar { justify-content: center; }
  header h1 { font-size: 1.5rem; }
  #planos { flex-direction: column; align-items: center; }
}

/* === TÍTULOS E TEXTOS COM BRANCO + CONTRASTE VERMELHO === */
/* Estilo para o Título Principal (PrimeTV) */
header h1, section h2 {
  font-size: 1.5rem; /* Tamanho das letras */
  font-family: 'Bitter', serif; /* Fonte robusta e clássica, temática */
  color: #dcdcdc; /* Cor prata clara, com tom vintage */
  font-weight: 900; /* Peso forte nas letras */
  text-transform: uppercase; /* Letras maiúsculas para estilo mais imponente */
  letter-spacing: 2px; /* Aumenta o espaçamento entre as letras */
  text-shadow: 
    -2px -2px 5px #000000, /* Sombra de contorno vermelho escuro */
    2px -2px 5px #000000,
    -2px 2px 5px #000000,
    2px 2px 5px #000000,
    0 0 15px #000000, /* Brilho suave vermelho */
    0 0 30px #000000; /* Brilho forte vermelho */
  opacity: 0; /* Inicia invisível para animação */
  animation: fadeUp 1.5s ease-out forwards, textureEffect 5s linear infinite; /* Animações para entrada e textura */
}

/* Animação de Entrada de Cima para Baixo */
@keyframes fadeUp {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Efeito de Textura sutil e brilho pulsante */
@keyframes textureEffect {
  0% {
    text-shadow: 
      -2px -2px 1px #000000, 
      2px -2px 1px #000000,
      -2px 2px 1px #000000,
      2px 2px 1px #000000,
      0 0 2px #000000, 
      0 0 2px #000000;
  }
  50% {
    text-shadow: 
      -2px -2px 1px #000000, 
      2px -2px 1px #000000,
      -2px 2px 1px #000000,
      2px 2px 1px #000000,
      0 0 1px #000000, /* Intensificação do brilho vermelho */
      0 0 1px #000000; /* Intensificação do contorno */
  }
  100% {
    text-shadow: 
      -2px -2px 0px #000000, 
      2px -2px 0px #000000,
      -2px 2px 0px #000000,
      2px 2px 0px #000000,
      0 0 0px #000000, 
      0 0 0px #000000;
  }
}
}


/* Animação de entrada */
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


    @media (max-width: 768px) {
      .video-container iframe {
        width: 95%;
        height: 250px;
      }
    }

.banner-slider {
  overflow: hidden;
  padding: 20px 0;
  background: #000;
  width: 100vw; /* ocupa toda a largura da viewport */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

    .slide-track {
      display: flex;
      width: calc(400px * 12);
      animation: scroll 10s linear infinite;
    }

    .slide {
      width: 400px;
      flex-shrink: 0;
      padding: 0 10px;
    }

    .slide img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
      transition: transform 0.3s ease;
    }

    .slide img:hover {
      transform: scale(1.05);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
	
	
.slider-marcas {
  width: 110%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.0);
  padding: 10px 0;
  margin: -50px 0;
  margin-left: -5%; /* move o slider mais pra esquerda */
}

.slider-track {
  display: flex;
  width: calc(350px * 12);
  animation: scroll 30s linear infinite;
}

.slider-track img {
  width: 120px;
  height: 60px;
  margin: 0 25px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #ff0033);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.1);
}
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 3px 30px; /* << REDUZIDO AQUI */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: slideDown 0.8s ease-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}	

.sobre-nos {
  background: rgba(0, 0, 0, 0.8);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.titulo-sobre {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: bold;
}

.linha-decorativa {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ff0000, #a00000);
  margin: 20px auto 40px;
  border-radius: 10px;
}

.texto-sobre {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Geral */
section {
  width: 100%;
  display: block;
}


/* Container centralizado */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* SOBRE NÓS */
.sobre-nos {
  background-color: #111;
  color: #fff;
  text-align: center;
}

.titulo-sobre {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: bold;
}

.linha-decorativa {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ff0000, #a00000);
  margin: 20px auto 40px;
  border-radius: 10px;
}

.texto-sobre {
  font-size: 1.2rem;
  line-height: 1.8;
  color: ffffff;
}

/* CONTATO */
.contato {
  background-color: #222;
  color: #fff;
  text-align: center;
}

.contato h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.contato p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.botao-contato {
  padding: 15px 30px;
  font-size: 1rem;
  background-color: #008000;
  border: none;
  border-radius: 30px;
  color: #008000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.botao-contato:hover {
  background-color: #008000;
}

/* FOOTER */
.footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.video-section {
  background-image: url();">); /* substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  padding: 60px 0; /* aumenta o espaço para o fundo aparecer melhor */
}

.video-container {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.video-container iframe {
  position: absolute;
  top: -20;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

@keyframes glowText {
  0%, 100% {
    text-shadow:
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000,
      0 0 12px #ff0000,
      0 0 20px #8b0000,
      0 0 30px #8b0000;
  }
  50% {
    text-shadow:
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000,
      0 0 18px #ff3333,
      0 0 25px #a00000,
      0 0 40px #ff0000;
  }
}

.titulo-glow {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
  animation: glowText 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1rem;
  }

  header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .botao-animado, .botao-whatsapp {
    width: 90%;
    min-width: unset;
  }

  .navbar {
    flex-direction: column;
    padding: 10px 15px;
    gap: 10px;
  }

  .container {
    padding: 20px 15px;
  }

  section h2 {
    font-size: 1.8rem;
  }

  section p, section li {
    font-size: 1rem;
    padding: 0 10px;
  }

  .plano {
    width: 90%;
  }

  .video-container iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16/9;
  }

.slide-track, .slider-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

  .slide, .slider-track img {
    flex-shrink: 0;
  }
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Estilo para a barra de navegação */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3); /* Barra com fundo semi-transparente */
  padding: 0px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

/* Estilo para a logo (imagem) */
.logo img {
  height: 60px; /* Reduzir o tamanho da logo para 30px de altura */
  width: 100; /* Mantém a proporção da imagem */
  transition: all 0.3s ease; /* Transição suave para efeitos */
}

/* Efeito ao passar o mouse sobre a logo */
.logo img:hover {
  opacity: 0.8; /* Diminui a opacidade da logo quando o mouse passa sobre ela */
}

/* Estilo para os links de navegação */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px; /* Espaçamento entre os itens da lista */
}

.nav-links li {
  color: #fff;
  font-size: 1.2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover {
  color: #dc143c; /* Cor ao passar o mouse sobre os links */
}


.download-button {
  display: inline-block;
  background: linear-gradient(135deg, #191970, #8b0000);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.download-button:hover {
  background: linear-gradient(135deg, #ff6a00, #ff4500);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Container da barra de redes sociais */
.social-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-size: cover;
  background-position: center;
  padding: 20px;
  border-radius: 10px;
}

/* Estilo dos ícones de redes sociais */
.social-icon {
  display: block;
  width: 60px; /* Tamanho do ícone */
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ícone do Facebook */
.social-icon.facebook {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg');
}

/* Ícone do Instagram */
.social-icon.instagram {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Instagram_logo_2022.svg/512px-Instagram_logo_2022.svg.png');
}

/* Ícone do TikTok */
.social-icon.tiktok {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTWXXatvGdUncxQEmUwic8sz5sOGJCfT-ES2A&s);
}

/* Efeito ao passar o mouse nos ícones */
.social-icon:hover {
  transform: scale(1.1); /* Aumenta o tamanho ao passar o mouse */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Sombra suave ao hover */
}

/* Efeito de foco nos ícones */
.social-icon:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Brilho azul ao focar no ícone */
}

/* Container do Slider */
.banner-slider {
  overflow: hidden;
  padding: 20px 0;
  background: #000;
  position: relative;
}

/* Track de Slides */
.slide-track {
  display: flex;
  width: calc(800px * 12); /* Ajuste conforme o número de slides */
  animation: scroll 25s linear infinite;
}

/* Cada Slide */
.slide {
  width: 300px;
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Imagem do Slide */
.slide img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

/* Efeito de Hover */
.slide img:hover {
  transform: scale(1.05);
}



/* Slide Duplicado para Movimento Infinito */
.slide-track:after {
  content: '';
  display: flex;
  width: calc(300px * 12);
  margin-left: 20px; /* Ajuste conforme necessário */
}

    #planos {
      background-size: cover;
      background-position: center;
}

/* === Seção de Dispositivos === */
.devices {
    background: #111; /* Fundo escuro suave */
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.section-title {
    color: #ffcc00; /* Amarelo dourado brilhante */
    font-size: 2.5em; /* Tamanho maior para impacto */
    font-weight: 800;
    text-transform: uppercase; /* Deixa o título mais imponente */
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0px 4px 10px rgba(255, 204, 0, 0.3); /* Efeito de brilho suave */
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Maior flexibilidade com colunas */
    gap: 30px; /* Aumenta o espaçamento para um layout mais clean */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.device-card {
    background: #222; /* Fundo do card em tom escuro */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, background 0.3s ease;
    box-shadow: 0px 4px 15px rgba(255, 204, 0, 0.5); /* Sombras mais suaves e brilhantes */
    overflow: hidden;
}

.device-card img {
    width: 150px; /* Tamanho da imagem ajustado */
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.device-card p {
    color: #ffcc00; /* Texto dourado que complementa a estética */
    font-size: 1.5em;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-top: 15px;
}

.device-card:hover {
    transform: scale(1.08); /* Efeito de aumento sutil */
    box-shadow: 0px 8px 30px rgba(255, 204, 0, 0.8); /* Sombras mais intensas */
    background: rgba(34, 34, 34, 0.8); /* Efeito de escurecimento ao passar o mouse */
}

.device-card img:hover {
    transform: scale(1.1); /* Aumenta a imagem suavemente ao passar o mouse */
}

/* Adiciona animação sutil para os cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.device-card {
    animation: fadeInUp 0.6s ease-out forwards; /* Animação de entrada suave para os cards */
}


.filme-slider-section {
  background: linear-gradient(to right, #0f0f0f, #1a1a1a);
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.filme-slider-title {
  font-size: 30px;
  margin-bottom: 40px;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 2px 2px 8px #000;
}

.filme-slider-container {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.filme-slide-track {
  display: flex;
  width: calc(3 * 320px * 2); /* 3 filmes x 2 blocos (repetição) */
  animation: filme-scroll 12s linear infinite;
}

.filme-slide {
  flex: 0 0 320px;
  margin: 0 10px;
}

.filme-slide img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.filme-slide img:hover {
  transform: scale(1.05);
}

@keyframes filme-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
	  
	  

/* === Estilos Gerais === */
.faq {
  background-color: #0f0f0f; /* Fundo escuro e sofisticado */
  padding: 60px 20px;
  color: #fff; /* Cor de texto branca */
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(34, 34, 34, 0.9); /* Fundo semitransparente */
  border-radius: 15px;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.7);
}

/* === Título === */
.faq-title {
  text-align: center;
  color: #ffd700; /* Dourado suave */
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.7); /* Sombra suave */
}

/* === Estilos para as Perguntas === */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #444; /* Linha separadora fina */
  padding-bottom: 20px;
}

.faq-question {
  width: 100%;
  background-color: #222; /* Fundo do botão */
  color: #ffd700; /* Cor dourada do texto */
  font-size: 1.6rem;
  font-weight: bold;
  padding: 20px;
  text-align: left;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-question:hover {
  background-color: #b8860b; /* Dourado mais forte ao passar o mouse */
  transform: scale(1.05); /* Efeito de leve aumento */
}

/* === Estilos para as Respostas === */
.faq-answer {
  display: none; /* Inicialmente escondido */
  padding: 15px;
  background-color: #333;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
  font-family: 'Roboto', sans-serif;
}

/* === Animação de Transição para Exibir Respostas === */
.faq-item.active .faq-answer {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsividade para Dispositivos Móveis === */
@media screen and (max-width: 768px) {
  .faq-container {
    padding: 20px;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.4rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* === Garantia Prime === */
.garantia-prime {
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: #fff; /* Texto branco */
  position: relative;
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* Sombra suave para dar profundidade */
  overflow: hidden;
}

.garantia-prime::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Sobreposição escura para melhorar a legibilidade do texto */
  z-index: 1;
  border-radius: 20px;
}

.garantia-prime .garantia-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  z-index: 2; /* Garantir que o ícone fique sobre a sobreposição */
  animation: bounce 1.5s ease-in-out infinite;
}

.garantia-prime p {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.8); /* Sombra suave dourada */
  z-index: 2;
  margin-top: 10px;
  animation: fadeInUp 0.8s ease-out;
}

/* Destacar o texto em negrito */
.garantia-prime p strong {
  color: #ffcc00; /* Dourado para destacar */
  font-weight: bold;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* Efeitos de animação */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
  .garantia-prime {
    padding: 40px 20px;
  }

  .garantia-prime p {
    font-size: 1.3rem;
  }

  .garantia-prime .garantia-icon {
    width: 100px;
  }
}	  


/* === Rodapé Premium === */
.footer {
  background: #222222; /* Fundo escuro para o rodapé */
  color: #fff; /* Texto branco para contraste */
  padding: 40px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.footer-banner {
  background-color: #8B0000; /* Faixa de segurança vermelha */
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease-in-out;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.payment-methods, .security-seals {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.payment-icon, .security-icon {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.payment-icon:hover, .security-icon:hover {
  transform: scale(1.1);
}

.footer-bottom {
  background: ;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #444;
}

.footer-bottom a {
  color: #ffcc00; /* Dourado para links */
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods, .security-seals {
    flex-wrap: wrap;
    justify-content: center;
  }

  .payment-icon, .security-icon {
    width: 40px;
  }
}







body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('img/introbanner.webp') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  padding: 60px 20px;
}

h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 40px;
}

.planos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plano {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ff4500;
  border-radius: 16px;
  padding: 30px;
  width: 280px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}

.plano:hover {
  transform: scale(1.05);
}

.plano h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #ffcc00;
}

.plano p {
  font-size: 1.1em;
  margin: 10px 0;
}

.btn {
  margin-top: 20px;
  background-color: #ff4500;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
}

.btn:hover {
  background-color: #e03e00;
}


.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.plan {
  background-color: #000000;
  border: 2px solid #ff0000;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: scale(1.03);
}

.plan h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.plan ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.plan li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan li img {
  margin-right: 8px;
}

.plan p {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: bold;
}

.btn-green {
  background-color: #00c853;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-green:hover {
  background-color: #00b94c;
}

/* Responsividade */
@media (max-width: 768px) {
  .plans {
    flex-direction: column;
    align-items: center;
  }
}



/* Botão "Teste grátis 3 horas" (vermelho) */
.botao-teste {
  background: linear-gradient(135deg, #e63946, #e63946);
  border-color: #e63946;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.8);
  transition: 0.3s ease;
}
.botao-teste:hover {
  background-color: #e63946;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(255, 0, 51, 0.8);
}

/* Botão "Quero conhecer os planos" (azul royal) */
.botao-animado {
  background: linear-gradient(135deg, #0056b3, #0056b3);
  border-color: #000000;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(65, 105, 225, 1);
  transition: 0.3s ease;
}
.botao-animado:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.8);
}

/* Botão WhatsApp com texto mais legível e efeito suave ao passar o mouse */
.botao-whatsapp {
  background: linear-gradient(135deg, #32CD32, #32CD32);
  border-color: #000000;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 12px rgba(139, 0, 0, 1);
  transition: all 0.3s ease;
  opacity: 1;
}

.botao-whatsapp:hover {
  opacity: 0.85; /* Esmaece levemente */
  box-shadow: 0 0 20px #;
}

.botao-whatsapp:hover {
  opacity: 0.85; /* Esmaece levemente */
  box-shadow: 0 0 20px #000000;
}
/* Botão "Sobre Nós" (cinza claro) */
.botao-sobre {
  background: linear-gradient(135deg, #6c757d, #6c757d);
  border-color: #000000;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(108, 117, 125, 0.8);
  transition: 0.3s ease;
  margin-left: -5px;
}
.botao-sobre:hover {
  background-color: #000000;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(108, 117, 125, 1);
}

.sobre-nos {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
}

.devices {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
}

.social-banner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding: 60px 20px;
  background-image: url('img/fundored.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.filme-slider-section {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding: 60px 20px;
  background-image: url('img/fundored.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding: 60px 20px;
  background-image: url('img/fundored.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.garantia-prime {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* Pode usar 120vw se quiser mais largo que a tela */
  padding: 60px 20px;
  background-image: url('img/fundored.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contato {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* ou 120vw se quiser maior que a tela */
  padding: 60px 20px;
  background-image: url('img/fundored.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* Pode usar 120vw para ir além da tela */
  padding: 60px 20px;
  background-image: url('img/fundored.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-section {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* ou 120vw se quiser mais largo que a tela */
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.botao-whatsapp {
  background-color: #32CD32; /* verde vibrante ideal para ação */
  color: white;
}



body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Aumenta a legibilidade */
}

.botoes-centro {
  text-align: center;
  margin-top: -180px;
}

.botao-espacado {
  margin-left: 0px;
}

.titulo {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}

.titulo {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 5px rgba(0, 0, 0, 0.5);
}


.botoes-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.botao-profissional {
  font-size: 1rem;
  padding: 14px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  text-align: center;
  min-width: 240px;
  margin: 0 5px;
}

.botao-whatsapp {
  background-color: #25D366;
  color: white;
}

.botao-whatsapp:hover {
  background-color: #1ebc59;
  transform: scale(1.05);
}

.botao-planos {
  background-color: #111;
  color: #fff;
}

.botao-planos:hover {
  background-color: #333;
  transform: scale(1.05);
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-button:hover img {
  transform: scale(1.1);
}

.slider-track {
  display: flex;
  width: calc(350px * 12);
  animation: none !important;
}



.botao-profissional {
  animation: pulsar 3s ease-in-out infinite;
}


.dark-overlay {
  position: fixed; /* sempre cobre a tela toda */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2); /* escurecimento ajustável */
  z-index: 1; /* ajuste conforme a posição desejada no layout */
  pointer-events: none; /* permite interação com os elementos abaixo */
}



#banner {
  background-image: url('img/introbanner.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  filter: brightness(0.5); /* quanto menor, mais escuro */
}

.titulo {
  font-size: 1.2rem; /* aumenta o tamanho da fonte */
  margin-top: 50px; /* desce o título */
  color: white; /* garante legibilidade */
  text-align: center; /* opcional, se quiser centralizado */
}


.botao-profissional {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shine animation (única definição) */
@keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(-100%);
  }
  100% {
    transform: skewX(-25deg) translateX(200%);
  }
}

/* Botão Profissional */
.botao-profissional {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.botao-profissional::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg) translateX(-100%);
  animation: shine 2.5s infinite;
  will-change: transform;
  z-index: 2;
  pointer-events: none;
}

/* Botão Verde */
.btn-green {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-green::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg) translateX(-100%);
  animation: shine 1.5s infinite;
  will-change: transform;
  z-index: 2;
  pointer-events: none;
}

/* Título com Shine */


.nav-links {
  margin-top: -30px; /* ajuste o valor conforme necessário */
}
.logo img {
  margin-top: 10px;
}



#planos {
  padding: 40px 20px;
}

.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.plan {
  background-color: #000000;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  flex: 1 1 calc(25% - 20px); /* 4 por linha no desktop */
  max-width: calc(25% - 20px);
  min-width: 250px;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s;
  height: auto;
}

/* Responsivo: Celular */
@media (max-width: 768px) {
  .plan {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 30px 25px;     /* mais largo */
    min-height: unset;      /* remove altura mínima se existir */
  }
}

.plan:hover {
  transform: translateY(-5px);
}

.plan-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.plan ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}

.plan ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.desconto {
  background: #fff;
  color: #ff1a1a;
  border: 1px solid #ff1a1a;
  display: inline-block;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 17px;
}

.plan p {
  font-size: 13px;
  font-weight: bold;
  margin: 15px 0;
}

.btn-green {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-green:hover {
  background-color: #218838;
}



.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button img {
  width: 28px;
  height: 28px;
}

.titulo {
  margin-top: -20px; /* ajuste o valor conforme necessário */
}



.notificacao {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #009e3d; /* verde vibrante */
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
  max-width: 90%;
  box-sizing: border-box;
}

.notificacao.visivel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo para telas menores que 600px */
@media (max-width: 600px) {
  .notificacao {
    bottom: 15px;
    left: 10px;
    right: 10px;
    font-size: 13px;
    padding: 12px 16px;
    max-width: calc(100% - 20px);
  }
}





  .carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 80%;
    max-width: 300px;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background: #000;
  }

  .carousel-slide img {
    width: 100%;
    display: block;
  }

  @media (min-width: 768px) {
    .carousel-slide {
      flex: 0 0 30%;
    }
  }

  .carousel-title {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .arrow-left {
    left: 5px;
  }

  .arrow-right {
    right: 5px;
  }
  
  .video-section {
  margin-top: -5px; /* ajuste esse valor como quiser */
}




.video-bg {
  position: fixed;        /* fixa o vídeo no fundo da tela */
  top: 0;
  left: 0;
  width: 100vw;           /* ocupa largura total */
  height: 100vh;          /* ocupa altura total */
  object-fit: cover;      /* cobre a área sem distorcer */
  z-index: -1;            /* envia para trás */
  pointer-events: none;   /* impede que o vídeo bloqueie cliques */
}




.titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 1.3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* sombra opcional pra destacar */
}

@media (min-width: 320px) and (max-width: 375px) {
  /* Ajuste específico para tablets */
  .titulo {
    margin-left: 0 !important;
    text-align: center;
    font-size: 1.rem; /* ajuste de fonte, opcional */
  }
}

.titulowpp {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 0.9rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* sombra opcional pra destacar */
}

.carousel-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 1.rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* sombra opcional pra destacar */
}

.botoes-centro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Espaço entre os botões */
}

.botao-profissional {
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 480px) {
  .botoes-centro {
    flex-direction: column;
    gap: 15px; /* Aumenta o espaço no celular */
    margin-top: -100px; /* Ajuste se necessário */
  }
}


/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 0px 16px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 40px;
}

/* Menu Desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #5a5aff;
}

/* Ícone de menu */
.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #000;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    transition: height 0.3s ease;
  }

  .nav-links.active {
    height: 100vh;
  }

  .menu-icon {
    display: block;
    position: absolute;
    top: 18px;
    right: 16px;
  }
}

.video-section {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  text-shadow: 0 0 10px black;
  pointer-events: none;
}


/* Estilo da seção de conteúdo IPTV */
.conteudo-iptv {
  background-color: ;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.conteudo-iptv h2 {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #fff;
}

.grid-conteudo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #2a0a0a;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin: 10px 0;
  color: #fff;
}

.card p {
  color: #ddd;
  font-size: 0.95rem;
}

/* Botão WhatsApp */
.botao-centro {
  margin-top: 40px;
}

.btn-whatsapp {
  background: linear-gradient(to right, #ff0000, #cc0000);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-whatsapp:hover {
  background: linear-gradient(to right, #cc0000, #990000);
}


/* Seção Hero */
.hero-iptv {
  padding: 40px 20px;
  color: #fff;
}

.container-hero {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: -120px; /* Faz a seção subir */
}

.imagem-hero img {
  width: 100%;
  max-width: 500px;
}

/* Texto */
.logo-hero {
  width: 70px;
  margin-bottom: 10px;
}

.texto-hero h1 {
  font-size: 2rem;
  margin: 5px 0;
}

.texto-hero h2 {
  font-size: 1.8rem;
  margin: 15px 0;
  line-height: 1.4;
  font-weight: 700;
}

.texto-hero h2 span {
  background-color: #fff;
  color: red;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 5px;
}

.texto-hero p {
  color: #ddd;
  font-size: 1rem;
  margin: 20px 0;
  line-height: 1.5;
}

/* Botão */
.btn-hero {
  background: linear-gradient(to right, #ff0000, #cc0000);
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.btn-hero:hover {
  background: linear-gradient(to right, #cc0000, #990000);
}

/* Desktop */
@media (min-width: 768px) {
  .container-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
  }

  .imagem-hero {
    flex: 1;
  }

  .texto-hero {
    flex: 1;
  }

  .texto-hero h1 {
    font-size: 2.5rem;
  }

  .texto-hero h2 {
    font-size: 2.2rem;
  }
}

.botoes-centro {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  color: white;
  text-align: center;
  font-size: 1.0rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* sombra opcional pra destacar */
}

.botao-profissional {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 1.rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* sombra opcional pra destacar */
}

.botao-sobre {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 1.rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* sombra opcional pra destacar */
}

@media (max-width: 768px) {
  .botoes-centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: -100px; /* Ajuste vertical se quiser */
  }

  .botao-profissional {
    white-space: nowrap; /* 🔥 Impede quebrar linha */
    padding: 14px 24px;
    font-size: 1.rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: 0.3s;
    width: auto; /* 🔥 Ajusta o tamanho automaticamente */
    max-width: 90%;
  }

  .botao-whatsapp {
    background-color: #25D366;
  }

  .botao-planos {
    background-color: #E60023;
  }

  .botao-profissional:hover {
    filter: brightness(0.9);
  }
}


.botao-sobre {
  white-space: nowrap;       /* Impede quebra de linha */
  font-size: 14px;           /* Reduza se necessário para caber */
  padding: 14px 22px;         /* Ajuste o espaço interno */
  max-width: 100%;           /* Garante que respeite a largura do container */
  overflow: hidden;
  text-overflow: ellipsis;   /* Caso fique muito apertado */
}

.botao-profissional {
  background-color: #25D366;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.botao-sobre {
  background-color: #25D366;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.titulo-gloww { 
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.titulowpp { 
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.desconto2 {
  background: #fff;
  color: #ff1a1a;
  border: 1px solid #ff1a1a;
  display: inline-block;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 20px;
}






