* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* ===== HEADER ===== */
body{
  background-color: #ffffff;
}

body {
    background-color: #ffffff; /* branco */
}

.header {
  background: linear-gradient(90deg, #050518, #0b0b3a);
  padding: 20px 8% 15px;
  position: fixed;
  /* <<< fixa */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}


.header-container {
  display: flex;
  align-items: center;
}

.logo a {
    display: inline-block;
}

.logo img {
  height: 40px;
  margin-top: -40px;
  margin-bottom: -11px;
  margin-right: 60px;
}

.menu {
  display: flex;
  gap: 25px;
  margin: 0 auto;
}

/* 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: #ffffff;
  text-decoration: none;
  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);
}

/* ===== 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;
}

/* SETINHA */
.submenu::before,
.submenusuporte::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 18px;
  width: 14px;
  height: 14px;
  background: #050518;
  transform: rotate(45deg);
}

/* ABRIR SUBMENU */
.menu-produtos:hover>.submenu,
.menu-suporte:hover>.submenusuporte {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* ITENS DO SUBMENU */
.submenu li,
.submenusuporte li {
  width: 100%;
}

.submenu li a,
.submenusuporte li a {
  padding: 12px 20px;
  font-size: 14px;
  color: #e8f4ed;
  letter-spacing: 0.4px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* HOVER ITEM SUBMENU */
.submenu li a:hover,
.submenusuporte li a:hover {
  color: #4fdcff;
}

/* ===== CONTEÚDO ===== */
.produto-telefonia {
  padding: 50px 8% 300px;
  background: #ffffff;
}

/* TÍTULO */
.titulo-pagina {
  text-align: center;
  font-size: 26px;
  color: #2b2b6f;
  margin-bottom: 40px;
  margin-top: 100px;
}

/* ===== GRID BASE (ALINHAMENTO GLOBAL) ===== */
.produto-conteudo,
.centro {
  max-width: 1200px;
  margin: 0 auto 90px;
}

/* ===== BLOCO TOPO ===== */
.produto-conteudo {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
}

/* ===== LINHAS PADRÃO ===== */
.linha {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.conteudo-direita {
  grid-template-columns: 360px 1fr;
}

/* ===== TEXTO ===== */
.imagemlogo img {
  width: 260px;
  max-width: 100%;
}

.texto {
  max-width: 800px;
}

.texto h2 {
  font-size: 24px;
  color: #1f1f6b;
  margin-bottom: 25px;
}

.texto h3 {
  font-size: 19px;
  color: #3fa9f5;
  margin-bottom: 15px;
}

.texto p {
  font-size: 20px;
  color: #000000;
  text-align: justify;
}

/* ===== IMAGENS ===== */
.imagem img {
  width: 360px;
  max-width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 12px rgb(2, 32, 66);
}

/* ===== CENTRO ===== */
.centro {
  text-align: center;
}

.texto-centro {
  max-width: 100%;
  margin-bottom: 40px;
}

.texto-centro h3 {
  font-size: 22x;
  color: #3fa9f5;
  margin-bottom: 15px;
}

.texto-centro p {
  font-size: 20px;
  color: #000;
  text-align: justify;
}

.imagem-centro img {
  width: 700px;
  max-width: 100%;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 12px rgb(2, 32, 66);
}

/* ===== CTA WHATSAPP ===== */
.cta-whatsapp {
  background: linear-gradient(135deg, #0b0b3a, #050518);
  padding: 80px 8%;
  margin-top: -600px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.cta-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #d6e6ff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: #25d366;
  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 30px rgba(37, 141, 211, 0.4);
}

/* ===== RODAPÉ ===== */
.footer {
  position: relative;
  width: 100%;
  padding: 40px auto;
  padding-top: 40px;
  color: #0a0a0a;
}

/* 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(7, 7, 7, 0.979);
}

.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;
  filter: grayscale(1) brightness(0);
}

/* 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: grayscale(1) brightness(0);
}

.footer-redes .rede:hover {
  transform: scale(1.1);
}

/* ===== 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;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 190px;
  transform: translateY(17px);
}

/* ===== CTA WHATSAPP ===== */
.cta-whatsapp {
  background: linear-gradient(135deg, #0b0b3a, #2121a0);
  padding: 40px 8%;
  margin-top: -200px;
  margin-bottom: 100px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.cta-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #d6e6ff;
}

.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: 9999;
  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;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.6);
}

.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);
}

/* ===== MENU MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  margin-left: auto;
}















/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    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%;
  }

  .ponto {
    display: none !important;
  }

  /* ===== SUBMENUS MOBILE ===== */
  .submenu,
  .submenusuporte {
    position: static;
    width: 100%;
    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;
  }

  /* 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;
  }

}

/* ===== AJUSTES MOBILE GERAIS ===== */
@media (max-width: 768px) {

  /* HEADER */
  .header-container {
    justify-content: space-between;
  }

  .logo a {
    display: inline-block;
  }

  .logo img {
    height: 32px;
  }

  .titulo-pagina {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 25px;
  }

   /* ===== CONTEÚDO ===== */
  .produto-telefonia {
    padding: 120px 6% 100px;
  }

  .titulo-pagina {
    font-size: 22px;
    margin-bottom: 30px;
  }

  /* ===== BLOCO TOPO ===== */
  .produto-conteudo {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .imagemlogo img {
    width: 200px;
    margin: 0 auto;
  }

  .texto h2 {
    font-size: 20px;
  }

  .texto h3 {
    font-size: 17px;
  }

  .texto p {
    font-size: 16px;
  }

  /* ===== LINHAS (ESQUERDA / DIREITA) ===== */
  .linha {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .conteudo-direita,
  .conteudo-esquerda {
    grid-template-columns: 1fr;
  }

  .imagem img {
    width: 220px;
    margin: 0 auto;
  }

  .linha .texto {
    order: 1;
  }

  .linha .imagem {
    order: 2;
    margin-top: 20px;
  }

  /* ===== CENTRO ===== */
  .centro {
    margin-bottom: 60px;
  }

  .texto-centro h3 {
    font-size: 18px;
  }

  .texto-centro p {
    font-size: 16px;
  }

  .imagem-centro img {
    width: 260px;
  }

  /* ===== CTA ===== */
  .cta-whatsapp {
    padding: 50px 6%;
    margin-top: 0;
  }

  .cta-container h2 {
    font-size: 22px;
  }

  .cta-container p {
    font-size: 16px;
  }

  .btn-whatsapp {
    padding: 14px 24px;
    font-size: 14px;
  }

  /* RODAPÉ */
  @media (max-width: 768px) {
    .btn-whatsapp {
      width: 100%;
      text-align: center;
    }

    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-col {
      align-items: center;
    }

    .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;
    }

    .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;
    }
  }
}