/* ═══════════════════════════════════════════════
   ÁREA DO CLIENTE — Afonso Ribeiro Advogados
   Mesma paleta, tokens e tipografia do site (public/index.html).
   Corpo de texto: mínimo 16px em qualquer viewport.
═══════════════════════════════════════════════ */

/* ───────────── TOKENS ───────────── */
:root {
  --navy:    #0c1425;
  --navy2:   #111c33;
  --navy3:   #162040;
  --border:  #1e2d4a;
  --gold:    #c9933a;
  --goldl:   #daa853;
  --golddim: rgba(201,147,58,.18);
  --goldglow:rgba(201,147,58,.08);
  --white:   #f5f0e8;
  --gray:    #8a96a8;
  --grayl:   #b0bac8;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "DM Sans", sans-serif;

  /* Cores funcionais das etiquetas de situação (campo situacaoCor do Firestore) */
  --st-verde:    #4aa96c;
  --st-amarelo:  #d9a441;
  --st-vermelho: #d4574e;
  --st-azul:     #5b8bc9;
  --st-cinza:    #8a96a8;
}

/* ───────────── BASE ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* O atributo hidden precisa vencer qualquer display de autor (inline-flex, flex etc.).
   Sem isto, botões e blocos marcados hidden continuam aparecendo. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
img { max-width: 100%; display: block; }
.ctr { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* Conteúdo interno fica oculto enquanto a guarda de acesso confere a sessão */
body[data-carregando] main, body[data-carregando] footer { visibility: hidden; }

/* ───────────── NAV (idêntica ao site) ───────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 9999;
  background: rgba(12,20,37,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 1px; }
.nav-logo-n { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; color: var(--white); letter-spacing: .03em; line-height: 1; }
.nav-logo-s { font-size: .57rem; font-weight: 500; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(240,235,225,.70); text-decoration: none;
  font-size: .76rem; font-weight: 400; letter-spacing: .10em; text-transform: uppercase;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .3s; transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.ativo { color: var(--goldl); }
.nav-links a.ativo::after { transform: scaleX(1); }
.nav-sair {
  background: none; border: 1px solid rgba(255,255,255,.20); border-radius: 30px;
  color: rgba(240,235,225,.82); font-family: var(--sans);
  font-size: .76rem; font-weight: 500; letter-spacing: .10em; text-transform: uppercase;
  padding: 9px 22px; cursor: pointer; transition: border-color .3s, color .3s, background .3s;
}
.nav-sair:hover { border-color: var(--gold); color: var(--goldl); background: rgba(201,147,58,.07); }
.hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hbg span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
.mob {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(10,16,28,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); z-index: 390;
  padding: 24px 40px 32px; flex-direction: column; gap: 4px;
}
.mob.open { display: flex; }
.mob a, .mob button {
  color: var(--grayl); text-decoration: none; text-align: left;
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  background: none; border: none; border-bottom: 1px solid var(--border);
  padding: 13px 0; cursor: pointer; transition: color .2s;
}
.mob a:last-child, .mob button:last-child { border: none; }
.mob a:hover, .mob button:hover { color: var(--goldl); }

/* ───────────── BOTÕES ───────────── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: #080e1c;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: 15px 34px; border-radius: 50px; border: none; cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s, opacity .3s;
}
.btn-gold:hover:not(:disabled) { background: #f0c97a; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,147,58,.40); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(240,235,225,.82); background: none;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: 14px 30px; border-radius: 50px; border: 1px solid rgba(255,255,255,.20);
  cursor: pointer; transition: border-color .3s, color .3s, background .3s, transform .3s;
}
.btn-ghost:hover:not(:disabled) { border-color: var(--gold); color: var(--goldl); background: rgba(201,147,58,.07); transform: translateY(-2px); }
.btn-gold:disabled, .btn-ghost:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-bloco { width: 100%; }

/* Link discreto em texto */
.link-in { color: var(--goldl); text-decoration: none; border-bottom: 1px solid var(--golddim); transition: border-color .2s; }
.link-in:hover { border-color: var(--gold); }

/* ───────────── ESPERA: 5 PONTINHOS EM SEQUÊNCIA ───────────── */
.espera {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap; text-align: center;
  font-size: 1rem; color: var(--grayl);
}
.espera-txt { font-size: 1rem; color: var(--grayl); }
.dots { display: inline-flex; align-items: center; gap: 7px; }
.dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); opacity: .20;
  animation: pontoSeq 1.6s linear infinite;
}
.dots i:nth-child(1) { animation-delay: 0s; }
.dots i:nth-child(2) { animation-delay: .19s; }
.dots i:nth-child(3) { animation-delay: .38s; }
.dots i:nth-child(4) { animation-delay: .57s; }
.dots i:nth-child(5) { animation-delay: .76s; }
@keyframes pontoSeq {
  0%   { opacity: .20; transform: scale(1); }
  12%  { opacity: 1;   transform: scale(1.4); }
  30%  { opacity: .20; transform: scale(1); }
  100% { opacity: .20; transform: scale(1); }
}
/* Bloco de espera do relatório: duas linhas + pontinhos no meio.
   Nasce oculto (hidden) e só aparece durante a geração — o reset [hidden] no topo
   garante que o display:flex abaixo não vença o hidden. */
.espera-bloco { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 26px 0; }
.espera-bloco .espera-txt:last-child { color: var(--gray); font-size: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .dots i { animation-duration: 2.4s; }
  @keyframes pontoSeq {
    0%   { opacity: .20; }
    12%  { opacity: 1; }
    30%  { opacity: .20; }
    100% { opacity: .20; }
  }
  * { scroll-behavior: auto !important; }
}

/* ───────────── FORMULÁRIOS ───────────── */
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fg label {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray);
}
.fg input, .fg select {
  background: var(--navy2); border: 1px solid var(--border); border-radius: 6px;
  color: var(--white); font-family: var(--sans); font-size: 1rem; font-weight: 300;
  padding: 14px 18px; transition: border-color .2s, box-shadow .2s;
  outline: none; -webkit-appearance: none; width: 100%;
}
.fg select { cursor: pointer; }
.fg select option { background: var(--navy2); color: var(--white); }
.fg input:focus, .fg select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,58,.10); }
.fg input::placeholder { color: var(--gray); }
.fg-ajuda { font-size: .92rem; color: var(--gray); }

/* Mensagens */
.msg-erro {
  background: rgba(212,87,78,.10); border: 1px solid rgba(212,87,78,.35);
  border-radius: 8px; color: #f0b6b1; font-size: 1rem;
  padding: 14px 18px; margin-bottom: 20px; line-height: 1.55;
}
.msg-ok {
  background: rgba(74,169,108,.10); border: 1px solid rgba(74,169,108,.35);
  border-radius: 8px; color: #a9dcbc; font-size: 1rem;
  padding: 14px 18px; margin-bottom: 20px; line-height: 1.55;
}
.msg-aviso {
  background: var(--goldglow); border: 1px solid var(--golddim);
  border-radius: 8px; color: var(--grayl); font-size: 1rem;
  padding: 14px 18px; margin-bottom: 20px; line-height: 1.55;
}

/* ───────────── TELA DE ACESSO (index.html) ───────────── */
.acesso-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 128px 24px 80px;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(201,147,58,.07), transparent 65%),
    var(--navy);
}
.acesso-card {
  width: 100%; max-width: 470px;
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 16px; padding: 44px 40px;
}
.acesso-eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.acesso-card h1 {
  font-family: var(--serif); font-size: 2.3rem; font-weight: 500;
  color: var(--white); line-height: 1.15; margin-bottom: 12px;
}
.acesso-sub { font-size: 1rem; color: var(--grayl); line-height: 1.6; margin-bottom: 30px; }
.acesso-sep {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0; color: var(--gray); font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
}
.acesso-sep::before, .acesso-sep::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.acesso-rodape { margin-top: 26px; text-align: center; font-size: 1rem; color: var(--grayl); }
.acesso-rodape + .acesso-rodape { margin-top: 12px; }
.btn-google {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #fff; color: #1f1f1f; border: none; border-radius: 50px;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  padding: 14px 24px; cursor: pointer; transition: background .25s, transform .25s;
}
.btn-google:hover:not(:disabled) { background: #ece7df; transform: translateY(-2px); }
.btn-google:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.acesso-vista[hidden] { display: none; }

/* ───────────── PAINEL ───────────── */
.painel-topo {
  padding: 128px 0 40px;
  background: linear-gradient(to bottom, rgba(22,32,64,.55), transparent);
  border-bottom: 1px solid var(--border);
}
.painel-topo h1 {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 500;
  color: var(--white); line-height: 1.1; margin-bottom: 10px;
}
.painel-quem { font-size: 1rem; color: var(--gray); }
.painel-corpo { padding: 56px 0 96px; }

/* Cada seção com o rótulo em cima (largura total) e o conteúdo logo abaixo,
   ocupando toda a largura disponível — assim a tabela de marcas respira.
   O rótulo tem uma linha fina ao lado que separa uma seção da outra. */
.secao { margin-bottom: 56px; }
.secao:last-child { margin-bottom: 0; }
.secao-cab { display: flex; align-items: baseline; gap: 20px; margin-bottom: 26px; }
.secao-cab h2 {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  line-height: 1.45; white-space: nowrap;
}
.secao-cab::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.secao-corpo { min-width: 0; }

/* Estado vazio: texto solto, sem caixa em volta */
.vazio { font-size: 1.125rem; color: var(--grayl); margin-bottom: 22px; }

/* Contratação: o botão é só o rótulo; o texto de apoio fica abaixo, fora do botão */
.contrata { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; }
.contrata-item { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
/* Contorno dourado nítido + leve preenchimento: lê como botão, nunca como texto ou item desativado. */
.btn-contrata {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  background: rgba(201,147,58,.06); color: var(--goldl);
  font-family: var(--sans); font-size: 1.05rem; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase; line-height: 1.3;
  text-decoration: none;
  padding: 14px 28px; border-radius: 50px; border: 1px solid var(--gold);
  cursor: pointer; transition: border-color .3s, color .3s, background .3s, transform .3s, box-shadow .3s;
}
.btn-contrata:hover { border-color: var(--goldl); color: var(--white); background: rgba(201,147,58,.15); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,147,58,.18); }
.btn-contrata:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
/* Ação principal de cada seção (primeiro serviço): preenchida, afordância máxima. */
.contrata-item:first-child .btn-contrata {
  background: var(--gold); color: #080e1c; border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201,147,58,.28);
}
.contrata-item:first-child .btn-contrata:hover {
  background: #f0c97a; border-color: #f0c97a; color: #080e1c;
  box-shadow: 0 12px 32px rgba(201,147,58,.40);
}
.contrata-sub { font-size: 1.125rem; font-weight: 400; color: var(--grayl); line-height: 1.6; max-width: 460px; }

/* Lista de casos (seção Cível) */
.casos { background: var(--navy2); border: 1px solid var(--border); border-radius: 12px; padding: 28px; margin-bottom: 22px; }
.casos h3 {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 500;
  color: var(--white); margin-bottom: 18px;
}
.casos ol { list-style: none; counter-reset: caso; display: flex; flex-direction: column; gap: 14px; }
.casos li { counter-increment: caso; padding-left: 34px; position: relative; font-size: 1.125rem; color: var(--grayl); line-height: 1.6; }
.casos li::before {
  content: counter(caso) "."; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 600;
}
.casos li strong { display: block; color: var(--white); font-weight: 500; }

/* ───────────── TABELA DE MARCAS ───────────── */
.tabela-wrap {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 12px; overflow-x: auto; margin-bottom: 22px;
}
table.marcas { width: 100%; border-collapse: collapse; min-width: 760px; table-layout: fixed; }
/* MARCA e SITUAÇÃO são as colunas que importam: recebem a maior largura.
   Processo, classe, depósito e concessão ficam estreitas (conteúdo curto). */
table.marcas th:nth-child(1), table.marcas td:nth-child(1) { width: 14%; }  /* Processo  */
table.marcas th:nth-child(2), table.marcas td:nth-child(2) { width: 27%; }  /* Marca     */
table.marcas th:nth-child(3), table.marcas td:nth-child(3) { width: 9%;  }  /* Classe    */
table.marcas th:nth-child(4), table.marcas td:nth-child(4) { width: 12%; }  /* Depósito  */
table.marcas th:nth-child(5), table.marcas td:nth-child(5) { width: 12%; }  /* Concessão */
table.marcas th:nth-child(6), table.marcas td:nth-child(6) { width: 26%; }  /* Situação  */
table.marcas th {
  text-align: left; font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gray);
  padding: 18px 20px; border-bottom: 1px solid var(--border); white-space: nowrap;
}
table.marcas td {
  font-size: 1.0625rem; font-weight: 300; color: var(--grayl);
  padding: 18px 20px; border-bottom: 1px solid rgba(30,45,74,.55); vertical-align: top;
}
table.marcas tr:last-child td { border-bottom: none; }
table.marcas td.marca-nome { color: var(--white); font-weight: 500; }
table.marcas td.num { white-space: nowrap; font-variant-numeric: tabular-nums; }

.etiqueta {
  display: inline-block; font-size: .95rem; font-weight: 500; line-height: 1.35;
  padding: 6px 13px; border-radius: 30px; white-space: normal;
  border: 1px solid currentColor;
}
.etiqueta.verde    { color: var(--st-verde);    background: rgba(74,169,108,.12); }
.etiqueta.amarelo  { color: var(--st-amarelo);  background: rgba(217,164,65,.12); }
.etiqueta.vermelho { color: var(--st-vermelho); background: rgba(212,87,78,.12); }
.etiqueta.azul     { color: var(--st-azul);     background: rgba(91,139,201,.12); }
.etiqueta.cinza    { color: var(--st-cinza);    background: rgba(138,150,168,.12); }

/* Bloco do relatório */
.relatorio {
  background: var(--navy2); border: 1px solid var(--golddim);
  border-radius: 12px; padding: 28px; margin-bottom: 28px;
}
.relatorio-data { font-size: 1.15rem; color: var(--white); margin-bottom: 18px; }
.relatorio-acoes { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.relatorio-apoio { font-size: 1.125rem; font-weight: 400; color: var(--grayl); line-height: 1.6; max-width: 620px; }
/* Nota de relatório indisponível: texto solto, sem caixa e sem cara de botão */
.relatorio-nota { font-size: 1.125rem; font-weight: 400; color: var(--grayl); line-height: 1.6; max-width: 620px; margin-bottom: 28px; }

/* ───────────── PÁGINA DE TEXTO (privacidade) ───────────── */
.texto-topo { padding: 128px 0 32px; border-bottom: 1px solid var(--border); }
.texto-topo h1 { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; color: var(--white); line-height: 1.15; }
.texto-topo .texto-org { font-size: 1rem; color: var(--gold); margin-top: 8px; letter-spacing: .04em; }
.texto-topo .texto-data { font-size: 1rem; color: var(--gray); margin-top: 4px; }
.texto-corpo { padding: 44px 0 96px; max-width: 760px; }
.texto-corpo h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--white); margin: 40px 0 12px;
}
.texto-corpo h2:first-of-type { margin-top: 0; }
.texto-corpo p { font-size: 1.05rem; color: var(--grayl); line-height: 1.8; margin-bottom: 14px; }
.texto-corpo .assinatura p { margin-bottom: 4px; }

/* ───────────── ADMIN ───────────── */
.abas { display: flex; gap: 8px; border-bottom: 1px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.aba {
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--gray); font-family: var(--sans); font-size: .92rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 20px; cursor: pointer; transition: color .2s, border-color .2s;
}
.aba:hover { color: var(--grayl); }
.aba.ativa { color: var(--gold); border-bottom-color: var(--gold); }
.painel-aba[hidden] { display: none; }

.card {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 28px; margin-bottom: 16px;
}
.card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--white); margin-bottom: 16px; }
.card-topo { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.card-tipo { font-size: .92rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.card-data { font-size: .95rem; color: var(--gray); font-variant-numeric: tabular-nums; }
.card-dados { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-bottom: 14px; }
.card-dados span { font-size: 1rem; color: var(--grayl); }
.card-dados strong { color: var(--white); font-weight: 500; }
.card-desc { font-size: 1rem; color: var(--grayl); line-height: 1.7; white-space: pre-wrap; border-left: 2px solid var(--border); padding-left: 16px; margin-bottom: 16px; }
.card-rodape { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.card-rodape select { max-width: 240px; }

.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-bottom: 22px; }
.servico-check { display: flex; align-items: center; gap: 10px; background: var(--navy); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; cursor: pointer; }
.servico-check input { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 4px; background: var(--navy2); cursor: pointer; position: relative; }
.servico-check input:checked { background: var(--gold); border-color: var(--gold); }
.servico-check input:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #080e1c; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.servico-check span { font-size: 1rem; color: var(--grayl); }

.filtro-linha { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 24px; }
.filtro-linha .fg { margin-bottom: 0; min-width: 260px; }

.log-linha { display: grid; grid-template-columns: 190px 200px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(30,45,74,.55); }
.log-linha:last-child { border-bottom: none; }
.log-data { font-size: .95rem; color: var(--gray); font-variant-numeric: tabular-nums; }
.log-tipo { font-size: .95rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.log-quem { font-size: 1rem; color: var(--grayl); word-break: break-word; }
.log-quem small { display: block; color: var(--gray); font-size: .92rem; }

/* ───────────── FOOTER (idêntico ao site) ───────────── */
footer { background: #070d1a; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.ft-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.ft-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--white); letter-spacing: .04em; }
.ft-sub { font-size: .57rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.ft-desc { font-size: 1rem; font-weight: 300; color: var(--gray); line-height: 1.75; max-width: 300px; }
.ft-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li, .ft-col ul li a { font-size: 1rem; font-weight: 300; color: var(--gray); text-decoration: none; transition: color .2s; line-height: 1.5; }
.ft-col ul li a:hover { color: var(--goldl); }
.ft-bot { padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ft-cp, .ft-leg { font-size: .95rem; font-weight: 300; color: var(--gray); }
.ft-leg { display: flex; gap: 20px; }
.ft-leg a { color: inherit; text-decoration: none; transition: color .2s; }
.ft-leg a:hover { color: var(--gold); }

/* ───────────── RESPONSIVO ───────────── */
@media (max-width: 1100px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ctr, .nav-in { padding-left: 28px; padding-right: 28px; }
  .nav-links { display: none; }
  .hbg { display: flex; }
  .painel-topo { padding-top: 116px; }
  .painel-topo h1 { font-size: 2.1rem; }
  .secao { margin-bottom: 52px; }
  .secao-cab { gap: 16px; margin-bottom: 22px; }
  .secao-cab h2 { line-height: 1.2; }
  .acesso-wrap { padding-top: 116px; }
  .acesso-card { padding: 36px 26px; }
  .acesso-card h1 { font-size: 2rem; }
  .contrata { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; text-align: center; }
  .texto-topo { padding-top: 116px; }
  .texto-topo h1 { font-size: 2rem; }
  .log-linha { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 480px) {
  .ctr, .nav-in { padding-left: 20px; padding-right: 20px; }
  .secao-cab h2 { font-size: .9rem; letter-spacing: .16em; white-space: normal; }
  .relatorio-acoes .btn-gold, .relatorio-acoes .btn-ghost { width: 100%; }
  .btn-contrata { width: 100%; }
}
