/* ============================================================
   Rigonati Advogados — folha de estilo do site institucional
   Paleta e tipografia da identidade oficial:
   dourado + azul-noite + serifada Libre Caslon Text.
   Obs.: a Caslon tem altura-x bem maior que a Cormorant — os tamanhos
   de titulo abaixo foram reduzidos para o peso visual ficar equivalente.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --gold:        #c9a84c;
  --gold-dark:   #b8974a;
  --navy:        #0f1628;
  --navy-2:      #1b2a4a;
  --ink:         #1a1a2e;
  --black:       #0a0a0a;
  --black-2:     #0d0d0d;
  --cream:       #f7f5f2;
  --cream-2:     #f0ece6;
  --line:        rgba(255, 255, 255, .10);
  --line-dark:   rgba(26, 26, 46, .12);
  --txt-light:   rgba(255, 255, 255, .78);
  --txt-dark:    #55555f;

  --serif: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --sans:  "Public Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1200px;
  --pad:  clamp(20px, 5vw, 40px);
  --sec:  clamp(72px, 9vw, 128px);
  --header-h: 84px;

  /* Visibilidade do letreiro de fundo do hero. Suba para .09 se
     quiser mais presente; desça para .03 para quase sumir. */
  --marca-agua: rgba(255, 255, 255, .055);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--gold); color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.pular-para-conteudo {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #fff;
  padding: 14px 22px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pular-para-conteudo:focus { left: 0; }

/* ---------- 3. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.secao { padding-block: var(--sec); position: relative; }
.secao--creme { background: var(--cream); }
.secao--creme-grad { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); }
.secao--navy { background: var(--navy); color: #fff; }
.secao--preta { background: var(--black); color: #fff; }
.secao--preta-2 { background: var(--black-2); color: #fff; }
.secao--dourada { background: var(--gold-dark); color: #fff; }

.secao--navy h2, .secao--preta h2, .secao--preta-2 h2,
.secao--navy h3, .secao--preta h3, .secao--preta-2 h3,
.secao--dourada h2 { color: #fff; }

/* ---------- 4. Tipografia de bloco ---------- */
.olho {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.secao--dourada .olho { color: rgba(255, 255, 255, .82); }

.titulo-secao {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
  max-width: 20ch;
}
.titulo-secao--centro { margin-inline: auto; text-align: center; max-width: 24ch; }

.sub-secao {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--txt-dark);
  margin-top: 22px;
  max-width: 62ch;
  line-height: 1.75;
}
.secao--navy .sub-secao,
.secao--preta .sub-secao,
.secao--preta-2 .sub-secao { color: var(--txt-light); }
.sub-secao--centro { margin-inline: auto; text-align: center; }

.risco-dourado {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 28px 0 0;
}
.risco-dourado--centro { margin-inline: auto; }

/* ---------- 5. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ouro { background: var(--gold); color: #fff; }
.btn--ouro:hover { background: #d8b95e; }

.btn--contorno { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--contorno:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--contorno-escuro { background: transparent; color: var(--ink); border-color: rgba(26, 26, 46, .28); }
.btn--contorno-escuro:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--branco { background: #fff; color: var(--gold-dark); }
.btn--branco:hover { background: var(--cream); }

.btn--pequeno { padding: 14px 28px; font-size: 12.5px; }

.link-saiba {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap .25s ease, color .25s ease;
}
.link-saiba::after { content: "\2192"; font-size: 14px; }
.link-saiba:hover { gap: 14px; color: var(--ink); }

/* ---------- 6. Cabeçalho ---------- */
.cabecalho {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease, height .35s ease;
}
.cabecalho.solido {
  background: rgba(10, 10, 10, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  height: 72px;
}

.cabecalho .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marca { display: flex; align-items: center; gap: 12px; }
.marca img { height: 46px; width: auto; }
.marca-texto {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.marca-texto b { font-weight: 700; }
.marca-texto span { color: var(--gold); }

.menu { display: flex; align-items: center; gap: 34px; }
.menu a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  padding-block: 6px;
  position: relative;
  transition: color .25s ease;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.menu a:hover { color: #fff; }
.menu a:hover::after { right: 0; }
.menu .btn { color: #fff; }
.menu .btn::after { display: none; }

.abre-menu { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.abre-menu span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .3s ease, opacity .25s ease;
}
.abre-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.abre-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.abre-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 48px) 88px;
  /* Sem foto: o fundo é o gradiente da marca com o letreiro gigante
     por cima (.hero__marca-agua). Some o 404 do hero.jpg e o primeiro
     quadro deixa de depender de baixar imagem alguma. */
  background: linear-gradient(135deg, #0a0f1c 0%, #16213c 55%, #0a0a0a 100%);
  color: #fff;
  isolation: isolate;
  /* o letreiro de fundo e mais largo que a tela de proposito; sem isto
     ele cria barra de rolagem horizontal (o overflow-x do body nao
     alcanca um filho absoluto desta secao) */
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(6, 9, 18, .93) 0%, rgba(6, 9, 18, .76) 46%, rgba(6, 9, 18, .44) 100%);
}
/* Letreiro de fundo — decorativo, sangra pelas laterais de proposito.
   aria-hidden no HTML: leitor de tela nao deve anunciar isso. */
.hero__marca-agua {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 21vw, 19rem);
  font-weight: 700;
  line-height: .78;
  letter-spacing: .04em;
  white-space: nowrap;
  color: var(--marca-agua);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* o conteudo precisa ficar acima do letreiro */
.hero .wrap { position: relative; z-index: 1; }

.hero__conteudo { max-width: 58ch; }
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.14;
  color: #fff;
  margin-bottom: 30px;
}
.hero__texto {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  max-width: 54ch;
  margin-bottom: 44px;
}
.hero__acoes { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__rolar {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__rolar::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: descer 2.4s ease-in-out infinite;
}
@keyframes descer {
  0%, 100% { opacity: .35; transform: scaleY(.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);  transform-origin: top; }
}

/* ---------- 8. Práticas ---------- */
.praticas__topo {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}
.praticas__topo .botoes { justify-self: end; }

.grupo { margin-top: 64px; }
.grupo:first-of-type { margin-top: 0; }
.grupo__cabeca { margin-bottom: 36px; }
.grupo__cabeca h3 {
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--ink);
}
.grupo__cabeca p { font-size: 1rem; font-weight: 300; color: var(--txt-dark); margin-top: 8px; }

.cartoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.cartoes--duplo { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.cartao {
  background: #fff;
  padding: 40px 32px 34px;
  display: flex;
  flex-direction: column;
  transition: background-color .3s ease;
  position: relative;
}
.cartao::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.cartao:hover::before { transform: scaleX(1); }
.cartao:hover { background: #fdfcfa; }

.cartao__num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 18px;
}
/* Cartao sozinho no grupo: o grid deixa ele ocupar a linha inteira, entao o
   texto precisa de redea — 1.200px de linha e ilegivel. A largura cheia e
   proposital, para o servico nao parecer um apendice. */
.cartao--largo h4, .cartao--largo p { max-width: 64ch; }

.cartao h4 { font-size: 1.22rem; font-weight: 700; line-height: 1.3; color: var(--ink); margin-bottom: 14px; }
.cartao p { font-size: .98rem; font-weight: 300; line-height: 1.75; color: var(--txt-dark); flex: 1; }

/* ---------- 8b. Vídeos do escritório ----------
   Os arquivos são verticais 9:16 (gravados para redes sociais). Em vez
   de recortá-los para um formato horizontal — o que jogaria fora as
   pessoas e ampliaria demais uma imagem de 464px — eles são exibidos no
   formato nativo, em dois cartões. Nada é baixado antes do clique:
   preload="none" faz o navegador carregar só o pôster. */
.palco__cabeca { text-align: center; }

.videos {
  display: grid;
  /* 3 cartoes de 280px + 2 vaos de 36px = 912px, folgado na linha de
     1.120px. Com 4 cartoes era preciso 250px para nao quebrar em 3+1. */
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  gap: clamp(20px, 3vw, 36px);
  justify-content: center;
  margin-top: 0;
}

.video-cartao { margin: 0; }
.video-cartao video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  background: #000;
  border: 1px solid rgba(201, 168, 76, .28);
  object-fit: cover;
}
.video-cartao figcaption {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 1px solid rgba(201, 168, 76, .45);
}
.video-cartao figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.video-cartao figcaption span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- 9. Diferenciais ---------- */
.diferenciais__grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}
.diferencial { background: var(--navy); padding: 40px 30px; transition: background-color .3s ease; }
.diferencial:hover { background: #131c33; }
.diferencial h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.diferencial p { font-size: .96rem; font-weight: 300; color: var(--txt-light); line-height: 1.75; }
.diferencial__marca { width: 34px; height: 2px; background: var(--gold); margin-bottom: 24px; }

.citacao { margin-top: 84px; padding: 48px 0 0; border-top: 1px solid var(--line); text-align: center; }
.citacao blockquote {
  margin: 0 auto;
  max-width: 46ch;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  color: #fff;
}
.citacao figcaption {
  margin-top: 26px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- 10. Pilares ---------- */
.pilares {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 44px 40px;
  margin-top: 68px;
}
.pilar__num { font-family: var(--serif); font-size: 2.6rem; color: rgba(201, 168, 76, .4); line-height: 1; margin-bottom: 16px; }
.pilar h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.pilar p { font-size: .96rem; font-weight: 300; color: var(--txt-light); line-height: 1.75; }

/* ---------- 11. Advogados ---------- */
.perfil__grade {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.perfil--invertido .perfil__grade { grid-template-columns: 1.15fr .85fr; }
.perfil--invertido .perfil__foto { order: 2; }

.perfil__foto { position: relative; align-self: stretch; display: flex; }
.perfil__foto picture { display: flex; width: 100%; }
.perfil__foto img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.04);
  transition: filter .5s ease;
}
.perfil__foto:hover img { filter: grayscale(0%); }
.perfil__foto::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 62%;
  height: 62%;
  border: 1px solid rgba(201, 168, 76, .4);
  z-index: -1;
}

.perfil__nome { font-size: clamp(1.6rem, 2.4vw, 2.1rem); color: #fff; margin-bottom: 8px; }
.perfil__cargo {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.perfil__registro { font-size: 12.5px; font-weight: 300; letter-spacing: .1em; color: rgba(255, 255, 255, .5); margin-top: 8px; }
.perfil__titulo { font-size: clamp(1.55rem, 2.6vw, 2.35rem); line-height: 1.18; color: #fff; margin-bottom: 34px; }

.credenciais { display: grid; gap: 26px; margin-top: 34px; }
.credencial { padding-left: 20px; border-left: 1px solid rgba(201, 168, 76, .45); }
.credencial dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.credencial dd { margin: 0; font-size: .98rem; font-weight: 300; line-height: 1.75; color: var(--txt-light); }

.perfil__citacao {
  margin: 38px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, .9);
}

/* ---------- 12. Como atuamos ---------- */
.etapas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 68px;
}
.etapa { padding: 40px 30px; border-top: 2px solid rgba(26, 26, 46, .14); transition: border-color .3s ease; }
.etapa:hover { border-top-color: var(--gold); }
.etapa__num { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--gold); margin-bottom: 18px; }
.etapa h3 { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.etapa p { font-size: .96rem; font-weight: 300; color: var(--txt-dark); line-height: 1.75; }

/* ---------- 13. Chamada final ---------- */
.chamada { text-align: center; }
.chamada h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.16; margin-bottom: 24px; }
.chamada p {
  max-width: 60ch;
  margin: 0 auto 44px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, .92);
}
.chamada .botoes { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- 14. Rodapé ---------- */
.rodape {
  background: var(--black);
  color: rgba(255, 255, 255, .6);
  padding-block: clamp(56px, 7vw, 88px) 0;
  font-size: .95rem;
  font-weight: 300;
}
.rodape__grade { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 56px; }
.rodape h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.rodape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.rodape a { transition: color .25s ease; }
.rodape a:hover { color: var(--gold); }
.rodape__sobre p { max-width: 42ch; line-height: 1.8; margin-top: 20px; }
.rodape__contato a { display: block; }

.rodape__base {
  border-top: 1px solid var(--line);
  padding-block: 30px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.rodape__aviso { font-size: .78rem; line-height: 1.7; color: rgba(255, 255, 255, .38); max-width: 92ch; padding-bottom: 40px; }

/* ---------- 15. WhatsApp flutuante ---------- */
.zap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
  transition: transform .25s ease;
}
.zap:hover { transform: scale(1.08); }
.zap svg { width: 28px; height: 28px; fill: currentColor; }

/* ---------- 16. Páginas internas / blog ---------- */
.pagina-interna {
  padding-block: calc(var(--header-h) + 76px) 60px;
  background: var(--navy);
  color: #fff;
}
.pagina-interna h1 { font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1.14; }
.pagina-interna .sub-secao { color: var(--txt-light); }

.filtros { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filtro {
  padding: 11px 22px;
  border: 1px solid var(--line-dark);
  background: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-dark);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.filtro:hover { border-color: var(--gold); color: var(--ink); }
.filtro[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 32px 28px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(16, 24, 40, .10); }
.post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.post__meta time { color: rgba(26, 26, 46, .45); font-weight: 400; letter-spacing: .08em; }
.post h2 { font-size: 1.4rem; font-weight: 700; line-height: 1.32; color: var(--ink); margin-bottom: 12px; }
.post p { font-size: .96rem; font-weight: 300; line-height: 1.75; color: var(--txt-dark); flex: 1; }

.aviso-vazio {
  border: 1px dashed var(--line-dark);
  padding: 56px 32px;
  text-align: center;
  color: var(--txt-dark);
  font-weight: 300;
}
.aviso-vazio strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 8px; }

/* ---------- 16b. Artigo ---------- */
.artigo__capa h1 { max-width: 24ch; }

.artigo__corpo {
  max-width: 68ch;
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3b3b46;
}
.artigo__corpo > * + * { margin-top: 24px; }
.artigo__corpo h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 52px;
}
.artigo__corpo h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
}
.artigo__corpo strong { font-weight: 700; color: var(--ink); }
.artigo__corpo ul, .artigo__corpo ol { padding-left: 22px; }
.artigo__corpo li + li { margin-top: 10px; }
.artigo__corpo a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.artigo__corpo a:hover { color: var(--ink); }
.artigo__corpo blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
}
.artigo__corpo table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.artigo__corpo th, .artigo__corpo td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
}
.artigo__corpo th { font-weight: 700; color: var(--ink); }

.artigo__fonte {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: .9rem;
  color: var(--txt-dark);
}

.artigo__assinatura {
  max-width: 68ch;
  margin-top: 48px;
  padding-left: 20px;
  border-left: 1px solid rgba(201, 168, 76, .55);
}
.artigo__assinatura strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}
.artigo__assinatura span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.artigo__volta { margin-top: 44px; }

.post h2 a { transition: color .25s ease; }
.post h2 a:hover { color: var(--gold-dark); }

.texto-legal { max-width: 76ch; }
.texto-legal h2 { font-size: 1.55rem; font-weight: 700; color: var(--ink); margin: 44px 0 6px; }
.texto-legal p, .texto-legal li { font-weight: 300; color: var(--txt-dark); line-height: 1.8; margin-top: 14px; }
.texto-legal ul { padding-left: 20px; }

/* ---------- 17. Animação de entrada ----------
   O estado escondido só existe quando o JavaScript está vivo (a classe
   "js" é posta no <html> por um script no topo da página). Sem JS, ou se
   ele quebrar antes de rodar, o conteúdo aparece normalmente em vez de
   ficar invisível. */
html.js .revelar { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .revelar.visivel { opacity: 1; transform: none; }

/* ---------- 18. Responsivo ---------- */
@media (max-width: 1024px) {
  .praticas__topo { grid-template-columns: 1fr; align-items: start; }
  .praticas__topo .botoes { justify-self: start; }
  .perfil__grade,
  .perfil--invertido .perfil__grade { grid-template-columns: 1fr; }
  .perfil--invertido .perfil__foto { order: 0; }
  .perfil__foto img { min-height: 0; max-height: 540px; }
  .perfil__foto::after { display: none; }
  .rodape__grade { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .abre-menu { display: block; }
  .menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .menu.aberto { transform: none; }
  .menu a { font-size: 14px; }
  .cabecalho:not(.solido) { background: rgba(10, 10, 10, .5); }
  body.menu-aberto { overflow: hidden; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 92svh; }
  .hero__acoes .btn { width: 100%; }
  .rodape__grade { grid-template-columns: 1fr; gap: 34px; }
  .rodape__base { flex-direction: column; align-items: flex-start; }
  .zap { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .revelar { opacity: 1; transform: none; }
}

@media print {
  .cabecalho, .zap, .hero__rolar, .menu { display: none !important; }
  body { color: #000; background: #fff; }
}
