/* Base Styles */
body, html {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(231, 231, 231));
    color: #fff;
}

/* 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: linear-gradient(to right, rgb(12, 0, 87), rgb(5, 52, 122));
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 180px;
}

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;
    color: white;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
/* Estilo normal do link */
nav ul li a {
    text-decoration: none;
    color: #2bcc03;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffffff;
}

/* 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;
}

/* 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: linear-gradient(to right, rgb(52, 204, 14), rgb(0, 109, 22));
  padding: 20px 30px;
  border-radius: 16px;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  color: white;
  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);
}

}
/* sobre a empresa */

/* Estilização da seção de planos */
.planos-modernos {
    display: block;
    padding: 20px;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(231, 231, 231));
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .titulo_planos{
    color: #1a1a1a;
    text-align: center;
    font-size: 35px;
    margin-top: -10px;
    margin-bottom: -2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  .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: 12px;
    width: 100%;
    max-width: 320px; /* controla largura do card */
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
  }

  /* Row wrapper para alinhar 3 cards na primeira linha e 2 na segunda, sempre centrados */
  .planos-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  /* Certifica que os cards internos (.plano-card) fiquem responsivos dentro da row */
  .planos-row .plano-card {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }

  
  .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: #00dc16;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-contratar:hover {
    background-color: #18ff0b;
  }
  .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;
  }
  
  /* Responsividade: as rows são flexíveis e quebram conforme o espaço disponível */
  @media (min-width: 1024px) {
    /* Em desktop, queremos 3 cards na primeira row e 2 na segunda — como usamos flex,
       o primeiro .planos-row conterá 3 itens e o segundo conterá 2 itens — ambos centrados. */
    .planos-row { gap: 28px; }
  }

  @media (max-width: 1023px) and (min-width: 700px) {
    /* tablets: duas colunas por row — os itens vão quebrar naturalmente */
    .planos-row { gap: 20px; }
    .planos-row .plano-card { max-width: 360px; }
  }

  @media (max-width: 699px) {
    .planos-row { gap: 16px; }
    .planos-row .plano-card { max-width: 100%; }
    .planos-modernos { padding: 12px; }
  }
  .icone-branco {
    color: white;
    margin-right: 3px;
    margin-left: 10px;
  }
  
  /* MODAL BASE */
  
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    padding: 20px;
  }
  
  .modal-content {
    background: white;
    margin: auto;
    padding: 20px;
    width: 200%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
    margin-top: 80px;
  }
  
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to   {opacity: 1; transform: translateY(0);}
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  
  .titulo-modal {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
  }
  
  /* GRADE DE CANAIS */
  .logos-canais {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  
  .logos-canais img {
    width: 70px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s;
  }
  
  .logos-canais img:hover {
    transform: scale(1.1);
  }
  
  /* 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: linear-gradient(to right, rgb(2, 27, 152), rgb(19, 119, 158));
}

.vantagens h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #171717;
}

.vantagens p {
    font-size: 16px;
    color: #ffffff;
    margin-top: -8px;
}

h3{
    color: rgb(16, 16, 16);
}

.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: #ffffff;
    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;
}

.faq-section {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(218, 218, 218));
    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: #0e094d;
    font-weight: bold;
    margin-top: -60px;
  }
  
  .faq-text h2 {
    color: #181818;
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  .faq-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #323232;
  }
  
  .btn {
    background: linear-gradient(to right, rgb(0, 156, 18), rgb(40, 255, 2));
    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: #272727;
    font-size: 1.5rem;
  }
  
  .autoatendimento p {
    color: #2e2e2e;
    margin-bottom: 2rem;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .card {
    background: linear-gradient(to right, rgb(52, 204, 14), rgb(0, 109, 22));
    color: white;
    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;
  }
  
  /* 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: linear-gradient(to right, rgb(0, 8, 119), rgb(8, 120, 194));
    text-align: center;
  }
  
.filmes_txt{
    color: rgb(255, 255, 255);
text-align: center;
font-weight: bold;
 }

  .titulo_streamings {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: -20px;
  }
  
  .streaming-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 20px;
  }

  .logo-topo img {
    max-width: 100px;
    margin: 20px auto 10px;
  }
  
  .imagem-destaque img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
  }
  
  .descricao-curta {
    padding: 15px;
    font-size: 14px;
    color: #101010;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .descricao-curta p {
    margin: 0;
    line-height: 1.5;
    max-height: 4.5em; /* limita 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
  }


  .streaming-swiper {
    width: 100%;
    overflow: hidden;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  
  
  /* 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;
  }
  
  .sobre-nos {
    padding: 60px 20px;
    background: linear-gradient(to right, rgb(0, 8, 119), rgb(8, 120, 194));
    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(1, 64, 172, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(2, 49, 103, 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);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.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: linear-gradient(135deg, #FFA500, #FF8C00);
    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*/

.empresas-planos {
  padding: 40px 20px;
  background: linear-gradient(to right, rgb(2, 118, 250), rgb(13, 78, 184));
  text-align: center;
  margin-top: 100PX;
}

.titulo-secao {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #ffffff;
  flex-wrap: wrap;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;}

.empresas-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.grade-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.grade-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.plano-card {
  background: linear-gradient(to right, rgb(0, 8, 119), rgb(8, 120, 194));
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.imagem-topo {
  position: relative;
}

.imagem-topo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.velocidade-label {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: rgba(47, 207, 23, 0.871);
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
}

.plano-card ul {
  list-style: none;
  padding: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #ffffff;
}

.plano-card ul li::before {
  content: "✔️ ";
  color: #ffffff;
  margin-right: 4px;
}

.preco {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  padding: 0 20px;
}

.preco span {
  font-size: 1rem;
  font-weight: normal;
  color: #ffffff;
}

.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 */
/* RESPONSIVO REFORÇADO */
@media (max-width: 768px) {
  .empresas-planos {
    padding: 30px 10px;
  }

  .titulo-secao {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .empresas-cards {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .plano-card {
    width: 100%;
    max-width: 360px;
  }

  .imagem-topo img {
    height: 300px;

  }

  .velocidade-label {
    font-size: 1.8rem;
    padding: 3px 10px;
  }

  .plano-card ul {
    padding: 15px;
    font-size: 0.9rem;
  }

  .preco {
    font-size: 1.4rem;
    padding: 0 15px;
  }

  .preco span {
    font-size: 0.9rem;
  }

  .saiba-mais {
    font-size: 0.85rem;
    margin: 10px 15px 20px;
  }

  .botoes-plano {
    padding: 0 15px 20px;
  }

  .btn-canais,
  .btn-assinar {
    font-size: 0.95rem;
    padding: 10px;
  }
}
/* PLANOS EMPRESA*/


.tcnet-section {
  background: linear-gradient(to right, rgb(0, 8, 119), rgb(8, 120, 194));
  color: white;
  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: white;
  color: #0d5bf6;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
  background-color: #e6e6e6;
}

.limites{
  font-size: 40px;
  flex-wrap: wrap;
}

.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(255, 255, 255), rgb(224, 224, 224));
}
.titulo {
  background: linear-gradient(to right, rgb(0, 156, 18), rgb(40, 255, 2));
  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: #212121;
  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(52, 204, 14), rgb(0, 109, 22));
  color: white;
  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: #0d5bf6;
  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;
}

.instagram {
  background-color: #E1306C;
}

.instagram:hover {
  background-color: #c0265d;
}

.facebook {
  background-color: #3b5998;
}

.facebook:hover {
  background-color: #0c2b6d;
}

.mapa {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.horario-atendimento {
  background: linear-gradient(to right, rgb(1, 17, 75), rgb(5, 25, 154));

  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: -69px;
  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;
}

.botao-gamer {
  background-color: #1aff00;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc inset;
}

.botao-gamer:hover {
  background-color: #000;
  color: #00ffcc;
  box-shadow: 0 0 10px #00ffcc, 0 0 30px #00ffcc;
}

/* 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*/
/* Planos Gamer */
.gamerplus-planos {
  background: radial-gradient(circle at top left, #f4f4f4, #fffefa);
  padding: 20px 10px;
  color: #ffffff;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

.gamerplus-titulo {
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #1b1b1b;
  text-shadow: 0 0 10px #fefefe;
}

.gamerplus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.gamerplus-card {
  background-color: #e67b00;
  border: 2px solid #309bff;
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 15px #0a4bad44;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gamerplus-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #2f84f3;
}

.gamerplus-img-topo {
  position: relative;
}

.gamerplus-img-topo img {
  width: 100%;
  border-radius: 12px;
}

.gamerplus-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #07a0f8;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 2.9rem;
  box-shadow: 0 0 10px #00ffcc;
}

.gamerplus-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  color: #ffffff;
}

.gamerplus-card ul li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.gamerplus-card ul li::before {
  content: "🎮";
  position: absolute;
  left: 0;
  color: #2d2d2d;
}

.gamerplus-preco {
  font-size: 1.6rem;
  font-weight: bold;
  color: #131313;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #ffffff;
}

.gamerplus-preco span {
  font-size: 0.9rem;
  color: #000000;
}

.gamerplus-botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gamerplus-btn,
.gamerplus-assinar {
  background: #2185dd;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 0 10px #00ffcc;
}

.gamerplus-btn:hover,
.gamerplus-assinar:hover {
  background: #000;
  color: #00ffcc;
  box-shadow: 0 0 15px #00ffcc;
  cursor: pointer;
}

/* Modais */
.gamerplus-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.85);
}

.gamerplus-modal-content {
  background-color: #ffffff;
  margin: 80px auto;
  padding: 30px;
  border: 1px solid #ffae00;
  width: 90%;
  max-width: 600px;
  color: #212121;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px #ffa600;
}

.gamerplus-modal-content h3 {
  margin-bottom: 20px;
  text-shadow: 0 0 6px #0b96a6;
}

.gamerplus-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.gamerplus-close {
  color: #187e9f;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .gamerplus-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .paragrafo_perfil{
    color: #000;
    margin-bottom: 30px;
   
  }

  .gamerplus-card {
    width: 100%;
    max-width: 350px;
  }

  .gamerplus-titulo {
    font-size: 2rem;
  }

  .gamerplus-modal-content {
    margin: 60px auto;
    padding: 24px;
  }

  .gamerplus-modal-content h3 {
    font-size: 1.2rem;
  }

  .gamerplus-logos img {
    width: 70px;
  }
}

@media (max-width: 600px) {
  .gamerplus-card {
    padding: 16px;
  }

  .gamerplus-label {
    font-size: 2.2rem;
    padding: 4px 10px;
  }

  .gamerplus-card ul li {
    font-size: 0.95rem;
  }

  .gamerplus-preco {
    font-size: 1.4rem;
  }

  .gamerplus-btn,
  .gamerplus-assinar {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .gamerplus-modal-content {
    padding: 18px;
    width: 95%;
  }

  .gamerplus-logos img {
    width: 60px;
  }
}

/*gamer-planos*/

/* planos-*/
.btn-canais {
  background-color: #d2a100;
  color: white;
  border: none;
  padding: 10px 16px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  width: 190px;
  margin-left: 53px;
}

.btn-canais:hover {
  background-color: #ff8c00;
}


.botoes-plano {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.btn-assinar {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 190px;
  margin-left: 40px;
  margin-bottom: 20px;
}

.btn-assinar:hover {
  background-color: #00ff37;
}
/* planos-*/


@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;
  }
}
/* contatos */


.duvida-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(227, 227, 227));
}

.duvida-title {
  text-align: center;
  font-size: 2rem;
  color: #1e1e4f;
  margin-bottom: 30px;
}

.duvida-item {
  border-bottom: 1px solid #ddd;
}

.duvida-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #1e1e2f;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.duvida-question::after {
  content: "▾";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.duvida-question.active::after {
  transform: rotate(180deg);
}

.duvida-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #01a52d;
  transition: max-height 0.3s ease;
}

.duvida-answer p {
  margin: 10px 0;
  color: #ffffff;
  font-size: 1rem;
}

/* perfil */
.titulo-principal {
  font-size: 2.1rem;
  margin-bottom: 30px;
  color: #1e1e2f;
  margin-top: -20px;
}

.paragrafo_perfil{
  color: #000;
  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: linear-gradient(to right, rgb(0, 8, 119), rgb(8, 120, 194));
  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: #23d600;
  color: #fff;
  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: #1ca300;
}

/* perfil */

/* Estilos base */
footer {
  background: linear-gradient(to right, rgb(1, 91, 12), rgb(27, 178, 0));
    color: rgb(29, 29, 29);
    text-align: center;
    padding: 40px 20px; /* Adiciona padding lateral para mobile */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alterado para alinhar no topo */
    gap: 20px; /* Espaçamento entre as seções */
}

.left-section {
    text-align: left;
    flex: 1; /* Ocupa espaço disponível */
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px; /* Reduz margem inferior */
}

.slogan {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
    margin-top: -50px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.right-section {
    text-align: left;
    flex: 1; /* Ocupa espaço disponível */
}

.whatsapp::before {
  content: "\f232"; /* Ícone do WhatsApp */
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  color: #ffffff;
}

.icon whatsapp{
  color: #000;

  
}
.right-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: white;
}

.icon {
    font-size: 15px;
    margin-right: 10px;
}

.location::before {
    content: "\f041"; /* Ícone de localização */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;

}

.phone::before {
    content: "\f095"; /* Ícone de telefone */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;

}

.email::before {
    content: "\f0e0"; /* Ícone de e-mail */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
}

hr {
    border: none;
    height: 1px;
    background-color: #000000;
    margin: 20px 0;
}

.copyright {
    display: flex;
    justify-content: space-between; /* Distribui os elementos */
    align-items: center;
    flex-wrap: wrap; /* Permite quebra de linha em telas pequenas */
    gap: 10px; /* Espaçamento entre os elementos */
    margin-top: 20px;
    
}

.copyright p {
    font-size: 12px;
    margin: 0; /* Remove margens desnecessárias */
    color: white;
}


.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1e1e1e;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
  }
  
  .cookie-consent p {
    margin: 0;
    text-align: center;
    font-size: 14px;
  }
  
  .cookie-consent a {
    color: #4fc3f7;
    text-decoration: underline;
  }
  
  .cookie-consent button {
    background-color: #4fc3f7;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-right: 70px;
  }
  
  .cookie-consent button:hover {
    background-color: #03a9f4;
  }
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    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);
    }
  }

  @media (min-width: 600px) {
    .cookie-consent {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .cookie-consent p {
      text-align: left;
      font-size: 16px;
    }
  }

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Muda para layout de coluna */
        align-items: center; /* Centraliza os elementos */
        text-align: center; /* Centraliza o texto */
    }
.mundo{
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
    .left-section,
    .right-section {
        text-align: center; /* Centraliza o texto nas seções */
        flex: none; /* Remove o crescimento automático */
    }

    .logo {
        width: 250px; /* Reduz o tamanho do logo */
    }

    .slogan {
        font-size: 16px; /* Reduz o tamanho do slogan */
        margin: 10px 0;
        margin-top: -50px;

    }

    .social-icons {
        justify-content: center; /* Centraliza os ícones sociais */
    }

    .right-section h3 {
        font-size: 18px; /* Reduz o tamanho do título */
    }

    .contact-info {
        flex-direction: column; /* Coloca informações de contato em coluna */
        align-items: center; /* Centraliza os itens */
    }

    .icon {
        font-size: 20px; /* Reduz o tamanho dos ícones */
    }

    .copyright {
        flex-direction: column; /* Coloca o copyright em coluna */
        gap: 5px; /* Reduz o espaçamento */
    }
}

