/* =========================
   FONTES
========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&display=swap');


/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}




/* =========================
   LAYOUT BASE
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: #000000;
}

.section-black {
  background: #000000;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 620px;
  margin: 0 auto 24px;
}

.section-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
}

.badge {
  text-align: center;
  font-size: 0.85rem;
  color: #f97316;
  margin-top: 8px;
}

.center {
  text-align: center;
}


/* =========================
   BOTÕES GENÉRICOS
========================= */
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: #0c74eb;
  color: #ffffff;
  border: 1px solid #0c74eb;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: #0c74eb;
  border: 1px solid #0c74eb;
}

.btn-outline:hover {
  background: rgba(12, 116, 235, 0.1);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.9);
}

.full {
  width: 100%;
  text-align: center;
}

.btn-deep {
  text-decoration: none;
}

.btn-analyze {
  text-decoration: none;
}


/* =========================
   HEADER / NAV
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000000;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* Logo de texto provisória */
.brand-logo {
  color: #0c74eb;
  font-weight: 600;
  line-height: 1.3;
}

/* Lado direito (links + botão) */
.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Links CONTATO / ENTRAR */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Botão azul Criar conta */
.btn-nav-primary {
  text-decoration: none;
  background: #3374eb;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nav-primary:hover {
  filter: brightness(1.05);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
  padding: 10px 0;
}

/* Estado inicial escondido */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Quando entra na tela */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* EFEITOS DE ENTRADA LATERAL */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}



/* =========================
   HERO
========================= */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

/* fundo com imagem + degradê */
.hero-particles {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  z-index: 0;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.90) 35%,
      rgba(0, 0, 0, 0.65) 65%,
      rgba(0, 0, 0, 0.20) 100%
    ),
    url("../img/ULTRA WIDE sem letra.jpg") center right / cover no-repeat;
}

/* conteúdo do hero por cima do fundo */
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2; /* acima do fundo e da chuva */
}

.eyebrow {
  color: #0c74eb;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 14px;
  max-width: 580px;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 4px;
  color: #9ca3af;
  max-width: 520px;
  font-size: 0.95rem;
}

.hero-buttons-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-bullets {
  margin-top: 20px;
  list-style: none;
  color: #9ca3af;
  font-size: 0.9rem;
}

.hero-bullets li + li {
  margin-top: 4px;
}

.hero-bullets li::before {
  content: "• ";
  color: #0c74eb;
}

/* coluna da direita */
.hero-image-area {
  display: flex;
  justify-content: flex-end;
}

/* bloco da logo com chuva de dígitos */
.hero-logo-wrap {
  position: relative;
  width: 420px;   /* ajusta tamanho da logo */
  height: 520px;
}

/* imagem da logo */
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

/* container da chuva de dígitos por cima da logo */
.hero-rain {
  position: absolute;
  inset: 0;
  z-index: 2;          /* acima da logo */
  pointer-events: none;
  overflow: hidden;
}

/* cada coluna de dígitos */
.hero-rain .rain-col {
  position: absolute;
  top: -40%;              /* antes era -120%  */
  font-family: "Courier New", monospace;
  font-size: 16px;        /* um pouco maior pra destacar */
  line-height: 1.2;
  color: rgba(0, 190, 255, 0.9);
  text-shadow:
    0 0 6px rgba(0, 190, 255, 0.9),
    0 0 12px rgba(0, 190, 255, 0.7);
  white-space: nowrap;
  writing-mode: vertical-rl;
  animation: rainDigits 5s linear infinite;
  opacity: 0.95;
}

/* posições das colunas em cima da logo */
.hero-rain .col-1 { left: 18%; animation-delay: 0s; }
.hero-rain .col-2 { left: 40%; animation-delay: -1.2s; }
.hero-rain .col-3 { left: 62%; animation-delay: -2.4s; }
.hero-rain .col-4 { left: 82%; animation-delay: -3.6s; }

@keyframes rainDigits {
  0%   { transform: translateY(-10%); opacity: 0; }  /* já entra quase dentro da logo */
  10%  { opacity: 1; }
  100% { transform: translateY(140%); opacity: 0; }  /* termina logo abaixo da logo */
}


/* texto abaixo dos botões */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.hero-integration-text {
  position: absolute;
  left: 0;
  right: 0;

  /* controla aqui o quão “abaixo” fica */
  bottom: 40px;         /* <-- aumenta pra descer, diminui pra subir */

  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  font-weight: 400;
  z-index: 2;
  margin: 0;            /* importante: sem margin pra não mexer layout */
}


/* ===== CHUVA TECH SOBRE A LOGO ===== */

/* ===== BLOCO DA LOGO NO HERO ===== */

.hero-image-area {
  display: flex;
  justify-content: flex-end;
}

.hero-logo-wrap {
  position: relative;
  width: 420px;
  height: 520px;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-rain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-rain .rain-col {
  position: absolute;
  top: -40%;
  font-family: "Courier New", monospace;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(0, 190, 255, 0.9);
  text-shadow:
    0 0 6px rgba(0, 190, 255, 0.9),
    0 0 12px rgba(0, 190, 255, 0.7);
  white-space: nowrap;
  writing-mode: vertical-rl;
  animation: rainDigits 5s linear infinite;
  opacity: 0.95;
}

.hero-rain .col-1 { left: 18%; animation-delay: 0s; }
.hero-rain .col-2 { left: 40%; animation-delay: -1.2s; }
.hero-rain .col-3 { left: 62%; animation-delay: -2.4s; }
.hero-rain .col-4 { left: 82%; animation-delay: -3.6s; }

@keyframes rainDigits {
  0%   { transform: translateY(-10%); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(140%); opacity: 0; }
}



/* =========================
   TARJA BRANCA COM ESTEIRA DE LOGOS
========================= */
.sources-strip {
  width: 100%;
  background: #ffffff;
  padding: 20px 0;
  overflow: hidden;
}

.sources-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.sources-track {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: sources-marquee 28s linear infinite;
}

.source-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.source-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  /* para deixar tudo preto a partir de logos coloridas:
     filter: grayscale(1) brightness(0.1); */
}

@keyframes sources-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* =========================
   FAIXA CINZA + BOTÃO ANALISAR AGORA
========================= */

.analyze-strip {
  width: 100%;
  padding: 30px ;
  display: flex;
  justify-content: center;
}

.btn-analyze {
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 999px;
  padding: 8px 26px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}


/* =========================
   SEÇÃO "DESCUBRA INFORMAÇÕES..."
========================= */

.section-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 20px;   /* mais perto do título */
}

/* lado esquerdo */
.info-left {
  padding-left: 0;     /* sem recuo lateral */
}


/* título serifado */
.section-title-hero {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 820px;
  text-align: center;
  margin: 40px auto 26px;
}

.section-title-hero span {
  display: inline;
  color: #0c74eb;
}


/* parágrafos */
.info-paragraphs p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 8px;
  text-align: left;
  max-width: 540px;
}

/* lado direito */
.info-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.info-image-placeholder {
  width: 100%;
  height: 280px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 1rem;
  text-transform: lowercase;
  border-radius: 0;
}

.btn-view-sample {
  background: #0c74eb;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.info-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px; /* mantém o estilo do placeholder */
  overflow: hidden;    /* impede a imagem de vazar */
  background: #d9d9d9; /* caso a imagem tenha transparência */
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre o espaço sem distorcer */
}


/* =========================
   LINHA DAS 3 BOLINHAS
========================= */

.bullets-row {
  margin-top: 70px;
  display: flex;
  justify-content: center;   /* grupo todo centralizado */
  align-items: flex-start;
  gap: 100px;                /* distância entre as colunas */
}

.bullet-item {
  flex: 0 0 auto;            /* largura fixa, não estica demais */
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;    /* texto alinhado à esquerda */
  font-size: 0.85rem;
  color: #d1d5db;
}

/* bolinha branca com ícone dentro */
.bullet-icon {
  width: 34px;               /* tamanho do ícone */
  height: 34px;
  padding: 6px;              /* cria a “borda” em volta */
  border-radius: 50%;
  background: #ffffff;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

.bullet-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c74eb;
  margin-bottom: 4px;
}

.bullet-item p {
  font-size: 0.8rem;
  color: #e5e7eb;
}



/* =========================
   SEÇÃO - ANÁLISE PROFUNDA EM SEGUNDOS
========================= */

.deep-analysis {
  background: #000000;
  padding: 80px 0;
}

.deep-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.deep-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

/* cada linha (imagem + texto) vira um bloco mais estreito, centrado */
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 880px;      /* largura do bloco, ajusta se quiser mais largo/estreito */
  margin: 40px auto;     /* centraliza horizontalmente */
}



/* caixas cinza das imagens */
.deep-image {
  width: 100%;
  height: 200px;
  background: #d9d9d9;
  border-radius: 12px;
  overflow: hidden;              /* 🔴 ESSENCIAL */
  display: flex;
  align-items: center;
  justify-content: center;
}

.deep-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* cobre sem distorcer */
  display: block;
}


/* textos dos blocos */
.deep-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.deep-text p {
  font-size: 0.85rem;
  color: #e5e7eb;
  line-height: 1.4;
}

/* botão INVESTIGAR centralizado abaixo dos blocos */
.deep-cta {
  text-align: center;
  margin-top: 30px;
}

.btn-deep {
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 999px;
  padding: 8px 26px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}



/* =========================
   VÍDEO
========================= */

.blue {
  color: #0c74eb;
}

.video-placeholder {
  margin: 28px auto;
  max-width: 800px;
  border-radius: 16px;
  border: 1px solid #000000;
  background: #000000;
  padding: 80px 24px;
  text-align: center;
  color: #6b7280;
}




/* =========================
   DEPOIMENTOS / PLANOS / TOKENS
   (estilos base movidos para overrides premium)
========================= */



/* =========================
   TABELA DE COMPARAÇÃO
========================= */

/* =========================
   COMPARE NOSSOS PLANOS
========================= */

.compare-section {
  background: #000000;
  padding: 80px 0;
}

.compare-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
}

.compare-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #2b814a; /* verdinho como no Figma */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

/* Card da tabela */
.compare-card {
  background: #020617;
  border-radius: 12px;
  border: 1px solid #1f2937;
  overflow: hidden;
}

/* Tabela */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare-table th,
.compare-table td {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

/* Cabeçalho azul */
.compare-table thead th {
  background: #0c74eb;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.compare-table .col-feature {
  text-align: left;
}

/* Linhas do corpo */
.compare-table tbody td {
  color: #e5e7eb;
}

.compare-table tbody td:first-child {
  text-align: left;
}

.compare-table tbody td:not(:first-child) {
  text-align: center;
}

/* Linha espaçadora antes dos preços */
.compare-spacer td {
  border-bottom: none;
  height: 18px;
}

/* Linha de preços */
.compare-price-row td {
  border-bottom: none;
  padding-top: 12px;
  padding-bottom: 4px;
}

.compare-price {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Linha dos botões */
.compare-cta-row td {
  border-bottom: none;
  padding-top: 4px;
  padding-bottom: 16px;
}

.compare-cta {
  background: #3374eb;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 960px) {
  .compare-card {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 650px; /* evita quebrar demais no mobile, vira scroll horizontal */
  }
}


/* =========================
   FAQ
========================= */

/* CONTAINER DAS PERGUNTAS */
.faq-list {
  margin-top: 30px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.faq-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* BOTÃO-PÍLULA (pergunta) */
.faq-pill {
  width: 100%;
  background: #3c3c3c;
  color: #f9fafb;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.85rem;
  border: none;
  text-align: left;
  cursor: pointer;
}

/* BLOCO DE RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 0.8rem;
  color: #e5e7eb;
  margin-top: 8px;
  margin-bottom: 4px;
}

/* quando o item estiver aberto, damos um respiro embaixo */
.faq-item.open .faq-answer {
  margin-bottom: 6px;
}

/* =========================
   CTA FINAL - AINDA TEM DÚVIDAS?
========================= */

.contact-cta {
  background: #000000;
  padding: 70px 0 60px;
}

.contact-cta-inner {
  text-align: center;
}

.contact-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-cta-subtitle {
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 26px;
}

.contact-cta-button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 14px 56px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}



/* =========================
   FOOTER
========================= */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
  padding: 26px 0 18px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* marca Hacker Hunter à esquerda */
.footer-brand {
  max-width: 320px;
}

.footer-logo-text {
  color: #ef4444; /* vermelho */
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer-description {
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* colunas à direita */
.footer-menus {
  display: flex;
  gap: 40px;
}

.footer-column h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #f9fafb;
}

.footer-column a {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-column a:hover {
  color: #ffffff;
}

/* linha final */
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

/* responsivo */
@media (max-width: 960px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-menus {
    flex-wrap: wrap;
  }
}



/* =========================
   RESPONSIVO
========================= */

/* LINHA SUTIL ENTRE SEÇÕES */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgb(255, 255, 255); /* branco suave */
  margin: 10px 0; /* espaço acima e abaixo da linha */
}

/* LINHAS SUTIS ENTRE SEÇÕES */
.half-divider {
  width: 50%;
  height: 1px;
  background: rgb(255, 255, 255);
  margin: 50px 0 40px auto;
}

.left-divider {
  width: 50%;
  height: 1px;
  background: rgb(255, 255, 255);
  margin: 50px 0 40px 0;
}

/* Transições genéricas */
.btn-primary,
.btn-outline,
.btn-ghost,
.btn-nav-primary,
.btn-analyze,
.btn-view-sample,
.btn-deep,
.plan-cta,
.compare-cta,
.contact-cta-button {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

/* Hover padrão dos botões azuis */
.btn-primary:hover,
.btn-nav-primary:hover,
.btn-view-sample:hover,
.btn-deep:hover,
.plan-tokens-pill:hover,
.compare-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(12, 116, 235, 0.35);
}

/* Botão branco (CTA final, etc.) */
.contact-cta-button:hover,
.btn-analyze:hover,
.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Clique (efeito de pressão) */
.btn-primary:active,
.btn-nav-primary:active,
.btn-view-sample:active,
.btn-deep:active,
.plan-tokens-pill:active,
.compare-cta:active,
.contact-cta-button:active,
.plan-cta:active {
  transform: translateY(0);
  box-shadow: none;
  filter: brightness(0.96);
}

/* Cards ganham leve destaque no hover */
.testimonial-card,
.plan-card,
.token-card,
.token-card-wide,
.compare-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover,
.plan-card:hover,
.token-card:hover,
.token-card-wide:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.footer-logo {
  text-align: center;         /* centraliza horizontalmente */
  margin: 10px 0 20px;        /* espaço antes e depois */
}

.footer-logo img:hover {
  filter: drop-shadow(0 0 6px rgba(12, 116, 235, 0.5));
  transform: scale(1.03);
  transition: 0.3s ease;
}




/* ========= TELAS DE AUTENTICAÇÃO ========= */

.auth-body {
  background: #000000;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.auth-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  background: #020617;
  border-radius: 24px;
  padding: 32px 32px 28px;
}

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: left;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 20px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

@media (max-width: 640px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }
}

.auth-label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 6px;
}

.auth-input {
  background: #020617;
  border-radius: 999px;
  border: 1px solid #1f2937;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.9rem;
}

.auth-input:focus {
  outline: none;
  border-color: #0c74eb;
  box-shadow: 0 0 0 1px rgba(12, 116, 235, 0.4);
}

.auth-input::placeholder {
  color: #6b7280;
}

.auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 4px;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 6px;
}

.auth-link {
  color: #0c74eb;
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-bottom-text {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
}



/* ======== APP / PAINEL ======== */

.app-body {
  background: #020617;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.app-header {
  height: 60px;
  border-bottom: 1px solid #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: #000000;
  position: sticky;
  top: 0;
  z-index: 40;
}

.app-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.btn-small {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.app-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: calc(100vh - 60px);
}

.app-sidebar {
  border-right: 1px solid #111827;
  padding: 24px 18px;
  background: #020617;
}

.app-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-menu-item {
  text-decoration: none;
  font-size: 0.88rem;
  color: #9ca3af;
  padding: 8px 10px;
  border-radius: 999px;
}

.app-menu-item:hover {
  background: #111827;
  color: #ffffff;
}

.app-menu-item.active {
  background: #0c74eb;
  color: #ffffff;
}

.app-main {
  padding: 24px 26px 40px;
}

.app-card {
  background: #020617;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid #1f2937;
  margin-bottom: 22px;
}

.app-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.app-card-subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 14px;
}

/* formulário de busca */
.search-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-type {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
}

.search-type label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-input {
  background: #020617;
  border-radius: 999px;
  border: 1px solid #1f2937;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.9rem;
}

.search-input:focus {
  outline: none;
  border-color: #0c74eb;
  box-shadow: 0 0 0 1px rgba(12,116,235,0.4);
}

.search-hint {
  font-size: 0.78rem;
  color: #6b7280;
}

/* grid inferior */
.app-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 18px;
}

.history-list {
  list-style: none;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-list li {
  display: flex;
  justify-content: space-between;
  color: #e5e7eb;
}

.history-status {
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 999px;
}

.history-status.ok     { background: rgba(34,197,94,0.15);  color: #4ade80; }
.history-status.alert  { background: rgba(248,113,113,0.15); color: #f87171; }
.history-status.review { background: rgba(234,179,8,0.15);   color: #eab308; }

.tokens-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.tokens-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.tokens-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.tokens-used {
  color: #f97316;
}

@media (max-width: 960px) {
  .app-layout {
    grid-template-columns: 1fr;
  }
  .app-sidebar {
    display: none;
  }
  .app-main {
    padding: 18px 16px 32px;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
}


.dashboard {
  margin-top: 80px;
}

.dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}

.dashboard-subtitle {
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Bloco de consulta */
.osint-box {
  background: #05070c;
  border-radius: 18px;
  padding: 20px 24px 18px;
  border: 1px solid #111827;
  margin-bottom: 24px;
}

.osint-type-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.osint-type-tab {
  background: transparent;
  border-radius: 999px;
  border: 1px solid #1f2937;
  padding: 6px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  cursor: pointer;
}

.osint-type-tab.active {
  background: #0c74eb;
  color: #ffffff;
  border-color: #0c74eb;
}

.osint-type-tab:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.osint-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.osint-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #1f2937;
  outline: none;
  font-size: 0.95rem;
}

.osint-input:focus {
  border-color: #0c74eb;
}

.osint-hint {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Loader / Resultado */
.osint-loader {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #0c74eb;
  font-weight: 500;
}

.osint-result {
  margin-top: 20px;
  background: #05070c;
  border-radius: 18px;
  border: 1px solid #111827;
  padding: 20px 24px;
}

/* Layout do resultado */
.osint-result-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  align-items: center;
}

.osint-result-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.osint-result-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  border-radius: 999px;
}

.osint-tag-ok {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.osint-tag-alerta {
  background: rgba(234, 179, 8, 0.1);
  color: #fbbf24;
}

.osint-tag-problema {
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
}

.osint-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 24px;
  font-size: 0.9rem;
}

.osint-result-grid--single{
  grid-template-columns: minmax(0, 1fr);
}

.osint-result-main-col{
  padding-left: 14px;
  padding-right: 16px;
  max-width: 1120px;
}

.osint-block-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.osint-list {
  list-style: none;
}

.osint-list li {
  margin-bottom: 4px;
}

.osint-list span {
  color: #9ca3af;
}

.osint-inline-actions {
  margin-top: 10px;
  margin-bottom: 8px;
}

.osint-inline-action-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(12, 116, 235, 0.14);
  border: 1px solid rgba(12, 116, 235, 0.45);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.osint-inline-action-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.osint-wa-profile-card {
  margin-top: 12px;
  max-width: 260px;
  border: 1px solid #1f2937;
  border-radius: 14px;
  background: rgba(3, 8, 18, 0.9);
  padding: 12px;
}

.osint-wa-profile-title {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93c5fd;
  margin-bottom: 8px;
}

.osint-wa-profile-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #020617;
}

.osint-wa-profile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.osint-wa-profile-link {
  margin-top: 8px;
  display: inline-flex;
  font-size: 0.8rem;
  color: #60a5fa;
  text-decoration: none;
}

.osint-wa-profile-link:hover {
  text-decoration: underline;
}

.osint-wa-profile-empty {
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}



/* =========================================================
   OVERRIDE VISUAL – DEPOIMENTOS + PLANOS (igual referência)
   Cole este bloco NO FINAL do styles.css
========================================================= */

/* ===== DEPOIMENTOS ===== */
.testimonials-section {
  background: #000000;
  padding: 80px 0;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}

.testimonials-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: radial-gradient(
    1200px 600px at 50% -20%,
    rgba(12,116,235,0.35) 0%,
    rgba(10,60,140,0.18) 35%,
    rgba(0,0,0,0.92) 70%
  );
  color: rgba(255,255,255,0.82);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 50px rgba(0,0,0,0.65);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.testimonial-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

.testimonial-footer strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.92);
}

.testimonial-footer span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.58);
}

/* Responsivo depoimentos */
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PLANOS ===== */
.pricing-section {
  background: #000000;
  padding: 80px 0;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.92);
}

.pricing-title span {
  display: block;
  color: rgba(255,255,255,0.92); /* na referência o título é branco */
}

.pricing-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 780px;
  margin: 0 auto 10px;
  line-height: 1.4;
}

.pricing-highlight {
  text-align: center;
  font-size: 0.9rem;
  color: #0c74eb; /* linha azul como a referência */
  margin-bottom: 36px;
  text-decoration: underline;
  font-weight: 600;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card base (dark premium) */
.plan-card {
  position: relative; /* necessário pros badges */
  background: radial-gradient(
    1200px 600px at 50% -20%,
    rgba(12,116,235,0.35) 0%,
    rgba(10,60,140,0.18) 35%,
    rgba(0,0,0,0.92) 70%
  );
  color: rgba(255,255,255,0.82);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 60px rgba(0,0,0,0.7);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}

.plan-header {
  text-align: center;
  margin-bottom: 14px;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
}

/* corpo */
.plan-body {
  font-size: 0.85rem;
}

.plan-tagline {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.60);
}

.plan-price span {
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}

.plan-price small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
}

/* pill tokens */
.plan-tokens-pill {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 14px;
  padding: 7px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
}

/* lista */
.plan-included p {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.78);
}

.plan-included ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
}

.plan-included li {
  position: relative;
  padding-left: 16px;
}

.plan-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0c74eb;
  font-weight: 800;
}

.plan-included li + li {
  margin-top: 4px;
}

/* botão */
.plan-footer {
  margin-top: 16px;
  text-align: center;
}

.plan-cta {
  width: 100%;
  background: rgba(12,116,235,0.22);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  border: 1px solid rgba(12,116,235,0.50);
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.plan-cta:hover {
  background: rgba(12,116,235,0.28);
}

/* BADGE -50% em todos */
.plan-card::after {
  content: "-50%";
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff2b2b;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255,43,43,0.35);
}

/* DESTAQUE do plano do meio (mais popular) */
.pricing-grid .plan-card:nth-child(2) {
  border: 2px solid rgba(248, 196, 99, 0.9);
  box-shadow:
    0 0 0 1px rgba(206,166,93,0.28),
    0 20px 90px rgba(206,166,93,0.14),
    0 20px 90px rgba(0,0,0,0.70);
  transform: translateY(-10px);
}

.pricing-grid .plan-card:nth-child(2)::before {
  content: "MAIS POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 0, 0);
  border: 1px solid rgb(206, 166, 93);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
}

.pricing-grid .plan-card:nth-child(2) .plan-cta {
  background: rgba(206,166,93,0.22);
  border-color: rgba(206,166,93,0.55);
}

.pricing-grid .plan-card:nth-child(2) .plan-cta:hover {
  background: rgba(206,166,93,0.28);
}

/* Responsivo planos */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid .plan-card:nth-child(2) {
    transform: none;
  }
}


/* ===== TIMER DE OFERTA ===== */
#pricing-timer {
  color: #0c74eb;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-left: 6px;
  font-size: 0.95rem;
  text-shadow: 0 0 10px rgba(12,116,235,0.6);
}

/* =========================================================
   OVERRIDE VISUAL – SEÇÃO TOKENS (igual referência)
========================================================= */

.tokens-section {
  background: #000;
  padding: 90px 0;
}

.tokens-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.95);
}

/* GRID */
.tokens-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* ===== CARDS ESCUROS (uso ilimitado / PJ / PF) ===== */
.token-card {
  background: radial-gradient(
    1200px 600px at 50% -30%,
    rgba(12,116,235,0.45) 0%,
    rgba(10,60,140,0.22) 35%,
    rgba(0,0,0,0.95) 75%
  );
  color: rgba(255,255,255,0.82);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 0 60px rgba(12,116,235,0.18),
    0 18px 50px rgba(0,0,0,0.75);
  padding: 22px 24px;
}

/* títulos */
.token-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.95);
}

/* listas */
.token-card ul {
  list-style: none;
  padding-left: 0;
}

.token-card ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-left: 18px;
}

.token-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0c74eb;
  font-weight: 800;
}

.token-card ul li + li {
  margin-top: 6px;
}

/* ===== CARDS PJ / PF (centralizados) ===== */
.token-card-center {
  text-align: center;
}

.tokens-grid-middle {
  margin-top: 16px;
}

.tokens-grid-middle .token-card {
  padding: 18px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.token-amount {
  font-size: 1rem;
  font-weight: 800;
  margin: 8px 0 4px;
  color: rgba(255,255,255,0.95);
}

.token-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* ===== CARD EXEMPLO PRÁTICO (cinza claro) ===== */
.token-card-wide {
  background: #e5e5e5;
  color: #111827;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.tokens-grid-bottom {
  margin-top: 16px;
  grid-template-columns: 1fr;
}

.tokens-grid-bottom .token-card-wide {
  max-width: 860px;
  margin: 0 auto;
}

.token-example {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.token-small {
  font-size: 0.8rem;
  text-align: center;
  color: #374151;
}

/* ===== TEXTO FINAL (pílula azul escura) ===== */
.tokens-footer {
  margin: 26px 350px 0 400px;
  display: inline-block;
  background: rgba(12,116,235,0.18);
  border: 1px solid rgba(12,116,235,0.45);
  color: rgba(255,255,255,0.9);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-align: center;
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .tokens-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsivo */
@media (max-width: 900px) {
  .osint-result-grid {
    grid-template-columns: 1fr;
  }

  .osint-input-row {
    flex-direction: column;
  }

  .dashboard-title,
  .dashboard-subtitle {
    text-align: center;
  }
}



/* ===== FUNDO MATRIX (LOGIN) ===== */
.matrix-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

.auth-wrapper,
.header{
  position: relative;
  z-index: 2;
}

/* dá um glow no card por cima do fundo */
.auth-card{
  background: radial-gradient(1200px 600px at 50% -20%, rgba(4, 23, 44, 0.35) 0%, rgba(10, 14, 20, 0.18) 35%, rgba(0,0,0,0.92) 70%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 70px rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

/* app.html */
.app-view[hidden]{ display:none !important; }

.app-menu-item{
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}



/* =========================================
   Hacker Hunter — Sequential Cell Reveal
   ========================================= */

@keyframes hhSlideIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mantém a tabela estática */
.compare-table th,
.compare-table td {
  position: relative;
  overflow: hidden;
}

/* Conteúdo animado (letras, números, símbolos, botões) */
.hh-cell {
  display: inline-block;
  opacity: 0;
  transform: translateX(-24px);
  will-change: transform, opacity;
}

/* Estado ativo — animação lenta e elegante */
.hh-cell.is-in {
  animation: hhSlideIn 900ms cubic-bezier(.16,1,.3,1) forwards;
}


@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image-area {
    justify-content: center;
    margin-top: 20px;
  }

  .section-info-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .info-left {
    padding-left: 0;
  }

  .bullets-row {
    flex-direction: column;
  }

  .pricing-grid,
  .testimonial-grid,
  .tokens-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none; /* depois podemos fazer menu mobile */
  }

  .header-content {
    justify-content: space-between;
  }
}



/* HERO PREPARADO PARA CAMADA DE PARTÍCULAS */
.hero {
  position: relative;
  overflow: hidden;
}

/* camada das partículas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* cada partícula */
.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(12, 116, 235, 0.6);
  box-shadow: 0 0 10px rgba(12, 116, 235, 0.8);
  opacity: 0;
  animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}

/* cursor do efeito de digitação */
.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: typing-cursor 0.9s steps(1) infinite;
}

@keyframes typing-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


/* ===== HEADER DIREITA ===== */

.app-header-right{
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Botão adquirir tokens */
.btn-acquire{
  background: transparent;
  color: #facc15;
  border: 1px solid rgba(250,204,21,0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-acquire:hover{
  background: rgba(250,204,21,0.08);
  border-color: rgba(250,204,21,0.8);
}

/* Saldo tokens */
.token-balance{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #020617;
  border: 1px solid #1f2937;
  border-radius: 999px;
  padding: 6px 14px;
}

.token-icon{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-info{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.token-label{
  font-size: 0.65rem;
  color: #9ca3af;
}

.token-info strong{
  font-size: 0.75rem;
  color: #ffffff;
}

/* Usuário */
.user-menu{
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ===== BOTÃO SAIR (HEADER) ===== */

.btn-logout-header{
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #1f2937;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-logout-header:hover{
  border-color: rgba(248,113,113,0.8);
  color: #f87171;
  background: rgba(248,113,113,0.08);
}


/* =========================================================
   MAPA INVESTIGATIVO — UI Premium (estilo referência)
========================================================= */

/* Área do mapa (container geral dentro do resultado) */
.hh-map-shell{
  position: relative;
  isolation: isolate;
  --hh-radar-x: 50%;
  --hh-radar-y: 53%;
  --hh-radar-angle: 0deg;
  width: 100%;
  min-height: 820px;
  border-radius: 16px;
  border: 1px solid rgba(125,211,252,0.26);
  overflow: hidden;
  background:
    radial-gradient(1050px 520px at 52% 50%, rgba(239,68,68,0.14) 0%, rgba(15,23,42,0.02) 48%, rgba(0,0,0,0) 68%),
    radial-gradient(1200px 600px at 20% -30%, rgba(12,116,235,0.30) 0%, rgba(8,30,70,0.18) 38%, rgba(0,0,0,0.94) 75%),
    #05070c;
  box-shadow: 0 26px 70px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(56,189,248,0.08);
}

.hh-map-shell::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,8,20,0.24) 0%, rgba(2,8,20,0.66) 100%),
    url("../img/ULTRA%20WIDE%20sem%20letra.jpg");
  background-size: cover;
  background-position: center center;
  opacity: 0.45;
  filter: saturate(1.15) contrast(1.08);
  transform-origin: center;
  animation: hh-city-breathe 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hh-map-shell::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--hh-radar-x, 50%) var(--hh-radar-y, 53%),
      rgba(248,113,113,0.20) 0%,
      rgba(248,113,113,0) 24%
    ),
    conic-gradient(
      from var(--hh-radar-angle, 0deg) at var(--hh-radar-x, 50%) var(--hh-radar-y, 53%),
      rgba(56,189,248,0.00) 0deg,
      rgba(56,189,248,0.00) 286deg,
      rgba(56,189,248,0.26) 327deg,
      rgba(56,189,248,0.00) 360deg
    );
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: hh-radar-sweep 10s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* Fundo grid (tipo “canvas”) */
.hh-map-bg{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5,10,24,0.14) 0%, rgba(5,10,24,0.52) 100%);
  opacity: 0.64;
  pointer-events: none;
  animation: none;
}

@keyframes hh-city-breathe{
  0%{ transform: scale(1); filter: saturate(1.08) contrast(1.02); opacity: 0.40; }
  100%{ transform: scale(1.04); filter: saturate(1.24) contrast(1.14); opacity: 0.48; }
}

@property --hh-radar-angle{
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes hh-radar-sweep{
  0%{ --hh-radar-angle: 0deg; }
  100%{ --hh-radar-angle: 360deg; }
}

@keyframes hh-grid-flicker{
  0%, 100%{ opacity: 0.58; }
  45%{ opacity: 0.70; }
  75%{ opacity: 0.62; }
}

@keyframes hh-soft-float{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-2px); }
}

@keyframes hh-shine{
  0%, 72%, 100%{ left: -60%; opacity: 0; }
  78%{ opacity: 0.8; }
  90%{ left: 135%; opacity: 0; }
}

@keyframes hh-card-sweep{
  0%, 66%, 100%{ transform: translateX(-130%); opacity: 0; }
  72%{ opacity: 0.85; }
  88%{ transform: translateX(130%); opacity: 0; }
}

/* Topbar do mapa */
.hh-map-topbar{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: rgba(2,6,23,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  z-index: 14;
}

.hh-map-topbar-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 280px;
}

.hh-icon-btn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hh-icon-btn:hover{
  border-color: rgba(12,116,235,0.6);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(12,116,235,0.25);
}

.hh-case-title{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hh-case-title small{
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin-left: 4px;
}

.hh-map-badges{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hh-map-badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(15,23,42,0.72);
  color: rgba(255,255,255,0.72);
  font-size: 0.74rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(56,189,248,0.12), 0 0 12px rgba(56,189,248,0.08);
  animation: hh-soft-float 5.8s ease-in-out infinite;
}

.hh-map-badge::before{
  content: "";
  position: absolute;
  top: -40%;
  left: -56%;
  width: 36%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(125,211,252,0.42), rgba(255,255,255,0));
  transform: rotate(24deg);
  animation: hh-shine 7s ease-in-out infinite;
  pointer-events: none;
}

/* Abas centralizadas */
.hh-map-tabs{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.hh-tab{
  position: relative;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.68);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 10px;
}

.hh-tab.active{
  color: rgba(255,255,255,0.95);
}

.hh-map-subtitle{
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* Ação direita */
.hh-map-topbar-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 300px;
}

.hh-action{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12,116,235,0.45);
  background: rgba(12,116,235,0.18);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.hh-action.ghost{
  border-color: rgba(255,255,255,0.22);
  background: rgba(15,23,42,0.55);
}

.hh-action:hover{
  border-color: rgba(12,116,235,0.75);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(12,116,235,0.3);
}

/* Toolbar vertical (esquerda) */
.hh-map-toolbar{
  position: absolute;
  top: 78px; /* abaixo da topbar */
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 7px;
  border-radius: 12px;
  background: rgba(2,6,23,0.76);
  border: 1px solid rgba(148,163,184,0.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(2,6,23,0.36);
  z-index: 14;
}

.hh-tool-row{
  display: flex;
  align-items: center;
  gap: 7px;
}

.hh-tool{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(2,6,23,0.58);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.hh-tool-refresh{
  font-size: 18px;
  font-weight: 700;
}

.hh-tool:hover{
  border-color: rgba(148,163,184,0.48);
  background: rgba(15,23,42,0.75);
}

.hh-tool.hh-tool-toggle{
  width: auto;
  min-width: 74px;
  height: 30px;
  border-radius: 9px;
  padding: 0 9px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hh-tool.active{
  border-color: rgba(56,189,248,0.62);
  background: rgba(8,47,73,0.62);
  color: #e0f2fe;
}

.hh-map-toolbar .hh-tool::before{
  content: none;
  display: none;
}


/* Legenda inferior (pills) */
.hh-map-legend{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(2,6,23,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  z-index: 14;
  max-width: calc(100% - 88px);
}

.hh-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0,0,0,0.32);
  position: relative;
  overflow: hidden;
  animation: hh-soft-float 6.5s ease-in-out infinite;
}

.hh-pill:nth-child(2){
  animation-delay: 1.1s;
}

.hh-pill:nth-child(3){
  animation-delay: 2.1s;
}

.hh-action::before,
.hh-tool::before,
.hh-pill::before{
  content: "";
  position: absolute;
  top: -46%;
  left: -60%;
  width: 34%;
  height: 190%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(125,211,252,0.36), rgba(255,255,255,0));
  transform: rotate(22deg);
  animation: hh-shine 8s ease-in-out infinite;
  pointer-events: none;
}

.hh-pill strong{
  color: #ffffff;
  font-size: 0.84rem;
}

.hh-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

/* Cores dos dots */
.hh-dot.socio{ background: #a3e635; }
.hh-dot.admin{ background: #fde047; }
.hh-dot.exsocio{ background: #f87171; }
.hh-dot.exadmin{ background: #fb7185; }
.hh-dot.geral{ background: #9ca3af; }

/* Botão flutuante (canto direito) */
.hh-fab{
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(2,6,23,0.58);
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 14;
  backdrop-filter: blur(6px);
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hh-fab:hover{
  border-color: rgba(148,163,184,0.48);
  background: rgba(15,23,42,0.75);
}

/* Container do Cytoscape por baixo de tudo */
.hh-map-cy{
  position: absolute;
  inset: 0;
  /* deixa a topbar/toolbar por cima */
  padding-top: 56px;
  z-index: 3;
}





/* Side panel mantém, mas deixa com cara mais “app” */
#osint-side-panel{
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(2,6,23,0.92) !important;
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 12px;
}

.hh-side-head{
  margin-bottom: 10px;
}

.hh-side-kicker{
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93a2b8;
  margin-bottom: 4px;
}

.hh-side-title{
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
}

.hh-side-type{
  margin-top: 4px;
  font-size: 0.82rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hh-side-badge{
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.6);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
}

.hh-side-badge.ok{
  border-color: rgba(74,222,128,0.45);
  color: #86efac;
}

.hh-side-badge.warn{
  border-color: rgba(251,191,36,0.45);
  color: #fcd34d;
}

.hh-side-badge.danger{
  border-color: rgba(248,113,113,0.45);
  color: #fca5a5;
}

.hh-side-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.hh-side-list + .hh-side-list{
  margin-top: 8px;
}

.hh-side-list li{
  display: grid;
  grid-template-columns: minmax(90px, 160px) 1fr;
  gap: 8px;
  align-items: start;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hh-side-list li:last-child{
  border-bottom: 0;
}

.hh-side-list span{
  color: #94a3b8;
  font-size: 0.77rem;
}

.hh-side-list strong{
  color: #e5e7eb;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
}

.hh-side-list.compact li{
  padding: 6px 10px;
}

.hh-side-actions{
  margin-top: 10px;
}

.hh-side-note{
  margin-top: 6px;
  font-size: 0.74rem;
  color: #94a3b8;
}

.hh-side-note.warn{
  color: #fbbf24;
}

/* Responsivo básico */
@media (max-width: 900px){
  .hh-map-topbar-left, .hh-map-topbar-right{ min-width: 200px; }
  .hh-case-title{ max-width: 180px; }
  .hh-map-subtitle{ display: none; }
}

@media (max-width: 720px){
  .hh-map-shell{
    min-height: 520px;
  }
  .hh-map-cy #osint-graph{
    height: 520px !important;
  }
  .hh-map-topbar{
    flex-direction: column;
    height: auto;
    padding: 10px 12px;
    gap: 8px;
  }
  .hh-map-topbar-left,
  .hh-map-topbar-right{
    min-width: 100%;
  }
  .hh-map-topbar-left{
    align-items: flex-start;
  }
  .hh-map-topbar-right{
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .hh-map-tabs{
    order: 3;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hh-map-subtitle{
    text-align: left;
  }
  .hh-map-toolbar{
    top: 132px;
    left: 8px;
  }
  .hh-side-list li{
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .osint-input-row {
    grid-template-columns: 1fr;
  }
  .osint-input {
    width: 100%;
  }
  .btn-primary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hh-map-shell::before,
  .hh-map-shell::after,
  .hh-map-bg,
  .hh-map-badge,
  .hh-pill,
  .hh-maps-card,
  .hh-action::before,
  .hh-tool::before,
  .hh-pill::before,
  .hh-map-badge::before,
  .hh-maps-card::before {
    animation: none !important;
  }
}

.auth-terms {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #d1d5db;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.auth-terms a {
  color: #0c74eb;
  text-decoration: none;
}

.auth-terms a:hover {
  text-decoration: underline;
}

/* ===== Modal Termos/Privacidade ===== */
.legal-modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
}

.legal-modal[hidden]{
  display: none !important;
}

.legal-modal-content{
  width: min(860px, 96vw);
  max-height: 86vh;
  overflow: auto;
  border-radius: 18px;
  background: rgba(2,6,23,0.96);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 70px rgba(0,0,0,0.75);
  padding: 18px 18px 16px;
  color: rgba(255,255,255,0.88);
}

.legal-close{
  position: sticky;
  top: 0;
  margin-left: auto;
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}

.legal-close:hover{
  border-color: rgba(255,255,255,0.28);
}

#legal-text h2{
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  margin: 10px 0 10px;
}

#legal-text p, #legal-text li{
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

#legal-text a{
  color: #0c74eb;
}

/* =========================================================
   TERMOS / PRIVACIDADE — PÁGINAS LEITURA (premium)
   Cole no FINAL do styles.css
========================================================= */

.legal-body {
  background: #000000;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.legal-wrapper {
  position: relative;
  z-index: 2;
  padding: 46px 0 80px;
}

.legal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.85rem;
}

.legal-back:hover {
  border-color: rgba(148,163,184,0.75);
}

.legal-card {
  background: radial-gradient(
    1200px 700px at 50% -20%,
    rgba(12,116,235,0.35) 0%,
    rgba(10,60,140,0.18) 35%,
    rgba(0,0,0,0.94) 72%
  );
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  box-shadow: 0 18px 80px rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  padding: 28px 26px;
}

.legal-title {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.legal-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.legal-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12,116,235,0.40);
  background: rgba(12,116,235,0.10);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
}

.legal-content h3 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}

.legal-content p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.legal-content ul, .legal-content ol {
  color: rgba(255,255,255,0.78);
  padding-left: 20px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}

.legal-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
}

.legal-footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content: space-between;
  align-items: center;
}

.legal-actions-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-link {
  color: #0c74eb;
  text-decoration: none;
  font-weight: 600;
}

.legal-link:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .legal-card { padding: 22px 18px; }
  .legal-header-row { flex-direction: column; align-items: flex-start; }
}


/* ===== MODAL MAPS (AMPLIAR) ===== */
.hh-modal[hidden]{ display:none !important; }

.hh-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.hh-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.75);
}

.hh-modal-card{
  position: relative;
  width: min(980px, 96vw);
  max-height: 88vh;
  overflow: auto;
  border-radius: 18px;
  background: rgba(2,6,23,0.96);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 80px rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  padding: 14px 14px 16px;
}

.hh-modal-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.hh-modal-title{
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.hh-modal-subtitle{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  margin-top: 2px;
}

.hh-modal-close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}

.hh-modal-close:hover{
  border-color: rgba(255,255,255,0.28);
}

.hh-modal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 6px 10px;
}

.hh-modal-block{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.hh-modal-block-title{
  padding: 10px 12px;
  font-size: 0.82rem;
  color:#9ca3af;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hh-modal-block img{
  display:block;
  width:100%;
  height: 420px;
  object-fit: cover;
}

.hh-modal-actions{
  padding: 0 6px;
  display:flex;
  justify-content: flex-end;
  margin-top: 6px;
}

@media (max-width: 900px){
  .hh-modal-grid{ grid-template-columns: 1fr; }
  .hh-modal-block img{ height: 300px; }
}

/* =========================================================
   MAPA PREMIUM (card do resultado OSINT)
========================================================= */
.map-premium{
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(900px 400px at 10% -20%, rgba(12,116,235,0.35) 0%, rgba(8,30,70,0.18) 38%, rgba(0,0,0,0.92) 75%),
    rgba(2,6,23,0.9);
  padding: 16px 18px 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.map-premium-header{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.map-premium-title{
  min-width: 240px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.map-premium-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

.map-premium-title strong{
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
}

.map-premium-meta{
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.map-premium-actions{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.map-premium-btn{
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(12,116,235,0.25);
  border: 1px solid rgba(12,116,235,0.55);
  color: rgba(255,255,255,0.95);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.map-premium-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(12,116,235,0.35);
}

.map-premium-btn.outline{
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.2);
}

.map-premium-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.map-premium-card{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 0 40px rgba(12,116,235,0.12);
}

.map-premium-card-title{
  padding: 8px 12px;
  font-size: 0.8rem;
  color:#9ca3af;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.map-premium-thumb img{
  display:block;
  width:100%;
  height:240px;
  object-fit:cover;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.map-premium-thumb img:hover{
  transform: scale(1.02);
}

.map-premium-footer{
  margin-top: 10px;
  font-size: 0.75rem;
  color:#6b7280;
}

.map-premium-empty{
  margin-top: 10px;
  font-size: 0.85rem;
  color:#f97316;
}

@media (max-width: 900px){
  .map-premium-grid{
    grid-template-columns: 1fr;
  }
  .map-premium-thumb img{
    height: 220px;
  }
}

/* =========================================================
   MAPS (layout clássico do print)
========================================================= */
.hh-maps-block{
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(1200px 520px at 12% -20%, rgba(12,116,235,0.35) 0%, rgba(8,30,70,0.18) 40%, rgba(0,0,0,0.92) 78%),
    linear-gradient(180deg, rgba(3,8,20,0.96) 0%, rgba(2,6,18,0.92) 55%, rgba(0,0,0,0.96) 100%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  padding: 16px 18px 14px;
}

.hh-maps-header{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hh-maps-title{
  min-width: 240px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.hh-maps-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

.hh-maps-title strong{
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
}

.hh-maps-meta{
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.hh-maps-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hh-maps-btn{
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  background: #0c74eb;
  border: 1px solid #0c74eb;
  color: rgba(255,255,255,0.95);
  box-shadow: 0 10px 24px rgba(12,116,235,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hh-maps-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hh-maps-btn.outline{
  background: rgba(12,116,235,0.12);
  border-color: rgba(12,116,235,0.55);
  box-shadow: none;
}

.hh-maps-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hh-maps-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(125,211,252,0.24);
  background: linear-gradient(180deg, rgba(15,23,42,0.68) 0%, rgba(2,6,23,0.72) 100%);
  box-shadow: 0 10px 28px rgba(2,132,199,0.20), inset 0 0 0 1px rgba(56,189,248,0.08);
  animation: hh-soft-float 7.2s ease-in-out infinite;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hh-maps-card:nth-child(2){
  animation-delay: 1.6s;
}

.hh-maps-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0) 20%, rgba(125,211,252,0.26) 48%, rgba(255,255,255,0) 72%);
  transform: translateX(-130%);
  animation: hh-card-sweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.hh-maps-card:hover{
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.55);
  box-shadow: 0 18px 40px rgba(2,132,199,0.30), inset 0 0 0 1px rgba(56,189,248,0.18);
}

.hh-maps-card-title{
  padding: 8px 12px;
  font-size: 0.8rem;
  color:#cbd5e1;
  border-bottom: 1px solid rgba(56,189,248,0.20);
  background: linear-gradient(90deg, rgba(8,47,73,0.42), rgba(15,23,42,0.04));
  position: relative;
  z-index: 3;
}

.hh-maps-thumb img{
  display:block;
  width:100%;
  height:240px;
  object-fit:cover;
  cursor: zoom-in;
  filter: saturate(1.14) contrast(1.08);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hh-maps-card:hover .hh-maps-thumb img{
  transform: scale(1.03);
  filter: saturate(1.24) contrast(1.14);
}

.hh-maps-footer{
  margin-top: 10px;
  font-size: 0.75rem;
  color:#6b7280;
}

.hh-maps-empty{
  margin-top: 10px;
  font-size: 0.85rem;
  color:#f97316;
}

@media (max-width: 900px){
  .hh-maps-grid{
    grid-template-columns: 1fr;
  }
  .hh-maps-thumb img{
    height: 220px;
  }
}

/* =========================================================
   MOBILE HARDENING (final override)
========================================================= */
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .container {
    width: min(92%, 1200px);
  }

  .header-content {
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .header-left img,
  .header-content > img,
  .app-header-left img {
    width: clamp(140px, 42vw, 190px);
  }

  .header-right {
    margin-left: auto;
    gap: 10px;
    width: auto;
  }

  .nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-link,
  .btn-nav-primary,
  .btn-ghost {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0 32px;
  }

  .hero-particles {
    background:
      linear-gradient(to bottom,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.78) 45%,
        rgba(0, 0, 0, 0.9) 100%
      ),
      url("../img/ULTRA WIDE sem letra.jpg") center center / cover no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    max-width: 100%;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-buttons-row {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons-row .btn-primary,
  .hero-buttons-row .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-logo-wrap {
    display: none;
  }

  .hero-integration-text {
    position: static;
    margin-top: 12px;
    padding: 0 14px;
    font-size: 0.85rem;
  }

  .sources-strip {
    padding: 14px 0;
  }

  .sources-track {
    gap: 36px;
  }

  .source-logo img {
    height: 46px;
  }

  .section-title-hero,
  .deep-title,
  .pricing-title,
  .testimonials-title,
  .tokens-title,
  .compare-title {
    font-size: clamp(1.2rem, 6vw, 1.65rem);
    line-height: 1.3;
  }

  .section-info-grid,
  .deep-row,
  .testimonials-grid,
  .pricing-grid,
  .tokens-grid,
  .hh-maps-grid,
  .map-premium-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-image-placeholder {
    min-height: 220px;
  }

  .bullets-row {
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
    align-items: stretch;
  }

  .bullet-item {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .bullet-item h3,
  .bullet-item p {
    text-align: center;
  }

  .deep-image {
    height: 210px;
  }

  .auth-wrapper {
    min-height: auto;
    padding: 22px 12px 28px;
  }

  .auth-card {
    border-radius: 18px;
    padding: 24px 18px 22px;
  }

  .auth-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-wrapper {
    padding: 22px 0 42px;
  }

  .legal-card {
    padding: 20px 16px;
  }

  .legal-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-header {
    height: auto;
    padding: 10px 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .app-header-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .token-balance {
    padding: 6px 10px;
  }

  .app-layout {
    display: block;
    min-height: auto;
  }

  .app-sidebar {
    display: block;
    border-right: 0;
    border-bottom: 1px solid #111827;
    padding: 10px 12px;
    overflow-x: auto;
  }

  .app-menu {
    flex-direction: row;
    min-width: max-content;
  }

  .app-menu-item {
    width: auto;
    white-space: nowrap;
    text-align: center;
  }

  .app-main {
    padding: 14px 12px 26px;
  }

  .dashboard {
    margin-top: 20px;
  }

  .dashboard-title {
    font-size: 1.35rem;
    text-align: left;
  }

  .dashboard-subtitle {
    text-align: left;
    font-size: 0.88rem;
  }

  .osint-box {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .osint-input-row {
    flex-direction: column;
  }

  .osint-input-row .btn-primary {
    width: 100%;
  }

  .osint-result {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .osint-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .osint-result-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hh-map-shell {
    min-height: 560px;
  }

  .hh-map-toolbar {
    display: none;
  }

  .hh-modal-card {
    width: min(980px, 98vw);
    padding: 12px 10px 14px;
  }

  .hh-modal-block img,
  .map-premium-thumb img,
  .hh-maps-thumb img {
    height: 200px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 18px;
  }

  .footer-menus {
    width: 100%;
    gap: 22px;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-outline,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-title {
    font-size: 1.55rem;
  }

  .app-user-mini {
    width: 100%;
  }

  .btn-acquire,
  .btn-logout-header,
  .token-balance {
    width: 100%;
    justify-content: center;
  }
}
