/* =========================================================
   BLATT CONSULTORIAS — style.css
   Identidade visual conforme Manual de Marca 2026
   ========================================================= */

/* ---------- Tokens da marca ---------- */
:root {
  --marinho:      #10243E;   /* cor de marca · fundos institucionais, títulos */
  --marinho-700:  #0b1a2e;   /* variação mais profunda */
  --off-white:    #F4F1EC;   /* fundo claro, respiro */
  --cream-2:      #ECE7DD;   /* off-white levemente mais quente */
  --grafite:      #1A1A1A;   /* corpo de texto */
  --grafite-60:   #565552;   /* texto secundário */
  --dourado:      #B89B5E;   /* acento · fios e detalhes apenas, nunca em blocos */
  --linha:        rgba(26, 26, 26, 0.12);
  --linha-clara:  rgba(244, 241, 236, 0.16);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 56px);
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;        /* compensa header fixo nas âncoras */
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;                /* evita rolagem horizontal sem criar container de scroll */
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--grafite);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* =========================================================
   MARCA / WORDMARK
   ========================================================= */
.brand { display: flex; flex-direction: row; align-items: center; gap: 11px; line-height: 1; }
.brand-text { display: flex; flex-direction: column; }
.brand-symbol { height: 34px; width: auto; display: block; flex: none; }
/* alterna entre símbolo claro (sobre marinho) e marinho (sobre off-white) */
.brand-symbol--navy { display: none; }
.site-header.scrolled .brand-symbol--navy { display: block; }
.site-header.scrolled .brand-symbol--light { display: none; }
.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 27px;
  letter-spacing: 0.01em;
  color: var(--marinho);
}
.brand-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--grafite-60);
  margin-top: 5px;
  padding-left: 2px;
}
.brand-mark.light { color: var(--off-white); }
.brand-sub.light  { color: rgba(244, 241, 236, 0.6); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

/* Estado inicial: header sobre o hero marinho — texto claro */
.site-header:not(.scrolled) .brand-mark { color: var(--off-white); }
.site-header:not(.scrolled) .brand-sub  { color: rgba(244, 241, 236, 0.6); }
.site-header:not(.scrolled) .nav a { color: var(--off-white); }
.site-header:not(.scrolled) .nav-cta { border-color: rgba(244, 241, 236, 0.4); }
.site-header:not(.scrolled) .nav-cta:hover { background: var(--off-white); color: var(--marinho); border-color: var(--off-white); }
.site-header:not(.scrolled) .menu-toggle span { background: var(--off-white); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
/* estado pós-rolagem */
.site-header.scrolled {
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--linha);
}

.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); }
/* leve deslocamento da navegação para a direita (somente desktop) */
@media (min-width: 721px) {
  .nav { margin-right: -10px; }
}
.nav a {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--marinho);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width 0.3s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav a:hover { color: var(--grafite); }

.nav-cta {
  border: 1px solid var(--marinho);
  border-radius: 1px;
  padding: 10px 18px !important;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--marinho); color: var(--off-white); }

/* botão hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--marinho);
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn-primary {
  background: var(--marinho);
  color: var(--off-white);
  border-color: var(--marinho);
}
.btn-primary:hover { background: var(--marinho-700); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--marinho);
  border-color: rgba(16, 36, 62, 0.28);
}
.btn-ghost:hover { border-color: var(--marinho); transform: translateY(-2px); }

/* sobre fundo marinho */
.section-navy .btn-ghost { color: var(--off-white); border-color: var(--linha-clara); }
.section-navy .btn-ghost:hover { border-color: var(--dourado); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--marinho);
  color: var(--off-white);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
/* textura sutil: hairlines diagonais quase imperceptíveis */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(184, 155, 94, 0.10), transparent 55%),
    linear-gradient(180deg, var(--marinho) 0%, var(--marinho-700) 100%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 30px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 34px; height: 1px;
  background: var(--dourado);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.hero-lead {
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244, 241, 236, 0.82);
  max-width: 560px;
  margin-bottom: 42px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-rule {
  position: absolute;
  left: var(--pad); right: var(--pad);
  bottom: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--dourado), transparent 60%);
  z-index: 1;
  opacity: 0.5;
}

/* =========================================================
   SEÇÕES — base
   ========================================================= */
.section { padding: clamp(72px, 11vh, 130px) 0; }
.section-light { background: var(--off-white); }
.section-cream { background: var(--cream-2); }
.section-navy  { background: var(--marinho); color: var(--off-white); }

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grafite-60);
  margin-bottom: 22px;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--dourado);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}
.section-kicker.gold { color: var(--dourado); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--marinho);
}
.section-title.light { color: var(--off-white); }

.section-head { max-width: 740px; margin-bottom: clamp(44px, 6vw, 70px); }
.section-intro {
  margin-top: 22px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244, 241, 236, 0.74);
  max-width: 600px;
}
.section-intro.dark { color: var(--grafite-60); }

/* grid de duas colunas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.grid-2-top { align-items: start; }

/* =========================================================
   SOBRE
   ========================================================= */
.lead-text {
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 400;
  line-height: 1.42;
  color: var(--marinho);
  margin-bottom: 26px;
}
.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--grafite-60);
  margin-bottom: 18px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--linha);
}
.stat-row li { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--marinho);
  line-height: 1;
}
.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--grafite-60);
  max-width: 150px;
}

/* =========================================================
   ACCORDION — núcleos de atuação
   ========================================================= */
.accordion { border-top: 1px solid var(--linha-clara); }
.acc-item { border-bottom: 1px solid var(--linha-clara); }

.acc-head {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: start;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 30px 4px;
  color: inherit;
  transition: padding-left 0.3s ease;
}
.acc-head:hover { padding-left: 12px; }

.acc-num {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--dourado);
  padding-top: 5px;
}
.acc-titles { display: flex; flex-direction: column; gap: 8px; }
.acc-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--off-white);
}
.acc-desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(244, 241, 236, 0.6);
  max-width: 620px;
}

.acc-icon {
  position: relative;
  width: 18px; height: 18px;
  margin-top: 8px;
  justify-self: end;
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--dourado);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.acc-icon::before { width: 16px; height: 1px; transform: translate(-50%, -50%); }
.acc-icon::after  { width: 1px; height: 16px; transform: translate(-50%, -50%); }
.acc-head[aria-expanded="true"] .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-body-inner {
  padding: 0 4px 36px 76px;
}
.acc-for {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(244, 241, 236, 0.78);
  margin-bottom: 22px;
  max-width: 660px;
}
.acc-for strong {
  color: var(--dourado);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.acc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 36px;
  max-width: 760px;
}
.acc-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(244, 241, 236, 0.86);
}
.acc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--dourado);
}

/* =========================================================
   EQUIPE / SÓCIOS
   ========================================================= */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  max-width: 720px;
  margin: 0 auto;
}
.team-member {
  background: var(--off-white);
  border: 1px solid var(--linha);
  border-radius: 2px;
  padding: clamp(30px, 3vw, 44px) clamp(26px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(16, 36, 62, 0.32);
}
.team-initials {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dourado);
  width: 58px; height: 58px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.team-name {
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--marinho);
  margin-bottom: 10px;
}
.team-role {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grafite-60);
  line-height: 1.45;
}

/* =========================================================
   METODOLOGIA
   ========================================================= */
.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--linha);
  border: 1px solid var(--linha);
}
.method-step {
  background: var(--off-white);
  padding: 40px 30px 46px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.35s ease;
}
.method-step:hover { background: #fff; }
.method-num {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--dourado);
  letter-spacing: 0.04em;
}
.method-title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--marinho);
}
.method-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--grafite-60);
}

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.sticky-col { position: sticky; top: 110px; }
.diff-list { display: flex; flex-direction: column; }
.diff-list li {
  padding: 30px 0;
  border-top: 1px solid var(--linha);
}
.diff-list li:last-child { border-bottom: 1px solid var(--linha); }
.diff-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--marinho);
  margin-bottom: 10px;
}
.diff-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--grafite-60);
  max-width: 560px;
}

/* =========================================================
   PARA QUEM
   ========================================================= */
.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--linha-clara);
  border: 1px solid var(--linha-clara);
}
.audience li {
  background: var(--marinho);
  padding: 28px 30px;
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 400;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.35s ease, padding-left 0.35s ease;
}
.audience li::before {
  content: '';
  width: 10px; height: 1px;
  background: var(--dourado);
  flex: none;
}
.audience li:hover { background: var(--marinho-700); padding-left: 38px; }

/* =========================================================
   CONTATO
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.contact-card {
  background: var(--marinho);
  color: var(--off-white);
  padding: clamp(34px, 4vw, 50px);
  border-radius: 2px;
}
.contact-list { display: flex; flex-direction: column; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--linha-clara);
}
.contact-list li:first-child { padding-top: 0; }
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
}
.contact-list a, .contact-list span:not(.contact-label) {
  font-size: 16px;
  line-height: 1.5;
  color: var(--off-white);
}
.contact-list a { transition: color 0.25s ease; }
.contact-list a:hover { color: var(--dourado); }

/* =========================================================
   RODAPÉ
   ========================================================= */
.site-footer { background: var(--marinho-700); color: var(--off-white); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 70px;
  padding-bottom: 56px;
}
.footer-brand .brand-mark { font-size: 30px; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(244, 241, 236, 0.62);
  margin-top: 18px;
  max-width: 280px;
}
.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(244, 241, 236, 0.75);
  transition: color 0.25s ease;
  width: fit-content;
}
.footer-nav a:hover { color: var(--dourado); }
.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.footer-contact a, .footer-contact span {
  font-size: 14px;
  color: rgba(244, 241, 236, 0.75);
  transition: color 0.25s ease;
  width: fit-content;
}
.footer-contact a:hover { color: var(--dourado); }

.footer-base { border-top: 1px solid var(--linha-clara); }
.footer-base-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: rgba(244, 241, 236, 0.5);
}

/* =========================================================
   REVEAL — animação sutil de entrada
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 900px) {
  .grid-2, .contact { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .method { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr; max-width: 520px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { gap: 18px 30px; }
}

@media (max-width: 720px) {
  /* navegação mobile */
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--off-white);
    border-bottom: 1px solid var(--linha);
    padding: 14px var(--pad) 28px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  /* dentro do painel off-white os links voltam a ser escuros */
  .site-header:not(.scrolled) .nav.open a { color: var(--marinho); }
  .site-header:not(.scrolled) .nav.open .nav-cta { border-color: var(--marinho); }
  .nav a { width: 100%; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--linha); }
  .nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 14px 18px !important;
  }
  .nav a:not(.nav-cta)::after { display: none; }
}

@media (max-width: 620px) {
  .method, .audience { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .acc-list { grid-template-columns: 1fr; }
  .acc-head { grid-template-columns: 40px 1fr 22px; gap: 12px; padding: 24px 2px; }
  .acc-body-inner { padding-left: 52px; }
  .hero-actions, .contact-actions { gap: 12px; }
  .hero-actions .btn, .contact-actions .btn { flex: 1 1 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-base-inner { flex-direction: column; }
}

@media (max-width: 380px) {
  .acc-head:hover, .audience li:hover { padding-left: inherit; }
}

/* =========================================================
   LOGO — marca d'água no hero, símbolo no rodapé
   ========================================================= */
.hero-symbol {
  position: absolute;
  right: clamp(-50px, 1vw, 70px);
  top: 50%;
  transform: translateY(-50%);
  height: 88%;
  width: auto;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero-symbol { right: -70px; height: 62%; opacity: 0.05; }
}

.footer-symbol { height: 52px; width: auto; display: block; margin-bottom: 20px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }

.footer-base-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-base-links a { color: rgba(244, 241, 236, 0.55); transition: color 0.25s ease; }
.footer-base-links a:hover { color: var(--dourado); }

/* =========================================================
   PÁGINAS INTERNAS — hero compacto + conteúdo legal
   ========================================================= */
.page-hero {
  background: var(--marinho);
  color: var(--off-white);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 88% 12%, rgba(184, 155, 94, 0.10), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-kicker { color: var(--dourado); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.page-hero p {
  margin-top: 18px;
  max-width: 560px;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244, 241, 236, 0.72);
  text-align: justify;
}

.legal { background: var(--off-white); padding: clamp(56px, 8vh, 92px) 0 clamp(72px, 10vh, 112px); }
.legal-inner { max-width: 760px; }
.legal-updated {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--grafite-60);
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--linha);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--marinho);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.16;
  margin: 46px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 15.5px; font-weight: 600; color: var(--marinho); margin: 24px 0 8px; letter-spacing: 0.01em; }
.legal p { font-size: 15.5px; line-height: 1.78; color: var(--grafite); margin-bottom: 14px; text-align: justify; }
.legal ul { margin: 4px 0 18px; }
.legal ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--grafite);
  margin-bottom: 9px;
  text-align: justify;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 9px; height: 1px;
  background: var(--dourado);
}
.legal a { color: var(--marinho); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--dourado); }
.legal strong { color: var(--marinho); font-weight: 600; }
.legal .note { font-size: 13.5px; color: var(--grafite-60); font-style: italic; line-height: 1.7; }

/* =========================================================
   ARTIGOS — chamada no site (home)
   ========================================================= */
.articles-cta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.articles-cta-head .section-head { margin-bottom: 0; }
.articles-cta-head .btn { flex: none; }

/* Grade de cards de artigo (home + índice) */
.article-grid {
  display: grid;
  /* auto-fit empilha sozinho conforme a largura: 3 colunas no desktop, 2 no tablet, 1 no celular */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1px solid var(--linha);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(16, 36, 62, 0.32); }
.article-card.is-soon { opacity: 0.72; pointer-events: none; }

/* Imagem de destaque — placeholder em faixas até o usuário inserir foto */
.article-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, rgba(16,36,62,0.05) 0 10px, rgba(16,36,62,0.02) 10px 20px),
    var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-thumb .thumb-note {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(16,36,62,0.45);
  text-transform: uppercase;
}
.article-body-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 30px;
}
.article-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 14px;
  overflow-wrap: break-word;
}
.article-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--marinho);
  margin-bottom: 12px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.article-card p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--grafite-60);
  margin-bottom: 20px;
}
.article-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--grafite-60);
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dourado); }
.article-readmore {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--marinho);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-readmore::after { content: '→'; transition: transform 0.3s ease; }
.article-card:hover .article-readmore::after { transform: translateX(5px); }
.article-soon-tag {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grafite-60);
}

/* =========================================================
   PÁGINA DE ARTIGO — leitura
   ========================================================= */
.post { background: var(--off-white); padding: clamp(48px, 7vh, 80px) 0 clamp(64px, 9vh, 100px); }
.post-inner { max-width: 720px; margin: 0 auto; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--grafite-60);
  margin-bottom: 38px;
  transition: color 0.25s ease;
}
.post-back::before { content: '←'; }
.post-back:hover { color: var(--marinho); }

.post-figure {
  margin: 0 0 clamp(34px, 5vw, 52px);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, rgba(16,36,62,0.05) 0 12px, rgba(16,36,62,0.02) 12px 24px),
    var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-figure img { width: 100%; height: 100%; object-fit: cover; }
.post-figure .thumb-note {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(16,36,62,0.45);
  text-transform: uppercase;
}

.post-prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--marinho);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.16;
  margin: 44px 0 14px;
}
.post-prose h2:first-child { margin-top: 0; }
.post-prose h3 { font-size: 19px; font-weight: 600; color: var(--marinho); margin: 28px 0 10px; }
.post-prose p { font-size: 17px; line-height: 1.8; color: var(--grafite); margin-bottom: 18px; text-align: justify; }
.post-prose ul { margin: 6px 0 22px; }
.post-prose ul li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--grafite);
  margin-bottom: 10px;
  text-align: justify;
}
.post-prose ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 9px; height: 1px; background: var(--dourado); }
.post-prose strong { color: var(--marinho); font-weight: 600; }
.post-prose blockquote {
  margin: 30px 0;
  padding: 6px 0 6px 26px;
  border-left: 2px solid var(--dourado);
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 25px);
  font-style: italic;
  line-height: 1.4;
  color: var(--marinho);
}

.post-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--marinho);
  margin-bottom: 32px;
  text-align: left;
}

/* compartilhar */
.post-share {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 30px;
  border-top: 1px solid var(--linha);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-share span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grafite-60);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid rgba(16, 36, 62, 0.28);
  border-radius: 1px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--marinho);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.share-btn:hover { background: var(--marinho); color: var(--off-white); border-color: var(--marinho); }

/* CTA de contato ao final do artigo */
.post-cta {
  margin-top: clamp(44px, 6vw, 64px);
  background: var(--marinho);
  color: var(--off-white);
  border-radius: 2px;
  padding: clamp(34px, 4vw, 50px);
  text-align: center;
}
.post-cta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.post-cta p { font-size: 16px; font-weight: 300; color: rgba(244,241,236,0.78); max-width: 460px; margin: 0 auto 26px; line-height: 1.6; }
.post-cta .post-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Linha de fonte/refer\u00eancia dentro do artigo */
.post-prose .post-source {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 2px solid var(--dourado);
  background: rgba(16, 36, 62, 0.03);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--grafite-60);
  text-align: left;
}
.post-prose .post-source strong { color: var(--marinho); }

/* Aviso legal ao final do artigo (padrão obrigatório) */.post-disclaimer {
  margin-top: clamp(34px, 4.5vw, 48px);
  padding-top: 26px;
  border-top: 1px solid var(--linha);
  font-size: 13px;
  line-height: 1.7;
  color: var(--grafite-60);
  font-style: italic;
  text-align: justify;
}
