/* ════════════════════════════════════════════════════════════════════
   Confluência — Sistema de design
   ────────────────────────────────────────────────────────────────────
   Tipografia: Playfair Display (serifa) + DM Sans (sans)
   Paleta:     paper / ink / accent (azul) / gold (dourado)
   ════════════════════════════════════════════════════════════════════ */

:root {
  --ink: #0f0e0c;
  --paper: #f5f2eb;
  --accent: #1a3a5c;
  --gold: #c4922a;
  --gold-soft: rgba(196, 146, 42, 0.12);
  --muted: #7a7568;
  --line: #d8d3c8;
  --warm: #e8e2d6;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; }

/* ══════════════════════════════════════════════════════════════════
   HEADER GLOBAL — usado em todas as páginas
   ────────────────────────────────────────────────────────────────── */

.site-header {
  padding: 32px 60px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
}

.site-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
}

.site-header-brand img {
  width: 33px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   HEADER DA HOME — duas colunas com h1 + porta-entrada
   ────────────────────────────────────────────────────────────────── */

header.home-header {
  padding: 80px 60px 60px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  animation: fadeIn 0.8s ease forwards;
}

.brand {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.brand-sub {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.4;
}

header.home-header h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--accent);
}

header.home-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.header-right { text-align: right; }

.porta-entrada {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--accent);
  line-height: 1.5;
  font-weight: 400;
  border-right: 3px solid var(--gold);
  padding-right: 24px;
}

/* ══════════════════════════════════════════════════════════════════
   PAGE HEADER — cabeçalho de páginas internas
   "lombada + título de capítulo": brand em cima, h1 da página abaixo
   ────────────────────────────────────────────────────────────────── */

.page-header {
  padding: 80px 60px 60px;
  border-bottom: 1px solid var(--line);
  animation: fadeIn 0.8s ease forwards;
}

.page-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--accent);
  max-width: 900px;
}

.page-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-header .page-lead {
  margin-top: 32px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--accent);
  line-height: 1.5;
  max-width: 720px;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════
   PROSE — corpo de texto longo (ensaios, definições, páginas internas)
   ────────────────────────────────────────────────────────────────── */

.prose {
  padding: 60px 60px;
  max-width: 820px;
}

.prose p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 24px;
}

.prose p strong { color: var(--accent); font-weight: 500; }

.prose h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
  margin: 56px 0 20px;
}

.prose h2 em { font-style: italic; color: var(--gold); }

.prose h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  margin: 40px 0 12px;
}

.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  line-height: 1.6;
}

.prose a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s;
}

.prose-cta {
  margin-top: 48px;
}

.prose a.cta-link {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.prose a.cta-link:hover {
  color: var(--gold);
}

.prose a:hover { color: var(--gold); }

/* Placeholder utilitário — usado em páginas em redação */
.placeholder {
  font-style: italic;
  color: var(--muted);
  opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════════
   VOCABULÁRIO — página de verbetes canônicos
   ────────────────────────────────────────────────────────────────── */

.vocab-intro {
  padding: 60px 60px 40px;
  max-width: 820px;
  border-bottom: 1px solid var(--line);
}

.vocab-intro p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.vocab-intro p strong { color: var(--accent); font-weight: 500; }

.vocab-indice {
  padding: 40px 60px;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.vocab-indice-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.vocab-indice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
}

.vocab-indice-grid a {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.vocab-indice-grid a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.vocab-lista { padding: 0 60px 80px; }

.verbete {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.verbete:last-child { border-bottom: none; }

.verbete-cabeca {
  position: sticky;
  top: 24px;
}

.verbete-numero {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}

.verbete-termo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.15;
}

.verbete-termo em {
  font-style: italic;
  color: var(--gold);
}

.verbete-corpo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verbete-definicao {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
}

.verbete-distincao {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 18px;
  border-left: 2px solid var(--line);
}

.verbete-distincao strong {
  color: var(--accent);
  font-weight: 500;
}

.verbete-citavel {
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--warm);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.verbete-citavel p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.6;
  margin: 0;
}

.verbete-veja {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.verbete-veja a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.verbete-veja a:hover { border-bottom-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════
   HOME — componentes específicos da página inicial
   (preservados do index.html original)
   ────────────────────────────────────────────────────────────────── */

/* CHAMAMENTO */
.chamamento {
  padding: 80px 60px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  animation: fadeIn 0.8s ease 0.1s both;
}

.chamamento-corpo { display: flex; flex-direction: column; gap: 24px; }

.chamamento-corpo p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink);
  line-height: 1.8;
  font-weight: 400;
}

.chamamento-pivot {
  font-size: clamp(20px, 2.5vw, 28px) !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  padding: 12px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.chamamento-figura { margin: 16px 0 8px; }

.chamamento-figura-wrap {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.chamamento-figura-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.chamamento-figura-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18%;
  height: 14%;
  background: linear-gradient(
    315deg,
    #1f2730 0%,
    #1f2730 35%,
    rgba(31, 39, 48, 0.85) 65%,
    rgba(31, 39, 48, 0) 100%
  );
  pointer-events: none;
}

.chamamento-figura figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  line-height: 1.5;
}

.chamamento-porta {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}

.chamamento-porta span {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--accent);
  line-height: 1.4;
}

.chamamento-porta span:first-child {
  color: var(--muted);
  font-size: 15px;
}

/* RECONHECIMENTO */
.reconhecimento {
  padding: 80px 60px;
  border-bottom: 1px solid var(--line);
  animation: fadeIn 0.8s ease 0.2s both;
}

.reconhecimento-label,
.essencia-label,
.diferencial-label,
.pos-label,
.jornada-intro-label,
.sequencia-label,
.principios-label,
.evidencia-label,
.oqf-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.reconhecimento h2,
.diferencial h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 40px;
}

.reconhecimento h2 em,
.diferencial h2 em,
.oqf-corpo h2 em,
.jornada-intro h2 em {
  font-style: italic;
  color: var(--gold);
}

.cenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cenario {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--line);
  transition: border-color 0.3s;
}

.cenario:hover { border-color: var(--gold); }

.cenario-icon { font-size: 28px; margin-bottom: 16px; }

.cenario-titulo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cenario-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.reconhecimento-rodape {
  margin-top: 40px;
  font-size: 16px;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.7;
}

.reconhecimento-rodape strong {
  color: var(--ink);
  font-weight: 500;
}

/* ESSÊNCIA */
.essencia {
  padding: 80px 60px;
  background: var(--accent);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  animation: fadeIn 0.8s ease 0.3s both;
}

.essencia-label { color: rgba(245,242,235,0.35); margin-bottom: 48px; }

.essencia-prosa {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.essencia-prosa p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--paper);
  line-height: 1.55;
  font-weight: 400;
}

.essencia-prosa p strong { color: var(--gold); font-weight: 700; }

/* DIFERENCIAL */
.diferencial {
  padding: 80px 60px;
  border-bottom: 1px solid var(--line);
}

.difs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dif {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--line);
}

.dif-outros {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.dif-outros-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dif-nos {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dif-nos-desc {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.5;
}

/* POSICIONAMENTO */
.posicionamento {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  border-bottom: 1px solid var(--line);
}

.pos-label { padding-top: 6px; }

.pos-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pos-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pos-item .nome {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.pos-item p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--accent);
  line-height: 1.5;
}

.definicao-bloco {
  margin-top: 8px;
  padding: 24px 28px;
  background: var(--warm);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.definicao-bloco p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  line-height: 1.7;
  margin: 0;
}

.certificacao {
  margin-top: 24px;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.certificacao-selo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 12px;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
}

.certificacao-selo strong {
  display: block;
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.certificacao-texto {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.certificacao-texto strong {
  color: var(--accent);
  font-weight: 500;
}

/* JORNADA */
.jornada-intro { padding: 60px 60px 0; }

.jornada-intro-label { margin-bottom: 16px; }

.jornada-intro h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 16px;
}

.jornada-intro p {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

/* PRODUTOS */
.produtos { padding: 40px 60px 80px; }

.produto {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  animation: fadeIn 0.6s ease both;
}

#p1 { animation-delay: 0.1s; }
#p2 { animation-delay: 0.2s; }
#p3 { animation-delay: 0.3s; }

.produto:last-child { border-bottom: none; }

.produto-numero {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  align-self: start;
  padding-top: 8px;
}

.produto-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.produto-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.produto-nome {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--accent);
}

.produto-nome em { font-style: italic; color: var(--gold); }

.produto-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.produto-tag.entrada { border-color: var(--gold); color: var(--gold); }
.produto-tag.pago { border-color: var(--accent); color: var(--accent); }
.produto-tag.participacao { border-color: var(--gold); color: var(--gold); }

.produto-descricao {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.produto-descricao strong {
  color: var(--ink);
  font-weight: 500;
}

/* link de leitura aprofundada nas páginas-filhas */
.produto-aprofundar {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.3s;
}

.produto-aprofundar:hover { opacity: 0.7; }

/* ETAPAS */
.etapas {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.etapa {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.etapa:last-child { border-bottom: none; }

.etapa-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}

.etapa-valor {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.etapa-valor strong {
  font-weight: 500;
  color: var(--accent);
}

/* DESTAQUE / PIVOT */
.destaque {
  background: var(--warm);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-top: 16px;
  border-radius: 0 4px 4px 0;
}

.destaque p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  line-height: 1.7;
  margin: 0;
}

.destaque-pivot {
  margin-top: 32px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--gold);
}

.destaque-pivot p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

/* WORKSHOPS / PILARES */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
}

.workshop-item {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
}

.workshop-num {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.workshop-titulo {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.workshop-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}

.pilar {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
}

.pilar-icon { font-size: 24px; margin-bottom: 12px; }

.pilar-nome {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.pilar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* EVIDÊNCIA (dark) */
.evidencia {
  padding: 80px 60px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.evidencia-label { color: rgba(245,242,235,0.35); }

.evidencia h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 40px;
}

.evidencia h2 em { color: var(--gold); font-style: italic; }

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.case {
  background: rgba(245,242,235,0.04);
  border: 1px solid rgba(245,242,235,0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s;
}

.case:hover { background: rgba(245,242,235,0.07); }

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245,242,235,0.1);
}

.case-titulo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  color: var(--paper);
  font-weight: 400;
}

.case-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,235,0.35);
}

.case-contexto {
  font-size: 14px;
  color: rgba(245,242,235,0.5);
  line-height: 1.5;
  font-style: italic;
}

.case-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,235,0.35);
  display: block;
  margin-bottom: 6px;
}

.case-bloco p {
  font-size: 14px;
  color: rgba(245,242,235,0.7);
  line-height: 1.6;
}

.case-impacto .case-label { color: var(--gold); }

.case-impacto p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  color: var(--paper);
  line-height: 1.6;
}

.evidencia-fechamento {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(196,146,42,0.4);
}

.evidencia-fechamento p {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--paper);
  line-height: 1.4;
  font-weight: 400;
}

/* SEQUÊNCIA (dark) */
.sequencia {
  padding: 80px 60px;
  background: var(--ink);
  color: var(--paper);
}

.sequencia-label { color: rgba(245,242,235,0.3); margin-bottom: 60px; }

.seq-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 20px;
}

.seq-item {
  flex: 1;
  min-width: 200px;
  padding: 32px 24px;
  border: 1px solid rgba(245,242,235,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.seq-item::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
  z-index: 1;
}

.seq-item:last-child::after { display: none; }

.seq-num {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,235,0.3);
  margin-bottom: 8px;
}

.seq-nome {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}

.seq-desc {
  font-size: 13px;
  color: rgba(245,242,235,0.6);
  line-height: 1.5;
}

/* PRINCÍPIOS */
.principios {
  padding: 80px 60px;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.principios-label { margin-bottom: 40px; }

.principios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.principio-titulo {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.principio-texto {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.7;
}

/* O QUE FAZEMOS */
.o-que-fazemos {
  padding: 80px 60px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.oqf-label { padding-top: 8px; }

.oqf-corpo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oqf-corpo h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
}

.oqf-corpo p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ══════════════════════════════════════════════════════════════════
   ENSAIOS — índice + página individual
   ────────────────────────────────────────────────────────────────── */

.ensaios-lista {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ensaio-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: baseline;
}

.ensaio-item:last-child { border-bottom: none; }

.ensaio-data {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.ensaio-titulo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.25;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.ensaio-titulo:hover { border-bottom-color: var(--gold); }

.ensaio-sumario {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   BIO — páginas pessoais
   ────────────────────────────────────────────────────────────────── */

.bio {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 60px 60px 80px;
  align-items: start;
}

.bio-coluna-lateral {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.bio-papel {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-nome {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
}

.bio-meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.bio-corpo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bio-corpo p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.8;
}

.bio-corpo h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 4px;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER GLOBAL
   ────────────────────────────────────────────────────────────────── */

footer {
  padding: 40px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-right { text-align: right; }

.footer-brand {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
}

.footer-marca-conceito {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.footer-link:hover { border-bottom-color: var(--gold); }

.footer-note {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

.footer-selo {
  text-align: right;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 400;
}

.footer-selo strong {
  color: var(--accent);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ────────────────────────────────────────────────────────────────── */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile / tablet
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .site-header { padding: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-nav { flex-wrap: wrap; gap: 16px; }

  header.home-header,
  .reconhecimento,
  .posicionamento,
  .jornada-intro,
  .produtos,
  .sequencia,
  .principios,
  .page-header,
  .prose,
  .vocab-intro,
  .vocab-indice,
  .vocab-lista,
  .ensaios-lista,
  .bio { padding-left: 24px; padding-right: 24px; }

  header.home-header { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .header-right { text-align: left; }
  .porta-entrada { border-right: none; border-left: 3px solid var(--gold); padding-right: 0; padding-left: 16px; }

  .reconhecimento { padding: 48px 24px; }
  .cenarios { grid-template-columns: 1fr; }

  .essencia { padding: 48px 24px; }

  .posicionamento { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .jornada-intro { padding: 48px 24px 0; }
  .jornada-intro h2 { font-size: 28px; }

  .produto { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .produto-numero { font-size: 40px; }
  .produto-nome { font-size: 28px; }
  .produto-header { gap: 12px; }

  .workshops-grid { grid-template-columns: 1fr 1fr; }
  .pilares { grid-template-columns: 1fr; }

  .principios { padding: 48px 24px; }
  .principios-grid { grid-template-columns: 1fr; gap: 32px; }
  .principios-label { margin-bottom: 24px; }

  .etapa { grid-template-columns: 1fr; gap: 6px; }

  .diferencial { padding: 48px 24px; }
  .difs { grid-template-columns: 1fr; }

  .destaque { padding: 20px; }

  .certificacao { grid-template-columns: 1fr; gap: 14px; padding: 18px 20px; }
  .certificacao-selo { justify-self: start; }

  .evidencia { padding: 48px 24px; }
  .cases { grid-template-columns: 1fr; }

  .seq-flow {
    flex-direction: column;
    gap: 0;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .seq-item { min-width: 100%; }
  .seq-item::after {
    content: '↓';
    position: static;
    display: block;
    text-align: center;
    padding: 12px 0;
    transform: none;
    right: auto;
    top: auto;
  }
  .seq-item:last-child::after { display: none; }

  .sequencia { padding: 48px 24px; }
  .sequencia-label { margin-bottom: 32px; }

  .o-que-fazemos { grid-template-columns: 1fr; gap: 24px; padding: 48px 24px; }

  .chamamento { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .chamamento-porta {
    position: static;
    border-left: none;
    border-top: 3px solid var(--gold);
    padding: 20px 0 0;
  }

  .vocab-indice-grid { grid-template-columns: 1fr 1fr; }
  .verbete { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .verbete-cabeca { position: static; }

  .ensaio-item { grid-template-columns: 1fr; gap: 8px; }

  .bio { grid-template-columns: 1fr; gap: 32px; }
  .bio-coluna-lateral {
    position: static;
    border-right: none;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  footer {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    padding: 32px 24px;
  }
  .footer-right { text-align: left; }
  .footer-note { text-align: left; }
  .footer-selo { text-align: left; }
}

@media (max-width: 480px) {
  .workshops-grid { grid-template-columns: 1fr; }
  .produto-nome { font-size: 24px; }
  header.home-header h1 { font-size: 32px; }
  .vocab-indice-grid { grid-template-columns: 1fr; }
}
