/* Vitrine pública (/) — única tela, sem scroll de seção-feature-testemunho
   (a "caixa" de landing page de IA). Fundo escuro de propósito: diferente
   do branco-e-blob-gradiente padrão de SaaS, e já é a cor do sidebar do
   próprio painel (--surface-nav), então quem loga reconhece a mesma
   identidade sem susto. */
* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bf-ink-900);
  color: var(--bf-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Dois brilhos suaves da própria paleta da marca, deriva lenta — textura
   sem ilustração nenhuma, tudo CSS. */
.brilho { position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; opacity: .35; }
.brilho-1 { width: 560px; height: 560px; background: var(--bf-blue-600); top: -180px; right: -140px; animation: derivar-1 22s ease-in-out infinite alternate; }
.brilho-2 { width: 440px; height: 440px; background: var(--bf-teal-600); bottom: -160px; left: -120px; animation: derivar-2 26s ease-in-out infinite alternate; }
@keyframes derivar-1 { from { transform: translate(0, 0); } to { transform: translate(-40px, 50px); } }
@keyframes derivar-2 { from { transform: translate(0, 0); } to { transform: translate(30px, -40px); } }
@media (prefers-reduced-motion: reduce) { .brilho-1, .brilho-2 { animation: none; } }

.miolo {
  position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 24px; text-align: center;
}

.logo { height: 30px; width: auto; margin-bottom: 40px; }

.selo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: .08em; text-transform: uppercase;
  color: var(--bf-teal-400);
  background: rgba(20, 200, 190, .12);
  border: 1px solid rgba(20, 200, 190, .28);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  margin-bottom: 28px;
}
.selo::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bf-teal-400); flex-shrink: 0; }

h1 {
  margin: 0 0 20px;
  font-size: 44px; line-height: 1.12; letter-spacing: -.025em; font-weight: 800;
  max-width: 720px;
}
h1 .aceso {
  background: var(--bf-gradient-brand-diag);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.subtitulo {
  margin: 0 0 40px;
  font-size: 17px; line-height: 1.55; color: var(--bf-slate-300);
  max-width: 460px;
}

.botao-entrar {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bf-gradient-brand-diag);
  color: var(--bf-white); text-decoration: none;
  font-size: 16px; font-weight: 700;
  padding: 15px 28px; border-radius: var(--r-control);
  box-shadow: 0 8px 28px -8px rgba(12, 123, 250, .55);
  transition: transform .15s ease, box-shadow .15s ease;
}
.botao-entrar:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -8px rgba(12, 123, 250, .7); }
.botao-entrar:active { transform: translateY(0); }
.botao-entrar svg { flex-shrink: 0; transition: transform .15s ease; }
.botao-entrar:hover svg { transform: translateX(3px); }

.legenda-acesso {
  margin: 18px 0 0; font-size: var(--fs-xs); color: var(--bf-slate-400);
}

footer {
  position: relative; z-index: 1;
  text-align: center; padding: 24px; font-size: var(--fs-xs); color: var(--bf-slate-500);
}
footer a { color: var(--bf-slate-400); text-decoration: none; }
footer a:hover { color: var(--bf-teal-400); text-decoration: underline; }

@media (max-width: 599px) {
  h1 { font-size: 32px; }
  .subtitulo { font-size: 15px; }
  .logo { height: 24px; margin-bottom: 32px; }
}

/* Página de FAQ — mesma identidade (fundo escuro, brilho, logo), mas em
   formato de conteúdo pra ler, não de vitrine de uma tela só. */
.pagina-faq { align-items: stretch; justify-content: flex-start; text-align: left; padding-top: 56px; }
/* display:flex + column é o que faz cada filho (logo, selo, h1, subtítulo)
   cair na própria linha e centralizar certo — sem isso, logo (img, inline
   por padrão) e selo (inline-flex) cabiam lado a lado na mesma linha em vez
   de empilhar, cada um puxando o outro pra fora do centro visual (achado
   com o Bruno). Mesmo truque que já funciona no .miolo da página inicial —
   aqui só precisa ficar explícito porque .topo-faq é um nível a mais de
   aninhamento. */
.pagina-faq .topo-faq { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; }
.pagina-faq .logo { margin-bottom: 24px; }
.pagina-faq h1 { font-size: 34px; margin-left: auto; margin-right: auto; }
.pagina-faq .subtitulo { margin: 0 auto; }

.lista-faq { width: 100%; max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.pergunta {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-card); overflow: hidden;
}
.pergunta summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-size: 16px; font-weight: 700; color: var(--bf-white);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pergunta summary::-webkit-details-marker { display: none; }
.pergunta summary::after {
  content: ""; flex-shrink: 0; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d7089' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.pergunta[open] summary::after { transform: rotate(180deg); }
.pergunta .resposta {
  padding: 0 22px 20px; margin: 0; color: var(--bf-slate-300);
  font-size: 15px; line-height: 1.65; max-width: 560px;
}

.voltar-inicio {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--bf-slate-400); text-decoration: none; font-size: var(--fs-xs); font-weight: 600;
  margin: 0 auto 20px; text-align: center;
}
.voltar-inicio:hover { color: var(--bf-white); }
