/*
 * Camada de componentes sobre o Bootstrap 5.3.
 *
 * Regra de convivência: o Bootstrap cuida de grid, utilitários, navbar
 * colapsável, accordion e offcanvas. Tudo que carrega a marca — botões, cards,
 * cabeçalhos de seção, faixas escuras — mora aqui, para que atualizar o
 * Bootstrap não mexa na identidade.
 */

/* ── Base ─────────────────────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  /* Compensa a navbar fixa quando um link de âncora salta para a seção. */
  scroll-padding-top: 112px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: var(--leading-loose);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display-title, .stat-value, .step-number {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
}

p {
  color: var(--ink-muted);
}

a {
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--brand-navy-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ── Tipografia de seção ──────────────────────────────────────────────────── */

.section {
  padding: var(--space-5xl) 0;
}

.section--tight {
  padding: var(--space-4xl) 0;
}

.section--sunken {
  background: var(--surface-sunken);
}

.section--subtle {
  background: var(--surface-subtle);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-jade);
  margin-bottom: var(--space-md);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-signature);
}

.section-title {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  margin-bottom: var(--space-lg);
}

.section-lead {
  font-size: 1.02rem;
  max-width: 62ch;
}

.text-gradient {
  background: var(--gradient-signature);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*
 * O gradiente da marca é escuro nas duas primeiras paradas, então sobre fundo
 * marinho ele desaparece. Nas faixas escuras usa-se a versão clareada.
 */
/*
 * background-image, não o atalho background: o atalho zeraria o
 * background-clip: text herdado da regra acima e o texto viraria um bloco
 * colorido.
 */
.text-gradient--light {
  background-image: var(--gradient-signature-light);
}

/* ── Botões ───────────────────────────────────────────────────────────────── */

.btn {
  --bs-btn-padding-y: 0.85rem;
  --bs-btn-padding-x: 1.6rem;
  --bs-btn-border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out);
}

.btn-brand {
  background: var(--gradient-signature);
  border: 0;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 57, 101, 0.32);
}

.btn-outline-ink {
  border: 1.5px solid var(--outline);
  background: var(--surface);
  color: var(--ink);
}

.btn-outline-ink:hover,
.btn-outline-ink:focus-visible {
  border-color: var(--brand-jade);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-on-dark {
  border: 1.5px solid rgba(234, 242, 246, 0.26);
  background: rgba(234, 242, 246, 0.07);
  color: var(--dark-ink);
  backdrop-filter: blur(8px);
}

.btn-on-dark:hover,
.btn-on-dark:focus-visible {
  border-color: var(--jade-on-dark);
  color: var(--dark-ink);
  background: rgba(234, 242, 246, 0.14);
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */

.site-nav {
  /* O logo já tem respiro no próprio arquivo; padding extra engorda a barra. */
  padding-top: 2px;
  padding-bottom: 2px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.site-nav.is-scrolled {
  border-bottom-color: var(--outline);
  box-shadow: var(--shadow-soft);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/*
 * O logo oficial já traz marca e wordmark no mesmo arquivo, com transparência.
 * Ele entra inteiro, sem recorte e sem nome repetido em texto ao lado: o
 * arquivo é a assinatura da marca.
 */
/*
 * O arquivo tem margem interna larga, então a altura pedida aqui é bem maior
 * que a mancha visível do logo.
 */
.brand-logo {
  display: block;
  height: 92px;
  width: auto;
}

/*
 * Sobre o marinho escuro o wordmark do arquivo (também marinho) sumiria, então
 * no rodapé o logo assenta numa placa clara.
 */
.brand-plate {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.brand-plate .brand-logo {
  height: 84px;
}

.site-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
  color: var(--ink);
  background: var(--surface-sunken);
}

.site-nav .nav-link.active {
  color: var(--brand-navy);
  background: rgba(73, 127, 114, 0.12);
}

.nav-phone {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.navbar-toggler {
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  color: var(--dark-ink);
  padding: calc(var(--space-5xl) + 40px) 0 var(--space-5xl);
}

/* Dois brilhos de marca no fundo escuro, no lugar de uma imagem de banco. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: rgba(73, 127, 114, 0.38);
}

.hero::after {
  width: 460px;
  height: 460px;
  bottom: -220px;
  left: -140px;
  background: rgba(31, 90, 150, 0.32);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(234, 242, 246, 0.18);
  background: rgba(234, 242, 246, 0.07);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-ink);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade-on-dark);
  box-shadow: 0 0 0 4px rgba(121, 183, 165, 0.22);
}

.hero-title {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  margin: var(--space-xl) 0 var(--space-lg);
  color: #fff;
}

.hero-lead {
  font-size: 1.06rem;
  color: var(--dark-ink-muted);
  max-width: 54ch;
  margin-bottom: var(--space-2xl);
}

.hero-note {
  font-size: 0.84rem;
  color: var(--dark-ink-muted);
}

/* Painel de prova ao lado do texto do hero. */
.hero-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--dark-outline);
  background: linear-gradient(180deg, rgba(22, 48, 74, 0.92), rgba(14, 33, 54, 0.92));
  padding: var(--space-2xl);
  box-shadow: var(--shadow-dark);
}

.hero-panel h2 {
  font-size: 1.02rem;
  color: var(--dark-ink);
  margin-bottom: var(--space-lg);
}

.hero-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px dashed var(--dark-outline);
}

.hero-metric:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-metric dt {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-ink-muted);
}

.hero-metric dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--dark-ink);
  white-space: nowrap;
}

/* ── Cabeçalho de página interna ──────────────────────────────────────────── */

.page-hero {
  padding: calc(var(--space-4xl) + 56px) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--surface-sunken) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--outline);
}

.page-title {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  margin-bottom: var(--space-lg);
}

.page-lead {
  font-size: 1.04rem;
  max-width: 64ch;
  margin-bottom: 0;
}

.breadcrumb-line {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-bottom: var(--space-md);
}

.breadcrumb-line a {
  color: var(--ink-muted);
  text-decoration: none;
}

.breadcrumb-line a:hover {
  color: var(--ink);
}

/* Bloco de detalhe de serviço: título à esquerda, conteúdo à direita. */
.detail-block {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--outline);
}

.detail-block:last-child {
  border-bottom: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  position: relative;
  padding-left: 26px;
  padding-bottom: var(--space-md);
  color: var(--ink-muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-signature);
}

.detail-list li:last-child {
  padding-bottom: 0;
}

.detail-list strong {
  color: var(--ink);
  font-weight: 700;
}

/* ── Faixa de números ─────────────────────────────────────────────────────── */

.stat-strip {
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  background: var(--surface-subtle);
}

.stat-cell {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  border-right: 1px solid var(--outline);
}

.stat-cell:last-child {
  border-right: 0;
}

.stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  background: var(--gradient-signature);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: var(--leading-snug);
}

/* ── Cards ────────────────────────────────────────────────────────────────── */

.h-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

a.h-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.h-card--hover:hover,
.h-card--hover:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
  border-color: var(--brand-mist);
}

.h-card h3 {
  font-size: 1.12rem;
  margin-bottom: var(--space-sm);
}

.h-card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-lg);
  background: rgba(73, 127, 114, 0.12);
  color: var(--brand-jade);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card-icon--navy {
  background: rgba(20, 57, 101, 0.1);
  color: var(--brand-navy);
}

.card-icon--sage {
  background: rgba(118, 150, 129, 0.16);
  color: #5d7d69;
}

.card-icon--info {
  background: rgba(61, 120, 184, 0.12);
  color: var(--info);
}

/* Card com número grande, para os três diferenciais. */
.feature-card {
  position: relative;
  padding-top: var(--space-2xl);
}

.feature-index {
  position: absolute;
  top: -18px;
  left: var(--space-xl);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.16rem;
  color: #fff;
  background: var(--gradient-signature);
  box-shadow: var(--shadow-glow);
}

/* ── Lista de resultados ──────────────────────────────────────────────────── */

.outcome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--outline);
}

.outcome:last-child {
  border-bottom: 0;
}

.outcome-check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 158, 106, 0.14);
  color: var(--success);
}

.outcome-check svg {
  width: 15px;
  height: 15px;
}

.outcome-action {
  font-weight: 600;
  color: var(--ink);
  flex: 1 1 260px;
}

.outcome-arrow {
  color: var(--ink-faint);
}

.outcome-effect {
  font-family: var(--font-display);
  font-weight: 700;
  color: #35695e;
  background: rgba(73, 127, 114, 0.11);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
}

/* ── Passos ───────────────────────────────────────────────────────────────── */

.step {
  position: relative;
  padding-left: 72px;
  padding-bottom: var(--space-2xl);
}

.step:last-child {
  padding-bottom: 0;
}

/* Trilho vertical ligando os passos; some no último. */
.step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-mist), rgba(219, 231, 222, 0));
}

.step:last-child::before {
  display: none;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: #fff;
  background: var(--gradient-signature);
  box-shadow: var(--shadow-glow);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  padding-top: 10px;
}

/* ── Setores atendidos ────────────────────────────────────────────────────── */

.industry {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--outline);
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-weight: 700;
}

.industry svg {
  width: 22px;
  height: 22px;
  color: var(--brand-jade);
}

.industry small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-faint);
}

/* ── Níveis JLPT ──────────────────────────────────────────────────────────── */

.level-badge {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  color: #fff;
}

.level-n5 { background: var(--level-n5); }
.level-n4 { background: var(--level-n4); }
.level-n3 { background: var(--level-n3); }
.level-n2 { background: var(--level-n2); }
.level-n1 { background: var(--level-n1); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.faq .accordion-item {
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  padding: 1.15rem 1.35rem;
  background: var(--surface);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--brand-navy);
  background: rgba(73, 127, 114, 0.08);
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button::after {
  filter: grayscale(1) opacity(0.6);
}

.faq .accordion-body {
  padding: 0 1.35rem 1.3rem;
  color: var(--ink-muted);
}

/* ── Faixa escura de CTA ──────────────────────────────────────────────────── */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-2xl);
  background: var(--dark-bg);
  color: var(--dark-ink);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% 30% auto -10%;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(73, 127, 114, 0.42), transparent 62%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  margin-bottom: var(--space-lg);
}

.cta-band p {
  color: var(--dark-ink-muted);
  max-width: 56ch;
  margin: 0 auto var(--space-2xl);
}

/* ── Faixa de recrutamento ────────────────────────────────────────────────── */

.recruit-band {
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  background: var(--gradient-sage-veil);
  border: 1px solid var(--brand-mist);
}

.recruit-band h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.recruit-band p {
  color: #3f5a52;
  margin-bottom: 0;
}

/* ── Tabela de perfil da empresa ──────────────────────────────────────────── */

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--outline);
  vertical-align: top;
  text-align: left;
}

.profile-table th {
  width: 30%;
  min-width: 132px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.profile-table td {
  color: var(--ink-muted);
}

/* ── Seletor de idiomas ───────────────────────────────────────────────────── */

.lang-switch .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.lang-switch .dropdown-toggle:hover,
.lang-switch .dropdown-toggle:focus-visible {
  border-color: var(--brand-jade);
  color: var(--brand-navy);
}

.lang-switch .dropdown-toggle svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--brand-jade);
}

.lang-switch .dropdown-menu {
  min-width: 208px;
  padding: 8px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lifted);
}

.lang-switch .lang-item {
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.lang-switch .lang-item:hover,
.lang-switch .lang-item:focus-visible {
  background: var(--surface-sunken);
  color: var(--brand-navy);
}

/* O idioma em uso fica marcado, senão o menu não responde "onde estou". */
.lang-switch .lang-item.is-active {
  background: var(--brand-mist);
  color: var(--brand-navy);
  font-weight: 700;
}

/*
 * A pilha padrão resolve CJK por uma fonte japonesa, que desenha vários
 * caracteres com a variante japonesa em vez da chinesa. Em chinês a pilha muda
 * para fontes do sistema com glifos SC.
 */
html[lang="zh-Hans"] {
  --font-display: "Plus Jakarta Sans", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-body: "Plus Jakarta Sans", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

/* ── Página legal ─────────────────────────────────────────────────────────── */

/* Texto corrido de política: hierarquia sóbria e medida de leitura curta. */
.legal {
  max-width: 76ch;
}

.legal h2 {
  font-size: 1.1rem;
  margin: var(--space-2xl) 0 var(--space-md);
}

.legal h2:first-child {
  margin-top: 0;
}

.legal ul,
.legal ol {
  padding-left: 1.3rem;
  margin-bottom: var(--space-lg);
}

.legal li {
  color: var(--ink-muted);
  padding-bottom: var(--space-sm);
}

.legal-updated {
  font-size: 0.84rem;
  color: var(--ink-faint);
}

/* ── Contato ──────────────────────────────────────────────────────────────── */

.contact-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.contact-card .card-icon {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.contact-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2px;
}

a.contact-value:hover {
  color: var(--brand-navy-bright);
}

/* ── Rodapé ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--dark-bg);
  color: var(--dark-ink-muted);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.site-footer h2 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-ink);
  margin-bottom: var(--space-lg);
}

.footer-link {
  display: block;
  padding: 5px 0;
  color: var(--dark-ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--dark-ink);
}

.footer-divider {
  border-top: 1px solid var(--dark-outline);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  font-size: 0.82rem;
}

/* ── Revelação no scroll ──────────────────────────────────────────────────── */

/*
 * O estado escondido depende da classe has-js, que o próprio HTML aplica antes
 * de renderizar. Assim, se o script não carregar, o conteúdo aparece em vez de
 * ficar invisível para sempre.
 */
.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .h-card--hover:hover {
    transform: none;
  }
}

/* ── Responsivo ───────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .section {
    padding: var(--space-4xl) 0;
  }

  .hero {
    padding: calc(var(--space-4xl) + 32px) 0 var(--space-4xl);
  }

  .site-nav .nav-link {
    padding: 0.65rem 0.9rem;
  }

  .brand-logo {
    height: 68px;
  }

  .stat-cell {
    border-right: 0;
    border-bottom: 1px solid var(--outline);
  }
}

@media (max-width: 575.98px) {
  .cta-band,
  .recruit-band {
    padding: var(--space-2xl) var(--space-lg);
  }

  .step {
    padding-left: 60px;
  }

  .step::before {
    left: 19px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}
