* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #02020e;
  font-family: 'Montserrat', sans-serif;
}

/* ===== HEADER ===== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

.header {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: visible;
  background: #02020e;
  z-index: 10000;
}

/* ===== VÍDEO ===== */
.header-video {
  position: absolute;
  inset: 10px 100px -50px 100px;
  border-radius: 70px;
  overflow: hidden;
  opacity: 1;
  background-color: #02020e;
  box-shadow: 0 4px 4px rgba(43, 109, 252, 0.6);
}

.home-video,
.video-home {
  width: 100%;
  height: 100%;
}

.video-home {
  object-fit: cover;
}

/* ===== CONTEÚDO DO HEADER ===== */
.header-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

/* ===== LOGO CENTRAL ===== */
.logo {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 380px;
  z-index: 10;
}

/* ===== MENU ===== */
.menu {
  position: fixed;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #02020e;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 14px 40px;
  height: 60px;
  z-index: 100;
}

.menu-toggle {
  display: none;
  /* desktop escondido */
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  z-index: 20000;
  /* MAIOR que header e vídeo */
}

.link-com-seta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.seta {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.menu-produtos.ativo .seta,
.menu-suporte.ativo .seta {
  transform: rotate(180deg);
}

/* MENU PRINCIPAL */
.menu>ul {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: flex;
  align-items: center;
}

/* LINKS */
.menu a {
  color: #e8f4ed;
  text-decoration: none;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #4fdcff;
}

/* SEPARADOR • */
.ponto {
  margin: 0 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* ===== SUBMENUS (PRODUTOS E SUPORTE) ===== */
.menu-produtos,
.menu-suporte {
  position: relative;
}

.menu-produtos::after,
.menu-suporte::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
  /* área de segurança */
}

/* CAIXA DO SUBMENU */
.submenu,
.submenusuporte {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 240px;
  padding: 10px 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #050518, #02020e);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  z-index: 999;

  /* FECHADO POR PADRÃO */
  display: none;
  flex-direction: column;

  /* ANIMAÇÃO */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}


.menu-produtos.ativo .submenu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.menu-suporte.ativo .submenusuporte {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* SETINHA */
.submenu::before,
.submenusuporte::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 18px;
  width: 14px;
  height: 14px;
  background: #050518;
  transform: rotate(45deg);
}

/* ITENS DO SUBMENU */
.submenu li,
.submenusuporte li {
  width: 100%;
}

.submenu li a,
.submenusuporte li a {
  padding: 5px 20px;
  font-size: 14px;
  color: #e8f4ed;
  transition: background 0.3s ease, color 0.3s ease;
}

/* HOVER ITEM SUBMENU */
.submenu li a:hover,
.submenusuporte li a:hover {
  color: #4fdcff;
}

/* ===== PRODUTOS ===== */
.produtos {
  position: relative;
  padding: 101px 0 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* <<< ISSO É O SEGREDO */
  justify-content: center;
}

/* TÍTULO */
.produtos h2 {
  position: relative;
  color: #cfecf6;
  font-size: 18px;
  font-weight: 170;
  letter-spacing: 1.5px;
  margin-top: 30px;
  text-transform: uppercase;
  z-index: 5;
}

.produtos h2 strong {
  font-weight: 700;
}

.produtos-itens {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  will-change: transform;
  transition: transform 0.6s ease;
}

/* TRACK DO CARROSSEL */
.produtos-itens {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  will-change: transform;
  transition: transform 0.6s ease;
}

/* ITEM DO PRODUTO */
.produto {
  width: 320px;
  /* MESMA LARGURA DO HOLOFOTE */
  height: 420px;
  /* área visual fixa */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}

/* PRODUTOS INATIVOS */
.produto:not(.ativo) {
  opacity: 0.3;
  filter: grayscale(100%);
  transform: scale(0.9);
  margin-bottom: 50px;
}

.produto:not(.ativo) .titulo {
  color: #ffffff;
}

/* BOTÕES DO CARROSSEL */
.carousel-btn {
  position: absolute;
  /* ISSO FAZ ELAS APARECEREM */
  top: 60%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 70px;
  font-weight: 400;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev {
  left: 500px;
}

.carousel-btn.next {
  right: 500px;
}

.carousel-btn:hover {
  color: #cfe9ff;
}

/* GARANTIA: ATIVO NUNCA FICA CINZA */
.produto.ativo {
  opacity: 1 !important;
  filter: none !important;
  transform: translateY(40px);
}

.produto.ativo .titulo {
  opacity: 1;
  transform: translateY(0);
  color: #cfe9ff;
  text-shadow: 0 0 12px rgba(125, 184, 218, 0.541);
}

.produto.ativo .titulo strong {
  color: #ffffff;
}

/* TÍTULO DO PRODUTO */
.titulo {
  max-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: color 0.4s ease;
  margin-bottom: 60px;
  z-index: 3;
  margin-top: -35px;
}

/* Linha A.C.I */
.titulo .marca {
  font-size: 25px;
  /* menor que o título */
  font-weight: 400;
}

/* Nome do produto */
.titulo strong {
  font-size: 29px;
  font-weight: 600;
  line-height: 1.1;
}

/* ===== HOLOFOTE + LOGO (BLINDADO) ===== */
.holofote-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -164px;
}

.holofote {
  width: 150%;
  height: 462px;
  /* <<< CONTROLE REAL DO TAMANHO */
  object-fit: contain;
  /* mantém proporção sem distorcer */
  display: block;
  opacity: 0.75;
  pointer-events: none;
}

.holofote1 {
  width: 150%;
  height: 462px;
  /* <<< CONTROLE REAL DO TAMANHO */
  object-fit: contain;
  /* mantém proporção sem distorcer */
  display: block;
  opacity: 0.75;
  pointer-events: none;
}


/* ===== COUNTEINER PRODUTO ===== */
.certificado {
  padding: 2px 0;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: -230px;
}

/* CARD PRINCIPAL */
.certificado-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  min-height: 380px;
  background: linear-gradient(180deg,
      #05051a 0%,
      #0b0b3a 50%,
      #19159e 80%,
      #2b25df 100%);
  border-radius: 28px;
  padding: 60px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

/* TEXTO */
.certificado-texto {
  text-align: center;
  z-index: 3;
  max-width: 830px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TÍTULO */
.titulo2 {
  color: #c7d1d6;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* SUBTÍTULO */
.subtitulo {
  color: #c0deee;
  font-size: 19px;
  margin-bottom: 22px;
  font-weight: 700;
}

/* TEXTO */
.texto3 {
  color: #ceedf8;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* BOTÃO */
.btn-produtos {
  position: relative;
  background: #08074e;
  color: #ffffff;
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 auto;
}

.btn-produtos:hover {
  background: #2e5df5;
  transform: translateY(-1px);
}

/* ===== TEXTO DE IMPACTO ===== */
.impacto {
  position: relative;
  min-height: 420px;
  background: url("../img/imagemfundo.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

/* overlay escuro */
.impacto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 18, 0.75);
  z-index: 1;
}

.impacto-conteudo {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.impacto-conteudo h2 {
  color: #ceedf8;
  font-size: 50px;
  font-weight: 10;
  line-height: 1.4;
}

.impacto-conteudo h2 strong {
  font-weight: 700;
}

/* ===== SOBRE NÓS ===== */
.sobre {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  position: relative;
  margin: 0;
}

/* CAMADA DE LUZ (CORTA SOMBRA) */
.sobre-luz {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* CONTAINER INTERNO (LARGURA REAL FUNCIONANDO) */
.sobre-conteudo {
  max-width: 1800px;
  width: 100%;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;   /* <<< ISSO centraliza o conjunto */
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

/* ===== SOMBRA DIREITA ===== */
.sobre-luz::before {
  content: "";
  position: absolute;
  inset: -93px -900px -7px 500px;
  background: radial-gradient(circle,
      #02020e 0%,
      #07072c 30%,
      #162a83 50%,
      #02020e 60%);
  opacity: 0.8;
  z-index: 0;
}

/* ===== SOMBRA ESQUERDA INFERIOR ===== */
.sobre-luz::after {
  content: "";
  position: absolute;
  left: -250px;
  bottom: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(7, 12, 34, 0.9) 2%,
      rgba(26, 55, 185, 0.6) 35%,
      rgba(6, 11, 32, 0.3) 69%,
      transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

/* ===== TÍTULO ===== */
.sobre h2 {
  grid-column: 1 / -1;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

/* ===== VÍDEO ===== */
.historia-video {
  width: 370px;        /* pode ajustar */
  margin: 0 auto;      /* <<< ESSENCIAL */
  display: flex;
  aspect-ratio: 17 / 22;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-celular {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.icon-som {
  width: 20px;
  height: 20px;
  fill: white;
}

/* PLAY / PAUSE */
/* PLAY / PAUSE */
.btn-video {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* SOM */
.btn-som-historia {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.btn-som-historia i {
  color: #fff;
  font-size: 13px;
}


/* ===== TEXTO ===== */
.sobre p {
  text-align: justify;
  hyphens: auto;
  font-size: 19px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== LOCAIS ===== */
.locais {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 150px 2px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER PRINCIPAL */
.locais-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* lista | mapa */
  column-gap: 100px;
  align-items: center;
  margin-top: -80px;
  z-index: 2;
}

/* ===== TÍTULO ===== */
.locais h2 {
  grid-column: 1 / -1;
  /* ocupa as duas colunas */
  text-align: center;
  position: relative;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #cfecf6;
  z-index: 2;
}

/* ===== LISTA (ESQUERDA) ===== */
.locais-lista {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #dae3e8;
}

.locais-lista img {
  max-width: 300px;
  z-index: 2;
  transform: translateX(40px);
}

/* BOTÃO EMBAIXO DA LISTA */
.btn-atendimento {
  align-self: center;
  background: #1761d1;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 20px;
  font-size: 17px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  text-decoration: none;
}

.btn-atendimento:hover {
  background: #0b1b53;
  transform: translateY(-1px);
}

/* ===== MAPA (DIREITA) ===== */
.locais-mapa {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-top: -25px;
}

.locais-mapa img {
  width: 100%;
  max-width: 500px;
}

/* ===== SOMBRA DIREITA ===== */
.locais::after {
  content: "";
  position: absolute;
  left: 1070px;
  bottom: 500px;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle,
      #060629 0%,
      #0b0b47 30%,
      #162a83 50%,
      transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}

/* ===== SOMBRA ESQUERDA INFERIOR ===== */
.locais::before {
  content: "";
  position: absolute;
  left: 90px;
  bottom: 110px;
  width: 500px;
  height: 580px;
  background: radial-gradient(circle,
      #02020e 0%,
      #07072c 30%,
      #162a83 50%,
      transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}

/* ===== RODAPÉ ===== */
.footer {
  position: relative;
  width: 100%;
  padding: 40px auto;
  padding-top: 40px;
  color: #ffffff;
}

/* LINHA DE DIVISÃO */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* controla o comprimento */
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  min-height: 100px;
}

.footer-col>img,
.footer-col>h4 {
  display: inline-block;
}

.footer-col img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 8px;
}

/* COLUNAS */
.footer-col h4 {
  font-size: 17px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* REDES SOCIAIS */
.footer-redes {
  display: flex;
  gap: 16px;
  /* espaço entre os ícones */
  align-items: center;
  margin-top: 12px;
}

.footer-redes a {
  display: inline-flex;
  text-decoration: none;
}

.email-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.email-btn:focus-visible {
  outline: 2px solid #1f1f6b;
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-redes .rede {
  width: 26px;
  /* ajuste se quiser */
  height: 26px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.footer-redes .rede:hover {
  transform: scale(1.1);
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 190px;
  transform: translateY(17px);
}

/* ===== MINHA LOGO - DESTAQUE ===== */
.minha-logo.grande {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: -10px;
  margin-left: -30px;
}

.minha-logo.grande img {
  width: 100%;
  max-width: 165px;
  /* controla o tamanho real */
  height: auto;
  transform: none;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: #25a2d3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
}

/* ===============================WHATSAPP FLUTUANTE - PREMIUM================================ */

/* CONTAINER GERAL */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999999;
  font-family: 'Montserrat', sans-serif;
}

/* BOTÃO VERDE */
.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.06);
}

.whatsapp-float-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* MENU */
.whatsapp-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.96);
  transition: all 0.3s ease;
  border: 2px solid rgba(32, 184, 78, 0.76);
}

/* MENU ATIVO */
.whatsapp-container.ativo .whatsapp-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* CABEÇALHO DO MENU */
.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* TEXTO PRINCIPAL */
.menu-texto {
  font-size: 18px;
  color: #000000;
  margin: 10px 10px 18px 10px;
  max-width: 300px;
}


/* BOTÃO FECHAR */
.menu-fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  /* <<< AGORA FICA NO CANTO DIREITO */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  color: #1f1f1f;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* OPÇÕES */
.menu-opcao {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-top: 10px;
}

.menu-opcao:hover {
  background: linear-gradient(135deg, #27e76e, #126932);
  transform: translateX(3px);
}

/* ÍCONE ESQUERDA (CADEADO) */
.menu-icone {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

/* TEXTO OPÇÃO */
.menu-opcao span {
  flex: 1;
  font-size: 18px;
  font-weight: 548;
  color: #000000;
}

/* ÍCONE TELEFONE */
.menu-telefone {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* DIVISOR SUAVE */
.menu-divisor {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #e6e9f2, transparent);
  margin: 12px 0;
}

/* FRASE FLUTUANTE (HOVER) */
.whatsapp-frase {
  position: absolute;
  right: 80px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 17px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* SETINHA */
.whatsapp-frase::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #25D366;
}

/* MOSTRAR SOMENTE NO HOVER DO BOTÃO */
.whatsapp-float-btn:hover .whatsapp-frase {
  opacity: 1;
  transform: translateX(0);
}

































/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {

  /* ===== HEADER ===== */
  .header {
    position: relative;
    height: 55vh;
    overflow: hidden;
  }

  /* ===== VÍDEO ===== */
  .header-video {
    position: absolute;
    inset: 0;
    border-radius: 0;
    z-index: 1;
  }

  .home-video,
  .video-home {
    width: 100%;
    height: 100%;
  }

  .video-home {
    object-fit: cover;
  }

  /* ===== CONTEÚDO SOBRE O VÍDEO ===== */
  .header-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
  }

  /* ===== LOGO ===== */
  .logo {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 220px;
    z-index: 6;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: -2px;
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, #050518, #02020e);
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .menu.ativo {
    display: flex;
  }

  .menu>ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .menu>ul>li {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .menu a {
    padding: 12px 0;
    text-align: center;
    width: 100%;
    line-height: 0.4;
  }

  .ponto {
    display: none !important;
  }

  /* ===== SUBMENUS MOBILE ===== */
  .submenu,
  .submenusuporte {
    position: static;
    width: 120%;
    background: #02020e;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .submenu li a,
  .submenusuporte li a {
    padding: 10px 0;
    font-size: 14px;
    color: #e8f4ed;
    line-height: 0.4;
  }

  /* ABERTURA POR CLASSE ATIVO (JS) */
  .menu-produtos.ativo>.submenu {
    display: block;
  }

  .menu-suporte.ativo>.submenusuporte {
    display: block;
  }

  /* ROTACIONAR SETA NO MOBILE TAMBÉM */
  .menu-produtos.ativo .seta,
  .menu-suporte.ativo .seta {
    transform: rotate(180deg);
  }

  .menu-produtos>a,
  .menu-suporte>a {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-left: 0;
  }

  .produtos {
    padding: 6px 0 140px;
  }

  .produtos h2 {
    text-align: center;
    margin-bottom: -20px;
  }

  .produtos-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    /* evita grudar na borda */
  }

  .produtos-itens {
    gap: 40px;
    /* menos espaço no mobile */
    max-width: 100%;
    justify-content: center;
  }

  .produto {
    width: 240px;
    height: 360px;
  }

  .holofote-container {
    max-width: 240px;
    margin-top: -110px;
    margin-left: -10px;
  }

  .holofote {
    width: 170%;
    height: 280px;
    /* <<< todas iguais */
    object-fit: contain;
  }

  .holofote1 {
    width: 240%;
    height: 280px;
    /* <<< todas iguais */
    object-fit: contain;
  }

  .titulo {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .titulo .marca {
    font-size: 18px;
    margin-left: -25px;
  }

  .titulo strong {
    font-size: 20px;
    margin-bottom: 14px;
    margin-left: -25px;
  }

  .carousel-btn {
    font-size: 44px;
    top: 55%;
  }

  .carousel-btn.prev {
    left: 15px;
  }

  .carousel-btn.next {
    right: 15px;
  }

  /* ===== CERTIFICADO ===== */
  .certificado {
    margin-top: 0;
    padding: 0 10px;
  }

  .certificado-card {
    padding: 40px 20px;
    margin-top: -220px;
  }

  .titulo2 {
    font-size: 18px;
  }

  .subtitulo {
    font-size: 16px;
  }

  .texto3 {
    font-size: 15px;
  }

  /* ===== IMPACTO ===== */
  .impacto {
    min-height: 300px;
    padding: 20px;
    margin-bottom: -20px;
  }

  .impacto-conteudo h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  /* ===== LOCAIS ===== */
  .locais {
    padding: 100px 10px;
  }

  .locais-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* <<< mantém lado a lado */
    gap: 20px;
    align-items: center;
  }

  .locais-container h2 {
    font-size: 17px;
  }

  .locais-lista img {
    transform: none;
    max-width: 120px;
  }

  .locais-mapa img {
    max-width: 120%;
  }

  .btn-atendimento {
    font-size: 12px;
    /* tamanho do texto */
    padding: 8px 12px;
    /* altura e largura do botão */
    border-radius: 14px;
    /* deixa mais delicado */
    max-width: 160px;
    /* controla o comprimento */
    text-align: center;
  }

  .btn-atendimento span {
    display: block;
    line-height: 1.2;
  }

  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer {
    position: relative;
    z-index: 10;
  }

  .footer-redes a {
    position: relative;
    z-index: 20;
    pointer-events: auto;
    display: inline-block;
    padding: 10px;
  }

  .footer-redes {
    pointer-events: auto;
  }

  .footer-redes img {
    pointer-events: auto;
  }

  .minha-logo.grande {
    margin-left: 0;
    justify-content: center;
    margin-bottom: -30px;
  }

  /* WHATSAPP */

  .whatsapp-float-btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-btn img {
    width: 22px;
    height: 22px;
  }

  .whatsapp-container {
    right: 15px;
    bottom: 15px;
    z-index: 100000;
  }

  .whatsapp-menu {
    width: 90vw;
    right: 0;
  }

  .whatsapp-frase {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto;
    font-size: 13px;
    right: 62px;
  }

  .whatsapp-container.ativo .whatsapp-frase {
    opacity: 0 !important;
    transform: translateX(10px) !important;
    pointer-events: none;
  }
}

@media (max-width: 1024px) {
  .sobre-conteudo {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 30px;
  }

  .historia-video {
    width: 420px;
  }

  .sobre h2{
    margin-top: 10px;
  }

  .sobre p {
    font-size: 17px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sobre-conteudo {
    grid-template-columns: 1fr;      /* empilha vídeo + texto */
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 25px;
  }

  .historia-video {
    width: 300px;
    margin: 0 auto;                  /* centraliza de verdade */
  }

  .sobre h2{
    margin-top: 10px;
  }

  .sobre p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
    margin: 0 auto;
  }

  .sobre h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .historia-video {
    width: 300px;
  }

  .sobre p {
    font-size: 15px;
  }

  .sobre h2 {
    font-size: 22px;
    margin-top: 10px;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 75vh;
  }

  .header-video {
    inset: 20px 40px -40px 40px;
    border-radius: 50px;
  }

  .logo {
    max-width: 500px;
    top: 45%;
  }
}

@media (max-width: 480px) {

  .header {
    height: 65vh;
  }

  .header-video {
    inset: 16px 12px 30px 12px;
    border-radius: 22px;
  }

  .logo {
    max-width: 300px;
    top: 47%;
  }
}

/* ===== TELAS GRANDES / TV / ULTRAWIDE ===== */
@media (min-width: 1600px) {
  .header-video {
    position: relative;
    width: 100%;
    max-width: 1500px;     /* controla expansão */
    margin: 0 auto;       /* CENTRALIZA */
    border-radius: 60px;
    margin-left: -45px;
  }
  
  .logo {
    max-width: 500px;
    top: -50%;
  }
}

@media (min-width: 1800px) {
  .header-video {
    position: relative;
    width: 100%;
    max-width: 1600px;     /* controla expansão */
    margin: 0 auto;       /* CENTRALIZA */
    border-radius: 60px;
    margin-left: 15px;
  }
  
  .logo {
    max-width: 500px;
    top: -50%;
  }
}


@media (min-width: 2200px) {
  .header-video {
    max-width: 1850px;    /* só aumenta um pouco */
    border-radius: 90px;
    margin-left: 65px;
    margin-bottom: 20px;
  }
  
  .logo {
    max-width: 700px;
    top: -55%;
  }
}

/* ===== TELAS MUITO GRANDES (TV 4K / 8K / ULTRAWIDE) ===== */
@media (min-width: 2560px) {
  .header {
    position: relative;
    height: 60vh;
    overflow: hidden;
  }

  .header-video {
    width: 100%;
    max-width: 2350px;   /* controla expansão */
    height: 2000;
    margin: 0 auto;     /* centraliza */
    border-radius: 100px;
    margin-left: 10px;
  }
  
  .logo {
    max-width: 900px;
    top: -50%;
  }

}

@media (min-width: 3200px) {
  .header {
    position: relative;
    height: 50vh;
    overflow: hidden;
  }

  .header-video {
    max-width: 2800px;
    border-radius: 120px;
    margin-left: 95px;
  }
  
  .logo {
    max-width: 1100px;
    top: -45%;
  }
}

@media (min-width: 3840px) { /* 4K real */
  .header-video {
    max-width: 3000px;
    border-radius: 140px;
    margin-left: 350px;
  }
  
  .logo {
    max-width: 1200px;
    top: -46%;
  }
}

@media (min-width: 5120px) { /* 5K / 8K */
  .header-video {
    max-width: 4000px;
    border-radius: 160px;
    margin-left: 520px;
  }
  
  .logo {
    max-width: 6000px;
    top: -50%;
  }
}

