* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* ===== HEADER ===== */
body{
  background-color: #ffffff;
}

.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;
}

.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;
  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;
}

.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: 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 ===== */
.midias-page {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.titulo-pagina {
  font-size: 26px;
  color: #2b2b6f;
  margin-bottom: 60px;
  margin-top: 50px;
}

.titulo-secao {
  font-size: 16px;
  color: #010203;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* CENTRO */
.bloco-centro {
  margin-bottom: 90px;
}

.card-centro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.card-centro img {
  width: 180px;
  margin-bottom: 20px;
}

/* GRID */
.cards-grid {
  max-width: 1200px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.card span {
  font-size: 15px;
  font-weight: bold;
  color: #1f1f6b;
}

.downloads {
    display: flex;
    justify-content: center;   /* centraliza o conjunto */
    gap: 40px;                 /* controla distância entre colunas */
    margin-top: 30px;
}

.downloads-esquerda,
.downloads-direita {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* 🔥 tudo alinhado à esquerda */
    gap: 16px;
    min-width: 260px;          /* 🔥 dá corpo ao bloco e evita "voar" */
}

/* BOTÕES */
.btn {
  padding: 10px 34px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;

  text-decoration: none;
  background: linear-gradient(135deg, #0b1f6b, #1f3fa3);
  color: #ffffff;

  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 31, 107, 0.35);
}

.btn i {
    font-size: 16px;
    margin-left: 4px;
    line-height: 1;
}

/* ===== 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);
}

.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 ===== */
/* ===== 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;
  }

}

@media (max-width: 768px) {
  /* ===== CONTEÚDO ===== */
  .logo a {
    display: inline-block;
  }

  .logo img {
    height: 32px;
  }
  
  .midias-page {
    padding: 120px 6% 80px;
  }

  .titulo-pagina {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 25px;
  }

  .titulo-secao {
    font-size: 14px;
    margin-bottom: 25px;
  }

  /* ===== BLOCO CENTRAL ===== */
  .bloco-centro {
    margin-bottom: 60px;
  }

  .card-centro img {
    width: 140px;
  }

  .btn {
    font-size: 13px;
    padding: 10px 26px;
  }

  /* ===== GRID DE CARDS ===== */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card img {
    width: 130px;
    height: 130px;
  }

  .card span {
    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;
  }

  .downloads {
        flex-direction: column;   /* 🔥 empilha tudo */
        align-items: center;
        gap: 20px;
    }

    .downloads-esquerda,
    .downloads-direita {
        align-items: center;      /* centraliza os botões no mobile */
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;         /* fica bonito e não gigante */
        text-align: center;
    }

  /* 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;
  }
}