/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b011d;
    color: white;
    overflow-x: hidden;
    
}
.video-overlay {
  position: fixed;
  top: -5%;
  left: -5%;
  width: 110vw;       /* amplia horizontal */
  height: 110vh;      /* amplia vertical */
  object-fit: cover;

  z-index: 2;
  pointer-events: none;

  opacity: 0.45;      /* 🔥 mais visível */
  mix-blend-mode: screen; /* neon mais forte */
}
header,
section,
footer {
  position: relative;
  z-index: 3; /* acima do vídeo */
}
.topo-tipo {
  position: fixed;        /* fixa na tela */
  top: 0;                 /* topo da página */
  left: 0;
  width: 100%;            /* ocupa toda a largura */
  display: flex;
  justify-content: center;
  gap: 14px;              /* espaçamento entre os botões */
  padding: 12px 0;        /* altura da faixa */
  background: white;
  color: black;
  /* fundo semi-transparente */
  z-index: 1001;          /* acima do header */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3); /* opcional: sombra leve */
}

/* mantém os botões estilizados como antes */
.topo-tipo button {
  padding: 8px 22px;
  border-radius: 999px;
  background: white;
  color: black;
  cursor: pointer;
  border: 1px solid rgba(170, 41, 250, 0.4);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.topo-tipo button:hover {
  background: rgba(170, 41, 250, 0.25);
  box-shadow: 0 0 10px rgba(170, 41, 250, 0.6);
  transform: translateY(-1px);
}

.topo-tipo button.ativo {
  background: linear-gradient(135deg, #aa29fa, #9d00ff);
  color: black;
  box-shadow: 0 0 8px rgba(170, 41, 250, 0.8),
              0 0 16px rgba(157, 0, 255, 0.6);
  border-color: transparent;
}
.topo-tipo button,
.topo-tipo button:hover,
.topo-tipo button.ativo {
  color: black !important;   /* força o texto para preto */
}
/* opcional: dá um pequeno espaçamento para não sobrepor o header */
header {
  margin-top: 55px; /* altura aproximada da faixa */
}
.header1 {
  margin-top: 0px; /* altura aproximada da faixa */
}
.hero,
.features,
.bloco-identidade,
.painel-fibra,
.trabalhe-conoscos ,.pilares{
  position: relative;
  z-index: 1;
  border:solid #c3a1ff;
}
.hero .tunnel {
  position: absolute;
  inset: -60%;
  z-index: 0;

  background:
    repeating-radial-gradient(
      circle at center,
      rgba(170, 0, 255, 0.45) 0px,
      rgba(170, 0, 255, 0.45) 2px,
      transparent 7px,
      transparent 16px
    ),
    radial-gradient(
      circle at center,
      rgba(255, 0, 255, 0.25),
      #04000a 70%
    );

  animation: tunnelMove 18s linear infinite;
  transform-origin: center;
}

.campo-empresa {
  display: none;
}
/* SWITCH */
.topo-tipo {
  color: white;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 10px 0;
  z-index: 1001;
}

/* BOTÕES */
.topo-tipo button {
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  border: 1px solid rgba(170, 41, 250, 0.4);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

/* HOVER */
.topo-tipo button:hover {
  background: rgba(170, 41, 250, 0.25);
  box-shadow: 0 0 10px rgba(170, 41, 250, 0.6);
  transform: translateY(-1px);
}

/* ATIVO */
.topo-tipo button.ativo {
  background: linear-gradient(135deg, #aa29fa, #9d00ff);
  color: white;
  box-shadow:
    0 0 8px rgba(170, 41, 250, 0.8),
    0 0 16px rgba(157, 0, 255, 0.6);
  border-color: transparent;
}

/* PIXELS */
.hero .pixels {
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 18px 18px;

  animation: pixelFlow 6s linear infinite;
  opacity: 0.35;
}

/* CONTEÚDO */
.hero .conteudo {
  position: relative;
  z-index: 2;
}

/* ANIMAÇÕES */
@keyframes tunnelMove {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(2.5);
  }
}

@keyframes pixelFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 180px;
  }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
section{
    height: 90vh;
    width: auto;
}
.top-bar {
  height: 0;
  padding: 0;
  margin: 0;
}
/* Header fixo */
header {
  position: fixed;
  top: 0;        /* cola no topo */
  left: 0;
  width: 100%;
  z-index: 999;
  background: #000;
  
}
.h1{
  font-size: 20px;
}
/* Container da logo e texto em linha */
.logo-container {
    display: flex;
    align-items: center;  /* alinha verticalmente */
    gap: 15px;            /* espaço entre texto e logo */
}

/* Logo texto em duas linhas */
/* Logo texto em duas linhas */
.logo-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.95;
}

/* TURBO */
.logo-texto h1 {
    font-size: 44px;
    color: #aa29fa;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
    transform: translateX(-70px); /* mantém */
    text-shadow:
        0 0 5px #aa29fa,
        0 0 10px #aa29fa,
        0 0 20px #9d00ff,
        0 0 40px #9d00ff;
}

/* FIBRA */
.logo-texto h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1.6px;
    margin: 0;
    transform: translateX(-30px); /* ← ALINHA O B COM O B */
}

/* TURBO */

/* Logo (imagem) ao lado do texto */

.logo {
    position: relative;
    display: inline-block;
    border-radius: 50%; /* deixa circular, opcional */
    padding: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(120, 26, 133, 0) 70%);
    backdrop-filter: blur(8px); /* efeito vidro fosco */
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1; /* garante que a logo fique acima do fundo */
}
/* Navbar mantém o layout original */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* LOGO + TEXTO */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* MENU TOPO */
.menu-topo {
    display: flex;
    align-items: center;
    gap: 30px;
   
}

/* BOTÕES PRA VOCÊ / EMPRESA */
.topo-tipo {
    display: flex;
    gap: 10px;
     
}

/* LISTA */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
nav ul {
  display: flex;
  justify-content: center;   /* centraliza horizontalmente */
  align-items: center;
  list-style: none;
  margin: 0 auto;            /* centraliza o bloco */
  padding: 0;
  width: 100%;
}

/* LINKS */
nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 22px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #8b00ff;
}
/* Hero Section */
.hero {
    background-color: #0b011d;
    background-size: cover;
    border:solid #c3a1ff;
    background-position: center;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
     position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #04000a;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botao-hero:hover { transform: translateY(-4px); }
.botao-hero:hover::before { filter: brightness(1.2); }

.botao-hero .whatsapp-icone { width: 32px; height: 32px; }
.hero-imagem { position: relative; z-index: 1; }
.hero-imagem img { width: 380px; max-width: 100%; filter: drop-shadow(0 0 30px #c77dff); animation: flutuar 4s ease-in-out infinite; }

/* Card de Formulário */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    color: black;
    text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.form-card h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0;
    font-style: italic;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 5px 0;
    outline: none;
    font-size: 1rem;
}
.contrate {
    min-height: 100vh;
    background: radial-gradient(circle at center, #8b00ff, #2b003f);
    color: white;
    padding: 60px 20px;
}

.contrate-container {
    max-width: 1200px;
    margin: auto;
}

.contrate-header {
    text-align: center;
    margin-bottom: 40px;
}

.contrate-header h1 {
    font-size: 2.8rem;
}

.contrate-header span {
    font-weight: 900;
}

.contrate-header p {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* CONTEÚDO */
.contrate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* FORM */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    color: black;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.form-card h2 {
    text-align: center;
    font-style: italic;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    font-size: 0.75rem;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 5px 0;
    outline: none;
}

.btn-contratar {
    background: linear-gradient(to right, #44ce1b, #2ba012);
    color: white;
    border: none;
    width: 110%;
    margin-left: -5%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-contratar:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ASTRONAUTA */
.hero-dedo img {
    width: 280px;
    animation: flutuar 3s ease-in-out infinite;
}

@keyframes flutuar {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

h1 {
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

p.subtitle {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.4;
    text-transform: uppercase;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card de Formulário */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    color: black;
    text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.form-card h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0;
    font-style: italic;
}


/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  z-index: 9999; /* ISSO É O MAIS IMPORTANTE */
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contrate-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-dedo img {
        width: 220px;
    }
}
.btn-contratar {
    background: linear-gradient(to right, #44ce1b, #2ba012);
    color: white;
    border: none;
    width: 110%;
    margin-left: -5%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    transition: transform 0.2s,  0.3s;
}

.btn-contratar:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Card de Sucesso */
.success-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    height: 300px;
    color: black;
    position: relative;
    margin-top: 40px;
}

.check-icon {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 80px;
    color: var(--green-action);
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

.success-card h2 {
    font-weight: 900;
    margin-top: 10px;
    
}
.img-card{
     width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-turbo {
    background: linear-gradient(to right, #a166ff, #c3a1ff);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-turbo:hover {
    box-shadow: 0 0 15px rgba(161, 102, 255, 0.6);
}


.text-side {
    flex: 1;
}

.text-side h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #9d00ff;
}

.description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-cta {
    background: linear-gradient(90deg, #9d00ff, #00e5ff);
    padding: 20px 40px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.6);
}


.btn-cta img {
    width: 65px;
    margin-right: 15px;
}

.image-side img {
    width: 450px;
    filter: drop-shadow(0 0 30px #9d00ff);
}

/* Features Section */
.features {
   background-color: #0b011d;
   border:solid #c3a1ff;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 50px;
}

.highlight {
    color: #00e5ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid  #ff00ff ;
    padding: 20px;
    border-radius: 15px;
    display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 5px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.btn-main-yellow {
    background: #ffcc00;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.bottom-cta {
    position: relative;
    margin-top: 50px;
}

.features {
  background: #0b011d;
  border-top: 2px solid #c3a1ff;
  padding: 80px 20px;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: auto;
}

.features h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  margin-bottom: 50px;
}

.highlight {
  color: #00e5ff;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

/* CARD */
.feature-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid #ff00ff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.feature-card img {
  width: 50px;
}

.feature-card:hover {
  transform: scale(1.05);
  background: white;
  color: #000;
}

/* CTA FINAL */
.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-main-yellow {
  background: #ffcc00;
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(255,204,0,0.5);
}

.astro-bottom {
  width: 320px;
  animation: flutuar 4s ease-in-out infinite;
}


/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
}

.whatsapp img {
  width: 70px;
  height: 70px;
}

/* ANIMAÇÃO */
@keyframes flutuar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .features h2 {
    font-size: 26px;
  }

  .astro-bottom {
    width: 240px;
  }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .image-side img { width: 300px; margin-top: 30px; }
    .text-side h1 { font-size: 40px; }
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.whatsapp img { width: 70px; height: 70px; }
.painel-fibra {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px; /* mais espaço entre colunas */
  padding: 100px 10%;
  background: radial-gradient(circle at center, #0b011d);
}
.btn-contra{
  color: white;
}
.btn-contra :hover{
  color: white;
  transform: scale(1.05);
  
}
.painel-info {
  max-width: 480px;
}

.painel-info h1 strong {
  color: #00ffb3;
}
.painel-info h1 {
  font-size: 48px;
}

.painel-sub {
  font-size: 20px;
}


.form-adesao {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-adesao input {
  padding: 18px;
  font-size: 18px;
  border-radius: 10px;
}

.form-adesao button {
  padding: 18px;
  font-size: 20px;
  
}
.form-adesao button {
  background: linear-gradient(90deg, #00ff88, #00c853);
  border: none;
  padding: 15px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* STATUS */
.painel-status {
  display: none; /* inicia oculto */
  background: #ffffff;
  color: #000;
  padding: 35px;
  border-radius: 25px;
  width: 320px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  position: relative;
}

.painel-status h2 {
  font-size: 28px;
  margin: 20px 0 10px;
}

.painel-status p {
  font-size: 18px;
  margin-bottom: 20px;
}

.painel-status .check {
  font-size: 60px;
  color: #00c853;
  display: block;
  margin: 0 auto;
}

.botao-secundario {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #9b5cff;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.botao-secundario:hover {
  background: #aa29fa;
}
.hero-dedo {
  width: 80vh;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dedo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.painel-status .check {
  font-size: 42px;
  color: #00c853;
}

.botao-secundario {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  background: #9b5cff;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

/* QUEM SOMOS */
.bloco-identidade {
  position: relative;
  padding: 110px 12%;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* ondas digitais suaves */
.bloco-identidade::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 2px,
      transparent 10px,
      transparent 22px
    );
  opacity: 0.65;
  pointer-events: none;
}

/* vinheta pra profundidade */
.bloco-identidade::after {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.bloco-identidade * {
  position: relative;
  z-index: 2;
}

/* TAG */
.tag {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  opacity: 0.95;
}

/* TÍTULO */
.titulo-principal {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 36px;
  color: #f3b3ff;
  text-shadow: 0 0 18px rgba(255, 0, 255, 0.35);
}

.titulo-principal strong {
  color: #ffffff;
  text-shadow: 0 0 22px rgba(255,255,255,0.45);
}

/* TEXTO BASE */
.texto-base {
  max-width: 920px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.75;
  background: rgba(0, 0, 0, 0.55);
  padding: 22px 26px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.45);
}

/* FAIXA DESTAQUE */
.faixa-destaque {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
  border: 2px solid #b65cff;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 40px rgba(182, 92, 255, 0.35);
}

.faixa-destaque h4 {
  margin-bottom: 18px;
  font-size: 21px;
  letter-spacing: 0.5px;
  color: #e6b3ff;
  text-shadow: 0 0 12px rgba(182,92,255,0.6);
}

.faixa-destaque p {
  font-size: 16px;
  line-height: 1.75;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .bloco-identidade {
    padding: 80px 6%;
  }

  .texto-base,
  .faixa-destaque {
    padding: 20px;
  }
}


/* ==========================
   PILARES
========================== */

.pilares {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
    color: #000000;
    background-color: #8edae9;
}

/* ==========================
   CONTEÚDO
========================== */

.pilares-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* TÍTULOS */
.pilares-titulo {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.pilares-subtitulo {
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ==========================
   CARDS
========================== */

.pilares-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.pilar-card {
    background: #A8D4DC;
    color: #000;
    padding: 36px 30px;
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.pilar-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.pilar-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================
   POR QUE NOS ESCOLHER
========================== */

.pilares-escolha {
    font-size: 32px;
    margin-bottom: 28px;
    color:#e5c9f2 ;
}

.pilares-texto-final {
    max-width: 1000px;
    margin: 0 auto;
    padding: 26px 32px;
    background: #A8D4DC;
    color: #000;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.8;
    box-shadow: 0 0 30px rgba(0,0,0,0.45);
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 900px) {
    .pilares {
        padding: 90px 6%;
    }

    .pilares-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* CTA */
.bloco-chamada {
  padding: 70px 10%;
  text-align: center;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
}

.botao-whats {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 36px;
  border-radius: 50px;
  background: #25d366;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.oculto {
  display: none;
}

.mostrar {
  display: block;
  animation: surgir 0.6s ease forwards;
}

@keyframes surgir {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.trabalhe-conosco {
  min-height: 100vh;
  padding: 80px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  overflow: hidden;
}

/* TEXTO */
.titulo {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* FORMULÁRIO */
.formulario {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  width: 360px;
   color: black;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.formulario h3 {
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
   color: black;
}

.formulario label {
  font-size: 13px;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
   color: black;
}

.formulario input {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
   color: black;
}

.formulario input:focus {
  border-color: #8b00ff;
}

/* BOTÃO */
.btn-enviar {
   background: linear-gradient(to right, #44ce1b, #2ba012);
    color: white;
    border: none;
    width: 110%;
    margin-left: -5%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    transition: transform 0.2s,  0.3s;

}
.btn-enviar:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
/* ROBÔ */
.robo {
  max-width: 280px;
  animation: flutuar 3s ease-in-out infinite;
}


@keyframes flutuar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .trabalhe-conosco {
    flex-direction: column;
    text-align: center;
  }

  .formulario {
    width: 100%;
    max-width: 380px;
    margin-bottom: 40px;
  }

  .robo {
    max-width: 220px;
  }
}
/* RODAPÉ */
.rodape {
  background-color:white ;
  padding: 18px 6%;
  color: black;
  font-size: 14px;
}

/* overlay escuro suave para leitura */
.rodape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

.rodape-container {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* LOGO */
.rodape-log1 img {
  height: 34px;
  width: auto;
  display: block;
  background: transparent; /* garante que não tenha fundo */
}

/* TEXTO */
.rodape-texto span {
  opacity: 0.9;
}

.rodape-texto a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.rodape-texto a:hover {
  text-decoration: underline;
}

/* REDES */
.rodape-redes {
  display: flex;
  align-items: center;
  gap: 14px;
  
}

.rodape-redes span {
  font-weight: 500;
}

.rodape-redes img {
  width: 22px;
  height: 22px;
  
  transition: transform 0.2s ease, opacity 0.2s ease;
 
}

.rodape-redes a:hover img {
  transform: scale(1.15);
  opacity: 0.85;
}
.politica-container {
    max-width: 900px;        /* largura confortável para leitura */
    margin: 50px auto;       /* centraliza horizontalmente e dá espaçamento em cima */
    padding: 20px;           /* espaço interno */
    text-align: center;      /* centraliza o texto */
    line-height: 1.7;        /* espaçamento entre linhas para leitura */
    font-family: 'Poppins', sans-serif;
    color: #BB81DD;             /* texto escuro, legível */
}

.politica-container h1,
.politica-container h2 {
    margin-bottom: 20px;
    color: white;          /* cor de destaque para títulos */
}

.politica-container p,
.politica-container li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.politica-container ul,
.politica-container ol {
    text-align: left;        /* listas alinhadas à esquerda */
    display: inline-block;   /* mantém centralização geral */
    margin: 0 auto 20px auto;
}


