/* Dobre, site institucional.
   Paleta Osso, fonte de verdade: venture/docs/empresa/marca/identidade/README.md
   Regras duras: laranja só em ponto e ação, nunca estado de interface.
   Sem gradiente, sem brilho, sem metáfora de tecnologia. */

:root {
  --fundo: #F3F0E8;
  --superficie: #FAF8F2;
  --tinta: #17181A;
  --tinta-suave: #5C5E58;
  --apagado: #98988F;
  --fio: #E2DFD5;
  --laranja: #D9531E;
  --ebano: #191816;
  --ebano-superficie: #211F1C;
  --ebano-tinta: #EDEAE1;
  --ebano-tinta-suave: #A9A69C;
  --ebano-fio: #32302B;
  --laranja-escuro: #F0703C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  background: var(--fundo);
  color: var(--tinta);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Rótulos técnicos em monoespaçada, o acento permitido */
.rotulo {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rotulo .num {
  color: var(--laranja);
  font-weight: 500;
}

.rotulo::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--fio);
}

.rotulo-claro { color: var(--ebano-tinta-suave); }
.rotulo-claro::after { background: var(--ebano-fio); }

/* Topo */
.topo {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--fundo);
  border-bottom: 1px solid var(--fio);
}

.topo-linha {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; }
.logo img { display: block; }

.nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav a {
  color: var(--tinta-suave);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav a:hover { color: var(--tinta); }

/* Botões: cantos no raio da peça, laranja é ação */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn-primario {
  background: var(--laranja);
  color: #FAF8F2;
}

.btn-primario:hover { background: #C24817; }

.btn-quieto {
  background: transparent;
  color: var(--tinta);
  border-color: var(--tinta);
}

.btn-quieto:hover { background: var(--superficie); }

.btn-topo { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* Hero */
.hero { padding: 5.5rem 0 6rem; }

.hero-grade {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--laranja);
}

.hero .rotulo { margin-bottom: 0; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--tinta-suave);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero-sub strong { color: var(--tinta); }

.hero-acoes {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-nota {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--apagado);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-peca {
  width: 150px;
  height: auto;
}

.relatorio-chip {
  background: var(--superficie);
  border: 1px solid var(--fio);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  width: 100%;
  max-width: 330px;
}

.chip-titulo {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  margin-bottom: 0.9rem;
}

.relatorio-chip ul { list-style: none; }

.relatorio-chip li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.chip-pontilhado {
  flex: 1;
  border-bottom: 2px dotted var(--fio);
  transform: translateY(-3px);
}

.chip-dado {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--tinta-suave);
}

.chip-dado.laranja { color: var(--laranja); font-weight: 500; }

/* Seções */
.secao { padding: 5.5rem 0; }

.secao-alt {
  background: var(--superficie);
  border-top: 1px solid var(--fio);
  border-bottom: 1px solid var(--fio);
}

.tres-colunas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.prova-card .icone {
  width: 34px;
  height: 34px;
  color: var(--tinta);
  margin-bottom: 1.1rem;
}

.prova-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.prova-card p {
  color: var(--tinta-suave);
  font-size: 0.95rem;
}

.citacao-fina {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--fio);
}

.citacao-fina p {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 46rem;
}

/* Etapas */
.etapas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.etapa {
  background: var(--fundo);
  border: 1px solid var(--fio);
  border-radius: 12px;
  padding: 2rem;
}

.etapa-indice {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 0.75rem;
}

.etapa h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.etapa-prazo {
  font-size: 0.85rem;
  color: var(--apagado);
  margin-bottom: 1rem;
}

.etapa p + p { margin-top: 0.75rem; }
.etapa p { color: var(--tinta-suave); font-size: 0.95rem; }

.degraus { margin-bottom: 4rem; }

.degraus-titulo {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.degraus ol {
  list-style: none;
  counter-reset: degrau;
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.degraus ol li {
  counter-increment: degrau;
  position: relative;
  padding-left: 3rem;
  color: var(--tinta-suave);
  font-size: 0.98rem;
}

.degraus ol li strong { color: var(--tinta); }

.degraus ol li::before {
  content: counter(degrau);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--tinta);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Listas com ponto de dominó */
.lista-pontos { list-style: none; display: grid; gap: 0.75rem; }

.lista-pontos li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--tinta-suave);
  font-size: 0.98rem;
}

.lista-pontos li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--laranja);
}

.recebe { max-width: 46rem; }

.recebe-custo {
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--fundo);
  border: 1px solid var(--fio);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--tinta);
  font-weight: 600;
}

/* Faixa escura: ébano quente, nunca azul */
.faixa-escura {
  background: var(--ebano);
  color: var(--ebano-tinta);
  padding: 6rem 0;
}

.unico {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 56rem;
}

.marca-laranja { color: var(--laranja-escuro); }

.unico-sub {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  color: var(--ebano-tinta-suave);
  max-width: 40rem;
}

/* Para quem */
.duas-colunas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.duas-colunas h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.lista-recusa li::before {
  background: transparent;
  border: 2px solid var(--tinta);
  width: 7px;
  height: 7px;
}

.recusa-nota {
  margin-top: 1.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--tinta-suave);
}

.coluna-nao {
  border-left: 1px solid var(--fio);
  padding-left: 3rem;
}

/* Quem faz */
.quem-grade {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
}

.depoimento p {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
}

.depoimento strong { color: var(--tinta); }

.depoimento footer {
  margin-top: 1.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--tinta-suave);
}

.quem-tese {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fio);
  color: var(--tinta-suave);
  font-size: 1rem;
  max-width: 32rem;
}

.quem-fatos { display: grid; gap: 1.5rem; align-content: start; }

.fato {
  background: var(--fundo);
  border: 1px solid var(--fio);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.fato-titulo {
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.fato p:not(.fato-titulo) {
  color: var(--tinta-suave);
  font-size: 0.92rem;
}

/* CTA final */
.cta-final { padding-bottom: 6.5rem; }

.cta-caixa {
  text-align: left;
  max-width: 46rem;
}

.cta-final h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta-texto {
  color: var(--tinta-suave);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-acoes { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.cta-fallback {
  margin-top: 1.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--apagado);
}

/* Rodapé */
.rodape {
  background: var(--ebano);
  color: var(--ebano-tinta-suave);
  padding: 2.5rem 0;
}

.rodape-linha {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rodape-linha p { font-size: 0.85rem; }

.rodape-email a {
  color: var(--ebano-tinta);
  text-decoration: none;
  border-bottom: 1px solid var(--ebano-fio);
  padding-bottom: 2px;
}

.rodape-email a:hover { border-bottom-color: var(--laranja-escuro); }

.rodape-ano {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
}

/* Seção do modelo */
.modelo-titulo {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 46rem;
}

.modelo-texto {
  color: var(--tinta-suave);
  font-size: 1.1rem;
  max-width: 44rem;
  margin-bottom: 3.5rem;
}

.modelo-texto strong { color: var(--tinta); }

.etapas-modelo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.etapa-modelo {
  border-top: 2px solid var(--tinta);
  padding-top: 1.25rem;
}

.etapa-modelo .passo {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--laranja);
  display: block;
  margin-bottom: 0.6rem;
}

.etapa-modelo h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.etapa-modelo p {
  color: var(--tinta-suave);
  font-size: 0.95rem;
}

/* Seção de processos */
.processos-sub {
  color: var(--tinta-suave);
  font-size: 1.05rem;
  max-width: 44rem;
  margin: -0.5rem 0 2.5rem;
}

.processos-grade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.processo-card {
  background: var(--fundo);
  border: 1px solid var(--fio);
  border-radius: 12px;
  padding: 1.75rem;
}

.processo-area {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 0.75rem;
}

.processo-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.processo-card p {
  color: var(--tinta-suave);
  font-size: 0.95rem;
}

.processo-card .quem-entra {
  margin-top: 0.9rem;
  color: var(--tinta);
  font-weight: 600;
  font-size: 0.92rem;
}

.processos-fecho {
  margin-top: 2.5rem;
  font-weight: 600;
  max-width: 46rem;
}

/* Responsivo */
@media (max-width: 860px) {
  .nav { display: none; }
  .hero { padding: 3.5rem 0 4rem; }
  .hero-grade, .quem-grade { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { flex-direction: row; align-items: center; justify-content: flex-start; }
  .hero-peca { width: 96px; }
  .tres-colunas, .etapas, .duas-colunas, .etapas-modelo, .processos-grade { grid-template-columns: 1fr; }
  .coluna-nao { border-left: none; padding-left: 0; border-top: 1px solid var(--fio); padding-top: 2.5rem; }
  .secao, .faixa-escura { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .btn-topo { display: none; }
  .hero-visual { flex-direction: column; align-items: flex-start; }
}
