/* =========================
   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;
}


/* =========================
   HEADER / NAV
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000000;
}

.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 {
  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.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;
  background: radial-gradient(circle at top, #020617 0, #000000 55%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.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;
}

.hero-image-area {
  display: flex;
  justify-content: flex-end;
}

.hero-mockup {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  border: 1px solid #1f2937;
  background: radial-gradient(circle at top, #111827 0, #020617 60%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-align: center;
}

/* texto abaixo dos botões */
.hero-integration-text {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 45px;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  font-weight: 400;
}


/* =========================
   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: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 0.95rem;
}

/* 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 #1f2937;
  background: #000000;
  padding: 80px 24px;
  text-align: center;
  color: #6b7280;
}




/* =========================
   DEPOIMENTOS
========================= */

/* =========================
   DEPOIMENTOS - O QUE DIZEM DO HACK HUNTER
========================= */

.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;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
  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;
}

/* Cards cinza arredondados */
.testimonial-card {
  background: #e5e5e5;
  color: #111827;
  border-radius: 32px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Rodapé com nome e cargo */
.testimonial-footer strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-footer span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Responsivo */
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}



/* =========================
   PLANOS
========================= */
/* =========================
   PLANOS - ESCOLHA O PLANO IDEAL
========================= */

.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;
}

.pricing-title span {
  display: block;
  color: #8a0101; /* vermelho suave para "INVESTIGAÇÕES" */
}

.pricing-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
  max-width: 780px;
  margin: 0 auto 10px;
  line-height: 1.4;
}

.pricing-highlight {
  text-align: center;
  font-size: 0.9rem;
  color: #8a0101;
  margin-bottom: 36px;
}

/* GRID DE 3 CARDS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */
.plan-card {
  background: #e5e5e5;
  color: #111827;
  border-radius: 28px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
}

/* Cabeçalho */
.plan-header {
  text-align: center;
  margin-bottom: 16px;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* Corpo */
.plan-body {
  font-size: 0.85rem;
}

.plan-tagline {
  margin-bottom: 6px;
}

.plan-price span {
  font-weight: 700;
  font-size: 1.05rem;
}

.plan-price small {
  font-size: 0.75rem;
  color: #4b5563;
}

/* Pill azul de tokens */
.plan-tokens-pill {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 14px;
  padding: 6px 24px;
  border-radius: 999px;
  border: none;
  background: #3374eb;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Lista “Incluído neste plano” */
.plan-included p {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.plan-included ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.8rem;
  color: #374151;
}

.plan-included li + li {
  margin-top: 2px;
}

/* Rodapé */
.plan-footer {
  margin-top: 16px;
  text-align: center;
}

.plan-cta {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 8px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* LINHA SUTIL BRANCA PELA METADE */
.half-divider {
  width: 50%;
  height: 1px;
  background: rgb(255, 255, 255);
  margin: 50px 0 40px auto; /* alinhada à direita */
}



/* =========================
   TOKENS
========================= */

/* =========================
   SEÇÃO - O QUE SÃO TOKENS?
========================= */

.tokens-section {
  background: #000000;
  padding: 80px 0;
}

.tokens-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

/* cards cinza */
.token-card {
  background: #e5e5e5;
  color: #111827;
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 0.85rem;
}

/* linha de cima - bullets */
.token-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.token-card ul {
  list-style: none;
  padding-left: 0;
}

.token-card ul li + li {
  margin-top: 2px;
}

/* linha do meio - textos centralizados */
.token-card-center {
  text-align: center;
}

.token-card-center h3 {
  margin-bottom: 4px;
}

.token-amount {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.token-note {
  font-size: 0.8rem;
}

/* card largo da parte de baixo */
.tokens-grid-bottom .token-card-wide {
  grid-column: 1 / -1; /* ocupa as 2 colunas */
}

.token-example {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

.token-small {
  font-size: 0.75rem;
  text-align: center;
}

/* texto final */
.tokens-footer {
  margin-top: 18px;
  font-size: 0.8rem;
  text-align: center;
  color: #e5e7eb;
}

/* responsivo */
@media (max-width: 960px) {
  .tokens-grid {
    grid-template-columns: 1fr;
  }

  .tokens-grid-bottom .token-card-wide {
    grid-column: auto;
  }
}

/* LINHA SUTIL À ESQUERDA */
.left-divider {
  width: 50%;                              /* ajuste conforme Figma (35–45%) */
  height: 1px;
  background: rgb(255, 255, 255);   /* branco suave */
  margin: 50px 0 40px 0;                   /* colada à esquerda */
}



/* =========================
   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 Hack 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 */
}

/* 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 {
  width: 30px;
  height: auto;               /* mantém proporção original */
  opacity: 0.95;
}

.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-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: #d1d5db;
  margin-top: 4px;
}

.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;
  }
}





@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; }
}


