body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      color: #0a0024;
      background-color: #fff;
    }
    
header.hero {
  display: flex;
  align-items: center; /* Alinha verticalmente */
  justify-content: flex-start;
  padding: 40px 5%;
  background: linear-gradient(to right, #ffffffb4, #370350);
  gap: 40px;
  flex-wrap: wrap;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    filter: brightness(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.4);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
    opacity: 1;
  }
}

.logo-container1 img {
  max-width: 250px;
  height: auto;
  display: block;

  animation: pulse-glow 2.2s ease-in-out 0s 3; /* 3 repetições */
}

/* menu fixo direita topo */
.menu-topo {
  position: fixed;
  top: 14px;
  right: 30px;
  z-index: 1000;
}

/* esconde checkbox */
#menu-toggle {
  display: none;
}

/* botão ☰ */
.menu-icon {
  display: flex;
  align-items: center;
  gap: 8px;

  background: rgba(200, 200, 200, 0.5); /* cinza claro 50% */
  color: #222;

  padding: 10px 18px;
  border-radius: 14px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;

  backdrop-filter: blur(6px); /* efeito vidro */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);

  transition: all 0.3s ease;
}

.menu-icon:hover {
  background: rgba(180, 180, 180, 0.7);
  transform: translateY(-2px);
}

/* menu */
.menu-links {
  position: absolute;
  top: 54px;
  right: 0;
  background: rgba(1, 122, 96, 0.5); /* cinza claro 50% */
  backdrop-filter: blur(8px);          /* efeito glass */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(1, 110, 138, 0.521);
  padding: 10px;
  min-width: 150px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.25s ease;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  text-decoration: none;
  color: #08012e;
  font-size: 14px;
  border-radius: 8px;
}

.menu-links a:hover {
  background: rgba(255, 255, 255, 0.521);
  transform: translateX(3px);
}

/* logo */
.menu-links img {
  width: 120px;
  margin: 6px auto 10px;
}

/* abre menu */
#menu-toggle:checked + .menu-icon + .menu-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



/* efeito dos textos h1 e h2*/
@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.textos {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centraliza os textos no meio horizontalmente */
  animation: slideInFromRight 1s ease-out;
}

.textos h1,
.textos h2 {
  text-align: center; /* Centraliza o conteúdo dentro do texto */
  max-width: 800px;
}

.textos h1 {
  font-size: 20px;
  margin: 0 0 10px 0;
  word-wrap: break-word;
}

.textos h2 {
  font-size: 18px;
  margin: 0;
  font-weight: normal;
  word-wrap: break-word;
}

h3.textos {
    font-family: 'Poppins', 'Arial Rounded MT Bold', sans-serif;

  font-size: 16px;
  margin: 15px 15px; /* top/bottom: 15px, left/right: 0 */
}

h4.textos {
  font-size: 14px;
  margin: 15px 15px; /* top/bottom: 15px, left/right: 0 */
}

h3.textos,
h4.textos {
  text-align: center;
  font-weight: normal;
  word-wrap: break-word;
}

/* Animação do gradiente */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animação de pulo */
@keyframes bounceText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.textosef {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  color: #1202f5;
  background: transparent;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;

  /* Reflexo / brilho ao redor */
  text-shadow: 
    0 0 5px #03c5e7,
    0 0 10px #018caf,
    0 0 20px #0559c7;

  /* Transição suave */
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .textosef {
    text-shadow: 0 0 6px #03c5e7;
  }
}

/* Efeito ao passar o mouse (zoom leve + reforço no brilho) */
.textosef:hover {
  transform: scale(1.03);
  text-shadow: 
    0 0 8px #0576df,
    0 0 16px #0558d4,
    0 0 30px #0742af;
}



p.imgilus {
  text-align: center; /* Centraliza o conteúdo dentro do texto */
  max-width: 800px;
  font-weight: normal;
  margin: 15px auto;
  font-size: 11px;
  word-wrap: break-word;

}

 
/* css botão */
    .cta-btn {
      display: block;
      margin: 20px auto;
      padding: 15px 25px;
      background: linear-gradient(125deg,  #20a7f5, #06fc06);
      color: rgb(21, 1, 43);
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      text-align: center;
      text-decoration: none;
      width: 90%;
      max-width: 300px;
    }
    .slider-container1 {
      position: relative;
      max-width: 100%;
      overflow: hidden;
    }
    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      min-width: 100%;
      box-sizing: border-box;
    }
    .slide img {
      width: 100%;
      display: block;
    }
    .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }
    .controls button {
      background: rgba(3, 62, 255, 0.76);
      border: none;
      color: white;
      font-size: 1.2rem;
      padding: 10px;
    }
    .video-container1 {
      margin: 30px auto;
      width: 100%;
      max-width: 560px;
    }
    .video-container1 iframe {
      width: 100%;
      height: 315px;
    }
    .dots-container {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.dot.active {
  background-color: #020947; /* Cor do destaque */
}

/* 2 parte dos slides imgs 4x4 */

.galeria-section {
  padding: 40px 5%;
  background-color: #f9f9f9;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 16px;
}

/* Tablets */
@media (max-width: 1024px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr; /* UMA IMAGEM POR VEZ */
  }
}


.galeria-grid img {
  width: 100%;
  height: 250px; /* Imagem maior na altura */
  object-fit: cover; /* mantém proporção, cortando para caber */
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.galeria-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Modal para imagem ampliada */
.modal-imagem {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.modal-imagem img {
  max-width: 90%;
  max-height: 80vh;
  width: auto;
  height: auto;
  margin: auto;
  border-radius: 10px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.modal-imagem img {
  max-width: 90%;
  max-height: 90%;
}

.modal-nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1001;
}

.modal-nav.esquerda {
  left: 20px;
}

.modal-nav.direita {
  right: 20px;
}

.fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* CSS do tn-whats FALE COM ESSPECIALISTA */
.btn-whats {
  width: 60%;
  background-color: #00158d;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin: 0 auto;
  cursor: pointer;
}

/* Efeito hover (opcional) */
.btn-whats:hover {
  background-color: #000f66;
}

/* Slide 2 hiperlink */
.galeria-grid img {
  cursor: pointer;
}

/* video youtube */
.video-wrapper {
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* 3 TELA DOS DOIS BOX ESQ SOBRE DIR FORM */

.sobre-box h3 {
  text-align: center;
}

.sobre-formulario {
  position: relative;
  margin-top: 1px;
  padding-top: 0 
}

.conteudo-sobre-form {
  position: relative;
  z-index: 2;
  padding: 15px;
}

.conteudo-sobre p {
  font-size: 1.2rem; /* ou experimente 18px */
  line-height: 1.7;
  text-align: justify;
    text-indent: 15px; /* espaço no início do parágrafo */

}


/* Blocos com imagem de fundo separada */
.sobre-box, .form-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.8s ease, opacity 1.8s ease; opacity: 1;
  transform: translateY(1px); /* deslocado para animar */

}

/* Imagem de fundo para SOBRE */
.bg-img-sobre {
  position: absolute;
  inset: 0;
  background-image: url('images/sobreform.png'); /* Substitua pelo seu caminho */
  background-size: cover;
  background-position: center;
  opacity: 0.40;
  z-index: 1;
}

/* Imagem de fundo para FORMULÁRIO */
.bg-img-formulario {
  position: absolute;
  inset: 0;
  background-image: url('img/form.png'); /* Substitua pelo seu caminho */
  background-size: cover;
  background-position: center;
  opacity: 0.40;
  z-index: 1;
}

/* Camadas de conteúdo por cima das imagens */
.conteudo-sobre,
.conteudo-formulario {
  position: relative;
  z-index: 2;
}

/* Responsivo */
@media (max-width: 767px) {
  .conteudo-sobre-form {
    padding: 10px;
  }

  .sobre-box, .form-box {
    padding: 10px;
  }
}



/*  Menu redes sociais e foguete topo */

.menu-social {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 25px;
  min-height: 180px; /* garante espaço */

  background-image: url("img/menu_social.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  overflow: hidden;
}

.menu-social::after {
  content: "";
  position: absolute;
  bottom: 10px; /* fica no rodapé da nuvem */
  left: -40%;
  width: 200%;
  height: 80px;

  background-image: url("img/fumaca.png");
  background-repeat: repeat-x;
  background-size: contain;

  opacity: 0.35;
  animation: fumaçaPassando 12s linear infinite;
  pointer-events: none;
}
@keyframes fumaçaPassando {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}


.redes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;          /* 🔥 PERMITE QUEBRAR LINHA */
  justify-content: center;  /* CENTRALIZA */
  align-items: center;
  max-width: 100%;
}
.menu-social img {
  width: 85px;
  transition: transform .3s;
}
.menu-social a {
  position: relative;
  display: inline-block;
}
.menu-social a:hover img {
  transform: scale(1.1);
}

.menu-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;

  background: linear-gradient(
    135deg,
    rgba(0, 180, 100, 0.45),
    rgba(0, 140, 255, 0.45)
  );

  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.menu-social a:hover::after {
  opacity: 1;
}

.menu-social a:hover img {
  transform: scale(1.12);
}


@media (max-width: 768px) {
  .menu-social {
    flex-direction: column;   /* empilha */
    padding: 60px 20px 100px;
  }

  .redes {
    gap: 16px;
  }

  .menu-social img {
    width: 70px; /* reduz tamanho */
  }

  .foguete {
    position: static; /* 🔥 deixa fluir no layout */
    margin-top: 20px;
    transform: none;
  }

  .foguete img {
    width: 80px;
    animation: none; /* melhora performance mobile */
  }
}




/* FOGUETE */
.foguete {
  position: absolute;
  right: 30px;        /* distância do canto direito */
  top: 50%;
  transform: translateY(-50%);
}
.foguete img {
  width: 100px;
  cursor: pointer;
  animation: vibrar 1.2s infinite;
}
@media (max-width: 768px) {
  .foguete {
    right: 10px;
    width: 80px;
  }
}
@media (hover: hover) {
  .foguete img {
    animation: vibrar 1.2s infinite;
  }
}

@media (max-width: 768px) {
  .foguete img {
    animation: none;
  }
}


@media (min-width: 769px) {
  .foguete {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
}


/* Vibração + leve subida*/
@keyframes vibrar {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-3px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}



/*  4 FRASE subtitulo  */

.subtitulo {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1.8s ease-out;
}
/* Quando a classe "ativo" é adicionada */
.subtitulo.ativo {
  transform: translateX(0);
  opacity: 1;
}

/* Animação personalizada */


.animate-slide-in {
  animation: slideInFromRight 1.2s ease-out forwards;
}




/* BACKGROUNDS DAS SECTIONS EM FAIXAS COLORIDAS */
.fundo-cinza-claro {
  background-color: #f0f0f0;
}

.fundo-azul-claro {
  background-color: #d4e9ffe0;
}

.fundo-contador {
  background-color: #fff9f2f1;
}

/* ================================================== */
/* RODAPÉ */
/* ================================================== */
footer{background:linear-gradient(to bottom,#ffffff 0%,#dbdbdb,#71f703 100%)
  ;color:#ffffff;padding:30px 0;text-align:center;font-size:0.9rem}
footer p{color:#6403e4;margin:5px 0}
footer a{color:#0869fa;text-decoration:none}
footer a:hover{text-decoration:underline}

.end{max-width:1200px;margin:0 auto;padding:10px;}

/* ================================================== */
/* BOTÃO ACEITA COOKIE */
/* ================================================== */
#cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 16px;

  max-width: 90%;
  padding: 12px 20px;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;

  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);

  z-index: 9999;
}

#cookie-bar a {
  color: #aee4ff;
  text-decoration: underline;
}

#cookie-bar button {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
}

#cookie-bar button:hover {
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 600px) {
  #cookie-bar {
    flex-direction: column;
    text-align: center;
  }
}