/* Base Styles */
body, html {
    padding: 0px;
    font-family: Arial, sans-serif;
    color: #fff;

     margin: 0;
}

/* Classe base para ocultar elementos inicialmente */
.hidden {
    opacity: 0;
    transform: translateY(20px); /* Move o elemento para baixo */
    transition: all 0.6s ease-out; /* Transição suave */
}

/* Classe para mostrar elementos */
.visible {
    opacity: 1;
    transform: translateY(0); /* Volta o elemento à posição original */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 300px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;

}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    line-height: 45px;
    margin-right: 50px
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


/* Estilos básicos */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f3f3f3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none; /* Oculto por defecto en pantallas grandes */
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
/* Estilo normal do link */
nav ul li a {
    text-decoration: none;
    color: #191919;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #cf8300;
}

/* Estilo para o item ativo */
nav ul li a.active {
    color: #ffffff;
    font-weight: bold; /* Opcional: destaca o item ativo */
    background-color: #051a67;
    border-radius: 10px;
    padding: 5px;;
}


/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Mostrar el botón hamburguesa */
    }

    nav ul {
        display: none; /* Ocultar el menú por defecto */
        flex-direction: column;
        background: linear-gradient(to right, rgb(255, 255, 255), rgb(218, 220, 223));
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 30px;
      
    }

    nav ul.active {
        display: flex; /* Mostrar el menú cuando esté activo */
    }

    nav ul li {
        margin: 0px 0;
        text-align: center;
        font-weight: bold;
    }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Ajuste extra para telas muito pequenas */
@media (max-width: 480px) {

}
   
/* Texto dentro da imagem inicial */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
}

/* Ajuste para as seções começarem após a imagem */
section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #ee8f00;
}

/* Estado inicial fora da tela */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.fade-in.active {
  opacity: 1;
}

/* sobre a empresa */
.nossa_empresa {
  background: #f3f2f2;
  color: rgb(55, 55, 55);
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.nossa_empresa-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.nossa_empresa-texto {
  flex: 1 1 500px;
}

.nossa_empresa-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.nossa_empresa-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.nossa_empresa-imagem {
  flex: 1 1 250px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nossa_empresa-imagem img {
  width: 100%;
  height: auto;
  display: block;
}

.nossa_empresa-valores {
  text-align: center;
  margin-top: 60px;
}

.nossa_empresa-valores h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.nossa_empresa-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.nossa_empresa-card {
  background: #f07c00;
  padding: 20px 30px;
  border-radius: 16px;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  color: rgb(32, 32, 32);
  transition: 0.3s;
}

.nossa_empresa-card span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.nossa_empresa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsivo */
@media (max-width: 768px) {
  .nossa_empresa-container {
    flex-direction: column;
    text-align: center;
  }
  .nossa_empresa-imagem {
    width: 100%;
  }

 .nav ul li a {
  color: rgb(255, 255, 255);
}

    
.sessao-perfil h2{
    font-size: 39px;
  }

}
/* sobre a empresa */

/* Estilização da seção de planos */
.planos-modernos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: rgb(233, 147, 19);  }
  

  .plano-box {
    background: linear-gradient(to right, rgb(216, 137, 0), rgb(196, 93, 2));
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 8px;
    width: 280px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .plano-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .plano-beneficio {
    font-weight: bold;
    color: #ffffff;
  }
  
  .plano-apps img {
    height: 50px;
    margin: 5px;
  }
  
  .sky-banner {
    background: #128a9c;
    color: white;
    padding: 6px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .plano-detalhes {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 10px 0;
  }
  
  .plano-detalhes li {
    margin: 5px 0;
  }
  
  .plano-preco {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
  }
  
  .btn-contratar {
    background-color: #007f0d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-contratar:hover {
    background-color: #00ed34;
  }
  .ver-grade-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: #090260;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
    margin-bottom: 10px;
  }
  
  .ver-grade-btn:hover {
    background: #0043c2;
  }
  .icone-branco {
    color: white;
    margin-right: 3px;
    margin-left: 10px;
  }
  
  
  /* cobertura */
  .area-cobertura {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #111, #222);
  color: #fff;
  padding: 60px 20px;
  gap: 40px;
}

.conteudo-cobertura {
  flex: 1 1 300px;
  max-width: 500px;
  
}

.conteudo-cobertura h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffcc00;
      margin-top: -30px;

}

.conteudo-cobertura p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.lista-cidades {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.lista-cidades li {
  margin-bottom: 8px;
  font-weight: bold;
}

.mapa-animado {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: center;
}

.mapa-animado img {
  max-width: 100%;
  height: auto;
  animation: pulso 1s ease-in-out infinite;
  border-radius: 12px;

}

@keyframes pulso {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
  .area-cobertura {
    flex-direction: column;
    text-align: center;
  }
.mapa-animado {
margin-top: -130px;
}
  .conteudo-cobertura h2 {
    font-size: 2rem;
    margin-top: -30px;
  }
}

  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to   {opacity: 1; transform: translateY(0);}
  }

    /* cobertura */

  
  .close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  


  /* RESPONSIVIDADE */
  @media (max-width: 500px) {
    .modal-content {
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 14px;
margin-left: -40px;    }
  
    .titulo-modal {
      font-size: 1.2rem;
    }
  
    .logos-canais img {
      width: 60px;
    }
  
    .close {
      font-size: 20px;
    }
  }
    /* MODAL BASE */


.vantagens {
    padding: 40px 20px;
    background-color: rgb(24, 24, 24);
}

.vantagens h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #171717;
}

.vantagens p {
    font-size: 16px;
    color: #ffffff;
    margin-top: -8px;
}

h3{
    color: rgb(255, 145, 0);
    margin-top: -10px;
}

.vantagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.vantagem {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.vantagem:hover {
    transform: scale(1.05);
}

.vantagem img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.vantagemh4{
  color: #f59300;
    text-align: center;
    font-size: 40px;
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.vantagem h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.vantagem p {
    font-size: 14px;
    color: #030303;
}

.btn_faq{
  background-color: #d77300;
  padding: 10px;
  border-radius: 8px;
  color: white;
}
.faq-section {
    text-align: center;
    padding: 2rem 1rem;
  background: #000;             /* fundo preto */
    margin-top: 0px;
}
  
  .faq-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .faq-image img {
    width: 320px;
    height: 370px;
    object-fit: cover;
    padding: 10px;
  }
  
  .faq-text h4 {
    color: #ee8f00;
    font-weight: bold;
    margin-top: -60px;
  }
  
  .faq-text h2 {
    color: #fff9f9;
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  .faq-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fffefe;
  }
  
  .btn {
    background: linear-gradient(to right, rgb(253, 135, rgb(225, 176, 1) 30));
    color: rgb(255, 255, 255);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
  }
  
  .autoatendimento {
    margin-top: 3rem;
  }
  
  .autoatendimento h2 {
    color: #fffafa;
    font-size: 1.5rem;
        margin-top: -60PX;

  }
  
  .autoatendimento p {
    color: #ffffff;
    margin-bottom: 2rem;
    margin-top: -20PX;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .card {
background-color: #e69201; 
    padding: 1.5rem;
    border-radius: 15px;
    width: 200px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card img {
    width: 70px;
    margin-bottom: 0.2rem;
  }
  
  .card span {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    color: white;
  }

  a {
  text-decoration: none;
}
  /* Responsivo */
  @media (min-width: 768px) {
    .faq-top {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-align: left;
    }


    .faq-text {
      max-width: 400px;
      margin-left: 2rem;
    }
  }

/* 🔹 Responsividade para telas menores (celulares) */
@media screen and (max-width: 768px) {
    .vantagens-container {
        flex-direction: column;
        align-items: center;
    }

    .vantagem {
        width: 90%;
        max-width: 320px;
    }
}

#streamings {
    padding: 60px 20px;
    background-color: rgb(233, 147, 19);
    text-align: center;
  }
  
.filmes_txt{
    color: rgb(255, 255, 255);
text-align: center;
font-weight: bold;
 }

  .titulo_streamings {
    font-size: 45px;
  color: #121212;
    margin-bottom: 10px;
    margin-top: -50px;
    font-weight: bolder;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  /* Swiper config */
  .swiper {
    padding: 20px 0;
  }
  
  .swiper-slide {
    width: 100vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #f80404;
  }
  

  /* Swiper config */


  .sobre-nos {
    padding: 30px 20px;
    background-color: #ee8f00;
    border-radius: 50px;
  }
  
  .container-sobre {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .texto-sobre {
    flex: 1 1 500px;
  }
  
  .mundo{
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  .texto-sobre p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
  }
  
  .btn-sobre {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    color: #fffffffc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-sobre:hover {
    background-color: #ff9900;
    color: #fff;
  }
  
  .imagem-sobre {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .imagem-sobre img {
    max-width: 110%;
  }
  

/* Estilo Moderno para Carrossel */
.carrossel-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carrossel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Proporção widescreen */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.imagem-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.imagem-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(12, 12, 12, 0.7) 100%
    );
    z-index: 1;
}

.conteudo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.conteudo h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font: bolder;
}

.conteudo p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
    line-height: 1.6;
    margin-top: -25px;
}

.botao {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: rgb(243, 162, 12);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.botao:hover {
    background: linear-gradient(135deg, #FF8C00, #FF7700);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Efeito de transição entre slides */
.slide:not(.active) {
    transform: scale(0.95);
}

/* Responsividade */
@media (max-width: 992px) {
    .carrossel {
        aspect-ratio: 3/2;
    }
    
    .conteudo {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carrossel {
        aspect-ratio: 1/1;
    }
    
    .autoatendimento h2 {
       margin-top: 50px;
      }
    .conteudo {
        width: 95%;
        padding: 1rem;
        
    }
    
    .botao {
        padding: 0.6rem 1.5rem;
    }

    .conteudo p{
        margin-top: 10px;

    }

    .sobre-nos {
      margin-bottom: -50px;
    }

    .tcnet-content p {
      margin-top: -39px;
      flex-wrap: wrap;
}

.tcnet-image img{
  width: 110%;
  margin-top: -100px;
}

}

@media (max-width: 480px) {
    .carrossel {
        aspect-ratio: 2/3;
    }
    
    
    .conteudo h2 {
        font-size: 1.5rem;
    }
    
    .conteudo p {
        font-size: 0.9rem;
    }
}

/* PLANOS EMPRESA*/


.saiba-mais {
  display: block;
  text-align: left;
  margin: 15px 20px 25px;
  color: #222222;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.saiba-mais:hover {
  color: #009f1b;
}

/* RESPONSIVO */

/* PLANOS*/


/* === EFEITO TARJA CIRCULANDO === */
.plano-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  z-index: 1;
}

/* Cria a tarja animada */
.plano-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(#ffffff, #f1f1f1, #ffff00);
  animation: girarTarja 4s linear infinite;
  z-index: -1;
}

/* Máscara para que só apareça como borda */
.plano-card::after {
  content: "";
  position: absolute;
  inset: 6px; /* controla a espessura da borda animada */
  background: #000; /* cor interna do card */
  border-radius: 12px;
  z-index: 1;
}

/* Ajusta o conteúdo para ficar acima do efeito */
.plano-card > * {
  position: relative;
  z-index: 2;
}

/* Animação do giro */
@keyframes girarTarja {
  0% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(420deg);
  }
}



#planos {
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
    background-color: rgb(233, 147, 19);}

.titulo_planos {
  font-size: 3rem;
  color: #0d0d0d;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -10px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Plano com topo animado */
.imagem-topo {
  position: relative;
  overflow: hidden;
}

.imagem-topo::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,0,0.2), transparent 70%);
  animation: brilho 3s linear infinite;
  pointer-events: none;
}

@keyframes brilho {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

/* cor de fundo da faixa */
.faixa-animada {
  width: 100%;
  background: #101010; /* cor de fundo da faixa */
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
}

.faixa-animada p {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  animation: moverTexto 10s linear infinite;
}

@keyframes moverTexto {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .faixa-animada p {
    font-size: 1rem;
  }
}
/* cor de fundo da faixa */

.btn-assinar {
  background: linear-gradient(45deg, #34ed0a, #028708, #02a741);
  background-size: 200% 200%;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  animation: degradê 4s ease infinite;
  border: none;
  transition: transform 0.3s;
}

.btn-assinar:hover {
  transform: scale(1.05);
}

@keyframes degradê {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.planos-modernos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plano-card {
  background: rgb(16, 16, 16);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.imagem-topo {
  position: relative;
}

.imagem-topo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.velocidade-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #0f0f0f;
  color: rgb(255, 171, 2);
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.plano-card ul {
  list-style: none;
  padding: 20px;
  text-align: left;
}

.plano-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  background: url('https://cdn-icons-png.flaticon.com/512/190/190411.png') no-repeat left center;
  background-size: 18px;
  font-size: 0.95rem;
  color: #ffffff;
}

.preco {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0;
}

.preco span {
  display: block;
  font-size: 0.9rem;
  color: #c7ba80;
}

.botoes-plano {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}


.streaming-swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.streaming-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.streaming-card:hover {
  transform: scale(1.03);
}

.logo-topo {
  display: none; /* REMOVIDO conforme novo objetivo */
}

.imagem-destaque {
  width: 100%;
  aspect-ratio: 16 / 9; /* Mantém todas do mesmo tamanho */
  overflow: hidden;
}
.imagem-destaque img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.descricao-curta {
  padding: 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  text-align: center;
  background-color: #fff;
}

/* swiper */

/* Responsivo */
@media (max-width: 768px) {
  .planos-modernos {
    flex-direction: column;
    align-items: center;
  }

.plano-card {
  width: 300px;
}
}
/* PLANOS*/

.tcnet-section {
    background-color: rgb(255, 255, 255);
  color: rgb(39, 39, 39);
  padding: 40px 0px;
}

.tcnet-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tcnet-image {
  flex: 1 1 400px;
  text-align: center;
}

.tcnet-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: -80px;
}

.tcnet-content {
  flex: 1 1 500px;
}

.tcnet-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-saiba-mais {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgb(206, 112, 12);
  color: #fffafa;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
  background-color: #000000;
}

.limites{
  font-size: 40px;
  flex-wrap: wrap;
}

.tcnet-content p{
  margin-top: -30px;
}

.internet-jogos {
  padding: 60px 20px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(227, 227, 227));
  color: #232323;
  font-family: 'Arial', sans-serif;
}

.jogos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.jogos-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 174, 255, 0.2);
}

.jogos-content {
  flex: 1;
  min-width: 300px;
}

.jogos-content h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1543a7;
}

.jogos-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.6;
}

.jogos-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #02a823;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.jogos-btn:hover {
  background: #00cc6d;
}


/* Contato*/
.contato {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, rgb(20, 20, 20), rgb(10, 10, 10));
}
.titulo {
  background-color: #ee8e09;
  color: white;
  padding: 40px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.titulo h1 {
  margin: 0;
  font-size: 36px;
}

.titulo p {
  margin-top: 8px;
  font-size: 16px;
}

.subtitulo {
  color: #ffffff;
  margin: 40px 0 30px;
  font-size: 34px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.icones-contato {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.item {
  background: linear-gradient(to right, rgb(243, 243, 243), rgb(233, 233, 233));
  color: rgb(15, 15, 15);
  padding: 30px 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.item:hover {
  transform: translateY(-5px);
}

.item i {
  font-size: 32px;
  margin-bottom: 10px;
}

.item h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.item p {
  font-size: 16px;
}

.redes-sociais h2 {
  color: #f38600;
  margin-bottom: 15px;
  font-size: 24px;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.redes a {
  text-decoration: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.horario-atendimento {
  background-color: #ee8e09;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.horario-atendimento h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}

.horario-atendimento p {
  font-size: 16px;
  margin: 5px 0;
  color: #ffffff;
}

/*baner inicial-gamer*/

.internet-gamer-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(5, 255, 100, 0.1)), url('img/gamer-banner.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: #ffae00;
  text-align: center;
  margin-bottom: -99px;
  font-family: 'Orbitron', sans-serif;
  padding-top: 250px;

  }

.internet-gamer-conteudo h3 {
  font-size: 2.5rem;
  margin-bottom: -20px;
  color: #f2ff00;
  text-shadow: 0 0 8px #ff7b00;
}

.internet-gamer-conteudo h3 span {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 4px #ffffff;
}

.internet-gamer-conteudo h3 strong {
  font-size: 4rem;
  font-weight: 900;
  display: block;
}

.internet-gamer-conteudo p {
  font-size: 1.1rem;
  margin: 20px 0 30px;
  color: #e0e0e0;
}


/* Responsivo */
@media (max-width: 768px) {
  .internet-gamer-conteudo h3 {
    font-size: 2rem;
  }

  .internet-gamer-conteudo h3 strong {
    font-size: 2.8rem;
  }

  .internet-gamer-conteudo p {
    font-size: 1rem;
  }

  .botao-gamer {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}
/*baner inicial-gamer*/

/*gamer-planos*/

/* Responsividade */
@media (max-width: 768px) {
 
  .paragrafo_perfil{
    color: #000;
    margin-bottom: 30px;
  }
}



.telefonia-fixa-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(72, 48, 1, 0.279)), url('img/telefonia-\ \(2\).jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: white;
  text-align: center;
  margin-bottom: 0px;
}

.telefonia-fixa-conteudo h3 {
  font-size: 2.5rem;
  margin-bottom: -20px;
  color: white;
}

.telefonia-fixa-conteudo h3 span {
  color: #ffffff;
  font-weight: bold;
}

.telefonia-fixa-conteudo h3 strong {
  font-size: 4rem;
  font-weight: 900;
}

.telefonia-fixa-conteudo p {
  font-size: 1.1rem;
  margin: 20px 0 30px;
}

.botao-telefonia {
  background-color: #ff9900;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.botao-telefonia:hover {
  background-color: #034977;
}

/* Responsivo */
@media (max-width: 768px) {
  .telefonia-fixa-conteudo h3 {
    font-size: 2rem;
  }

  .telefonia-fixa-conteudo h3 strong {
    font-size: 2.8rem;
  }

  .telefonia-fixa-conteudo p {
    font-size: 1rem;
  }

  .botao-telefonia {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}
/*planos telefone*/



.mapa-cobertura{
  background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(72, 48, 1, 0.279)), url('img/cobertura.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: white;
  text-align: center;
  margin-bottom: 0px;
  height: 300px;
}

.mapageral h3 {
  font-size: 2.3rem;
  margin-bottom: -20px;
  color: white;
}

.mapageral h3 span {
  color: #ffffff;
  font-weight: bold;
}

.mapageral h3 strong {
  font-size: 3rem;
  font-weight: 900;
}

.mapageral p {
  font-size: 1.1rem;
  margin: 20px 0 30px;
}

.botao-mapa{
  background-color: #ff9900;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.botao-mapa:hover {
  background-color: #034977;
}

/* Responsivo */
@media (max-width: 768px) {
  .mapa-cobertura h3 {
  font-size: 1.5rem; /* valor proporcional, não fixo em px */
  margin-top: 50px;
  }

  .mapageral h3 strong {
    font-size: 2.4rem;
  }

  .mapageral p {
    font-size: 1rem;
  }

  .botao-mapa {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
 .mapa-cobertura {
    padding: 60px 15px;
  }


}

@media (max-width: 480px) {
  .mapageral h3 strong {
    font-size: 2rem;
  }
  .botao-mapa {
    width: 40%;
    justify-content: center;
  }
}




@media (max-width: 600px) {
  .item {
    width: 100%;
  }
  .redes {
    flex-direction: column;
    align-items: center;
  }
  .mapa iframe {
    height: 250px;
  }
  .tcnet-content p{
    font-size: 18px;
    flex-wrap: wrap;
    margin-left: 10px;
    margin-right: 10px;
  
  }
  .limites{
    margin-top: -50px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    font-size: 35px;
  }

.titulo_streamings{
  font-size: 40PX;
  flex-wrap: wrap;

}
  
}
/* contatos */

/* ===== Footer Base ===== */
#footer {
  background: #ffffff;
  color: #181818;
  padding: 40px 20px 15px;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: -50px;
  border-radius: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
/* Logo ANATEL no rodapé lado esquerdo */
.footer-anatel {
  display: block;
  width: 140px;        /* tamanho padrão */
  max-width: 20vw;     /* responsivo */
  height: auto;
  opacity: 0.8;
  margin: 10px 0 0 0;  /* margem superior, sem empurrar para o lado */
  margin-top: -90px;
  margin-bottom: -80px;
}

.footer-anatel:hover {
  opacity: 1;
}

/* Ajuste para telas menores */
@media (max-width: 600px) {
  .footer-anatel {
    width:150px;       /* reduz um pouco no mobile */
    max-width: 30vw;
    margin-top:-45px;
  }
}




/* Colunas */
.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Logo */
.footer-logo {
  width: 280px;
  margin-bottom: 15px;
}

/* Redes sociais */

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;       /* bolinha branca atrás */
  padding: 5px;
  transition: transform 0.3s, background 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
  background: #ff9800;   /* muda para laranja ao passar o mouse */
}

/* Títulos */
.footer-title {
  color: #ff9800;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Links */
.footer-column a {
  color: #ff9800;
  text-decoration: none;
}
.footer-column a:hover {
  text-decoration: underline;
}

/* Lista de cidades */
.cidades-lista {
  list-style: none;
  padding: 0;
}
.cidades-lista li {
  background: rgba(5, 5, 5, 0.926);
  padding: 5px 10px;
  margin: 5px 0;
  border-radius: 5px;
  color: white;
}

/* Linha */
#footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 20px 0;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  font-size: 14px;
}
.footer-bottom a {
  color: #ff9800;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cidades-lista li {
    display: inline-block;
    margin: 3px;
  }
}



/* perfil */
.sessao-perfil{
    background-color: rgb(233, 147, 19);}
.titulo-principal {
  font-size: 2.9rem;
  margin-bottom: 30px;
  color: #121212;
  margin-top: -20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  flex-wrap: wrap;
  font-weight: bolder;
}

.paragrafo_perfil{
  color: #ffffff;
  margin-top: -20px;
  text-align: center

}

.grid-perfis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-perfil {
  background: #000;             /* fundo preto */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #00000015;
  padding-bottom: 20px;
  transition: transform 0.2s ease-in-out;
}

.card-perfil:hover {
  transform: translateY(-5px);
}

.card-perfil img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-perfil h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: #ffffff;
}

.botao-verde {
  background: #d77300;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin-left: 10px;
  margin-top: 10px;
}

.botao-verde:hover {
  background: #24d800;
}

/* perfil */
.youtube-section {
  width: 100vw;                 /* ocupa toda a largura da tela */
  margin: 0 calc(-50vw + 50%);  /* escapa do container centralizado */
  background: #000;             /* fundo preto */
  color: #fff;
  padding: 60px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: -30px;
}



.youtube-text {
  flex: 1;
  min-width: 250px;
}

.youtube-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.youtube-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-youtube {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-youtube:hover {
  background: #cc0000;
}

.youtube-video {
  flex: 1;
  min-width: 300px;
}

.youtube-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .youtube-section {
    flex-direction: column;
    text-align: center;
  }

  .youtube-video iframe {
    height: 200px;
  }
}


/* Estilos base */

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px; /* Reduz margem inferior */
}


.right-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

hr {
    border: none;
    height: 1px;
    background-color: #000000;
    margin: 20px 0;
}

  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    animation: bounce 2s infinite;
  }
  
  .whatsapp-btn img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Efeito pulando */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
   
.mundo{
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
top: -50px;


position: relative;

}
  .texto-sobre p{

    margin-top: -40px;
  }
.logo {
        width: 250px; /* Reduz o tamanho do logo */
 }

.footer-logo {
margin-bottom: -150px;
}
.social-icons img {
  margin-top: 50px;
margin-left: 27px;
margin-bottom: -30px;
}

}

