/* ============================================================
   design-tokens.css -- GERADO AUTOMATICAMENTE, NAO EDITAR A MAO.
   Fonte unica: design-system/tokens.json
   Gerador: scripts/gen-design-tokens.js
   Editar SO a fonte e rodar o gerador de novo ([8j], mesmo padrao
   ja usado pra SSOT/REGRAS/PE neste repo).
   Gerado em: 2026-09-05T01:28:13.291Z
   ============================================================ */

:root {
  --th-fundo-principal: #212635;
  --th-fundo-superficie: #232A3B;
  --th-fundo-borda: #343B4C;
  --th-marca-teuhub-principal: #7B2CBF;
  --th-marca-teuhub-hover: #9D4EDD;
  --th-marca-teuhub-glow: rgba(123, 44, 191, 0.4);
  --th-marca-teuseg-principal: #10B981;
  --th-marca-teuseg-hover: #34D399;
  --th-marca-teuseg-glow: rgba(16, 185, 129, 0.4);
  --th-texto-principal: #F8FAFC;
  --th-texto-secundario: #94A3B8;
  --th-texto-placeholder: #475569;
  --th-fonte-familia: 'Inter', 'Plus Jakarta Sans', sans-serif;
  --th-tipo-h1-tamanho: 3.5rem;
  --th-tipo-h1-peso: 800;
  --th-tipo-h1-linha: 1.1;
  --th-tipo-h1-tracking: -2%;
  --th-tipo-h2-tamanho: 2.5rem;
  --th-tipo-h2-peso: 700;
  --th-tipo-h2-linha: 1.2;
  --th-tipo-h2-tracking: -1%;
  --th-tipo-h3-tamanho: 1.5rem;
  --th-tipo-h3-peso: 600;
  --th-tipo-h3-linha: 1.3;
  --th-tipo-h3-tracking: 0;
  --th-tipo-corpo-tamanho: 1.125rem;
  --th-tipo-corpo-peso: 400;
  --th-tipo-corpo-linha: 1.6;
  --th-tipo-corpo-tracking: 0;
  --th-tipo-legenda-tamanho: 0.875rem;
  --th-tipo-legenda-peso: 500;
  --th-tipo-legenda-linha: 1.4;
  --th-tipo-legenda-tracking: +1%;
  --th-espaco-unidade: 8px;
  --th-botao-padding-v: 12px;
  --th-botao-padding-h: 24px;
  --th-card-padding-sm: 24px;
  --th-card-padding-lg: 32px;
  --th-secao-gap-sm: 64px;
  --th-secao-gap-md: 96px;
  --th-secao-gap-lg: 128px;
  --th-radius-controle: 8px;
  --th-radius-secao-sm: 16px;
  --th-radius-secao-lg: 24px;
}

/* Componentes prontos (opcionais -- cada produto pode usar as classes
   abaixo ou so consumir as variaveis acima em CSS proprio). */

.th-btn-primario {
  background: var(--th-marca-teuhub-principal);
  color: #ffffff;
  padding: var(--th-botao-padding-v) var(--th-botao-padding-h);
  border-radius: var(--th-radius-controle);
  border: none;
  font-weight: 600;
  font-family: var(--th-fonte-familia);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(123, 44, 191, 0.39);
}
.th-btn-primario:hover {
  background: var(--th-marca-teuhub-hover);
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.5);
  transform: translateY(-2px);
}

.th-card-premium {
  background: rgba(35, 42, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
}
