/* 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-color: #acacac;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 120px;
}

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-color: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex; /* Mostrar el menú cuando esté activo */
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}

#particles-js {
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('img/TECHMU.jpg'); /* Aqui usamos a imagem enviada */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Overlay de texto sobre as partículas */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

/* Estilo do título */

#typing-text {
    font-size: 6vw; /* Escala com o tamanho da tela */
    color: white;
    white-space: normal;
    overflow: hidden;
    border-right: 3px solid white;
    animation: blink 0.7s infinite;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Ajuste extra para telas muito pequenas */
@media (max-width: 480px) {
    #typing-text {
        font-size: 7vw; /* Um pouco maior em telas bem pequenas */
    }
}


/* Estilo do parágrafo */
.text-overlay p {
    font-size: 1.5em;
    line-height: 1.2;
    max-width: 80%;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Camada azul transparente */
#particles-js::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(7, 66, 2, 0.407);
    z-index: 1;
    pointer-events: none;
}


/* 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;
}



/* Estilização da seção de planos */
.planos-modernos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(231, 231, 231));
  }

  .titulo_planos{
    color: #000000;
    text-align: center;
    font-size: 50px;
    margin-top: -10px;
    margin-bottom: -2px;
  }
  
  .plano-box {
    background: linear-gradient(to right, rgb(5, 11, 98), rgb(4, 73, 126));
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 270px;
    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: 77px;
    margin: 5px;
  }
   
  .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: #019d20;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-contratar:hover {
    background-color: #35c554;
  }
  
.vantagens {
    padding: 40px 20px;
    background: linear-gradient(to right, rgb(0, 255, 17), rgb(2, 49, 2));
}

.vantagens h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #171717;
}

.vantagens p {
    font-size: 16px;
    color: #ffffff;
    margin-top: -8px;
}

h3{
    color: blue;
}

.vantagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}


.secao-feedback {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.titulo-feedback {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
}

.feedback-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feedback-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 280px;
  width: 100%;
  cursor: pointer;
}

.feedback-card img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.feedback-card img:hover {
  transform: scale(1.03);
}

.paragrafo_feeback{
  color: black;
  margin-top: -23px;
  text-align: center;
  flex-wrap: wrap;

}

/* Modal Zoom */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-conteudo {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .feedback-container {
    flex-direction: column;
    align-items: center;
  }

  .titulo-feedback {
    font-size: 1.5em;
  
}

.titulo-feedback {

  margin-top: -15PX;

}


}



.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: #000000;
    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-color: #0f0f96;
    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-color: #010541;
    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(255, 255, 255), rgb(231, 231, 231));
    text-align: center;
  }
  
.filmes_txt{
    color: black;
text-align: center;
font-weight: bold;
 }

  .titulo_streamings {
    font-size: 28px;
    color: #0e176f;
    margin-bottom: 10px;
    margin-top: -50px;
  }
  
  .streaming-card {
    background: #a9afc3;
    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%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .descricao-curta {
    padding: 15px;
    font-size: 14px;
    color: #101010;
  }
  
  .descricao-curta p {
    margin: 0;
    line-height: 1.5;
    max-height: 4.5em; /* limita 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Swiper config */
  .swiper {
    padding: 20px 0;
  }
  
  .swiper-slide {
    width: 300px;
    height: 100%;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #442b9d;
  }
  
  
  .sobre-nos {
    padding: 60px 20px;
    background: linear-gradient(to right, rgb(0, 255, 17), rgb(2, 49, 2));
    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: #2200ff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-sobre:hover {
    background-color: #0057ff;
    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(3, 1, 93, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(2, 3, 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;
    }
        
}

@media (max-width: 480px) {
    .carrossel {
        aspect-ratio: 2/3;
    }
    
    
    .conteudo h2 {
        font-size: 1.5rem;
    }
    
    .conteudo p {
        font-size: 0.9rem;
    }
}

/* Estilos base */
footer {
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(227, 227, 227));
    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;
}

.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 */
}

.right-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.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: #0404b3;

}

.phone::before {
    content: "\f095"; /* Ícone de telefone */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0404b3;

}

.email::before {
    content: "\f0e0"; /* Ícone de e-mail */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0404b3;
}

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 */
}

.agency {
    font-size: 14px;
    color: #000000;
}

.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 */
    }
}