/* =============================================================================
   MANUTENSERV — LP de campanha (Google Ads)
   Locação de equipamentos para construção · Embu das Artes/SP

   A identidade desta versão vem do HTML-modelo enviado pelo GP
   (manutenserv-lp.html, anexo da task): paleta, tipografia, faixa hachurada,
   engrenagem de fundo e o card em formato de plaqueta de máquina. Nada de cor
   ou fonte foi deduzido aqui — ver docs/PENDENCIAS.md.

   CSS único, sem build e sem CDN. Ordem do arquivo:
   1. fontes  2. tokens  3. base  4. tipografia  5. componentes
   6. seções  7. movimento  8. MARCAÇÃO DE PENDÊNCIAS (bloco removível)
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. FONTES

   O modelo do GP pede Oswald (display), Barlow (corpo) e Roboto Mono (rótulos),
   servidas pelo Google Fonts. O padrão da casa é fonte no próprio domínio, sem
   CDN — e este ambiente não tem rede para baixar os .woff2.

   Enquanto os arquivos não entram em assets/fonts/, a pilha abaixo cai em fonte
   de sistema: nenhuma requisição externa e nada quebrado. Para fechar o
   acabamento, coloque os .woff2 e descomente este bloco — o resto do CSS já
   pede as três famílias primeiro.
   -------------------------------------------------------------------------- */

/*
@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-latin-var.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../fonts/roboto-mono-latin-var.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
*/

/* -----------------------------------------------------------------------------
   2. TOKENS — paleta do modelo enviado pelo GP
   -------------------------------------------------------------------------- */

:root {
  --preto:    #0a0a0b;
  --grafite:  #121316;
  --aco:      #1a1c20;
  --aco-2:    #22252a;
  --linha:    #2c3037;

  --ouro:     #f5b60d;
  --ouro-2:   #ffd34d;
  --vermelho: #dc1a1a;

  --texto:    #edebe7;
  --texto-2:  #9aa0a8;
  --texto-3:  #6b7178;

  /* Display condensado: sem Oswald, a melhor aproximação de sistema é a
     variante "Condensed" que Windows e a maioria das distros Linux têm. */
  --display: "Oswald", "Archivo Narrow", "Roboto Condensed",
             "Liberation Sans Narrow", "Arial Narrow",
             system-ui, -apple-system, "Segoe UI", sans-serif;
  --corpo:   "Barlow", system-ui, -apple-system, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, sans-serif;
  --mono:    "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
             "Liberation Mono", monospace;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --sec: clamp(64px, 9vw, 110px);
}

/* -----------------------------------------------------------------------------
   3. BASE
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;   /* o cabeçalho é sticky: âncora não fica escondida */
}

body {
  background: var(--preto);
  color: var(--texto);
  font-family: var(--corpo);
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
/* Precisa vir depois de img{display:block}, senão o atributo hidden do logo
   provisório não segura nada — regra de autor ganha da folha do navegador. */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.env {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Link de salto — fica fora da tela até receber foco pelo teclado. */
.pular {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ouro);
  color: var(--preto);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 20px;
}
.pular:focus { left: 0; }

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -----------------------------------------------------------------------------
   4. TIPOGRAFIA
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.3rem, 6.4vw, 4.35rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.85rem, 4.2vw, 3rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { max-width: 62ch; }

/* Rótulo de seção — mono, espaçado, com o traço dourado à esquerda. */
.etiqueta {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ouro);
  display: flex;
  align-items: center;
  gap: 12px;
}
.etiqueta::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--ouro);
  flex: none;
}

.apoio { color: var(--texto-2); font-size: 1.05rem; margin-top: 14px; }
.ouro  { color: var(--ouro); }

/* -----------------------------------------------------------------------------
   5. COMPONENTES
   -------------------------------------------------------------------------- */

/* Faixa hachurada — elemento de assinatura do modelo (fita de obra). */
.faixa-obra {
  height: 12px;
  width: 100%;
  background: repeating-linear-gradient(-45deg,
              var(--ouro) 0 18px, var(--preto) 18px 36px);
  opacity: .9;
}

/* ---- botões ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: transform .16s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--ouro { background: var(--ouro); color: var(--preto); }
.btn--ouro:hover { background: var(--ouro-2); transform: translateY(-2px); }

.btn--linha { border-color: var(--linha); color: var(--texto); }
.btn--linha:hover { border-color: var(--ouro); color: var(--ouro); }

.btn--preto { background: var(--preto); color: var(--ouro); }
.btn--preto:hover { background: #000; transform: translateY(-2px); }

.btn--peq { padding: 11px 18px; font-size: .86rem; }
.btn--bloco { width: 100%; }

/* Botão inerte enquanto a mensagem ainda tiver {{TOKEN}} — ver main.js. */
.btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

/* ---- moldura de foto pendente ----
   Nenhuma foto da Manutenserv veio no material: o HTML-modelo aponta para
   manutenserv.com.br/images/..., e o checklist manda hospedar no próprio
   domínio. Os <img> já apontam para assets/img/; enquanto o arquivo não
   existir, o main.js marca o slot e esta moldura aparece no lugar do ícone
   de imagem quebrada. */
.sem-foto {
  position: relative;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 24px;
  text-align: center;
  background:
    repeating-linear-gradient(-45deg,
      rgba(245,182,13,.07) 0 10px, transparent 10px 20px),
    var(--aco-2);
  border: 1px dashed var(--linha);
  min-height: 180px;
}
.sem-foto__selo {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--ouro);
  padding: 4px 10px;
}
.sem-foto__txt {
  font-size: .82rem;
  color: var(--texto-2);
  max-width: 30ch;
  line-height: 1.45;
}

/* -----------------------------------------------------------------------------
   6. SEÇÕES
   -------------------------------------------------------------------------- */

/* ---- barra superior + cabeçalho ---- */

.barra {
  background: var(--grafite);
  border-bottom: 1px solid var(--linha);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texto-2);
}
.barra .env {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 38px;
}
.barra b { color: var(--texto); font-weight: 500; }
.barra .oculta-mob { display: none; }

.topo {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 11, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linha);
}
.topo .env { display: flex; align-items: center; gap: 28px; height: 74px; }

/* Marca. O logo oficial existe, mas só embutido em base64 dentro do HTML-modelo
   e não pôde ser extraído para arquivo neste ambiente (ver PENDENCIAS item 2).
   Enquanto assets/img/logo-manutenserv.webp não existir, vale o lettering. */
.topo__marca { display: flex; align-items: center; gap: 11px; }
.topo__marca img { width: 170px; height: auto; }
.topo__letra {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.32rem;
  line-height: 1;
  color: var(--texto);
}
.topo__letra i { font-style: normal; color: var(--ouro); }

.topo__nav {
  display: none;
  margin-left: auto;
  gap: 26px;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.topo__nav a { color: var(--texto-2); transition: color .2s; }
.topo__nav a:hover { color: var(--ouro); }
.topo .btn { margin-left: auto; }
.topo__nav + .btn { margin-left: 0; }

/* ---- hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 8vw, 84px) 0 clamp(56px, 8vw, 90px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 55% at 78% 22%, rgba(245,182,13,.10), transparent 62%);
}
.engrenagem {
  position: absolute;
  right: -16%;
  top: -14%;
  width: min(760px, 88vw);
  opacity: .055;
  z-index: 0;
  color: var(--ouro);
  animation: girar 90s linear infinite;
}
@keyframes girar { to { transform: rotate(360deg); } }

.hero__grade {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(38px, 6vw, 56px);
}
.hero h1 { margin-top: 20px; }
.hero h1 span { color: var(--ouro); display: block; }
.hero__apoio { font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 52ch; }
.hero__acoes { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.selos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--linha);
  border: 1px solid var(--linha);
}
.selo { background: var(--grafite); padding: 16px 18px; }
.selo b {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.selo span {
  font-size: .86rem;
  color: var(--texto-2);
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

.hero__foto { position: relative; }
.hero__foto img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--linha);
  filter: saturate(.9) contrast(1.06);
}
.hero__foto .sem-foto { aspect-ratio: 4 / 3; }
.hero__foto::before {
  content: "";
  position: absolute;
  left: -10px; top: -10px;
  width: 74px; height: 74px;
  border-left: 3px solid var(--ouro);
  border-top: 3px solid var(--ouro);
}
.plaqueta {
  position: absolute;
  left: 16px; right: 16px; bottom: -22px;
  background: var(--grafite);
  border: 1px solid var(--linha);
  border-left: 4px solid var(--vermelho);
  padding: 14px 18px;
}
.plaqueta b {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .02em;
}
.plaqueta span {
  display: block;
  font-size: .85rem;
  color: var(--texto-2);
  line-height: 1.4;
}

/* ---- números ---- */

.numeros { background: var(--grafite); border-block: 1px solid var(--linha); }
.numeros .env {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--linha);
  padding-inline: 0;
}
.num { background: var(--grafite); padding: 30px clamp(18px, 3vw, 30px); text-align: center; }
.num strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: var(--ouro);
  line-height: 1;
}
.num span {
  display: block;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-2);
  margin-top: 9px;
}

/* ---- estrutura de seção ---- */

.sec { padding-block: var(--sec); }
.sec--topo0 { padding-top: 0; }
.sec__cabeca { max-width: 640px; margin-bottom: clamp(38px, 5vw, 54px); }
.sec__cabeca h2 { margin-top: 16px; }
.sec__cabeca p { margin-top: 14px; color: var(--texto-2); }
.grade-3 { display: grid; gap: 20px; }

/* ---- cards de equipamento (assinatura: plaqueta de máquina) ---- */

.eq {
  background: var(--aco);
  border: 1px solid var(--linha);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .22s, transform .22s;
}
.eq:hover { border-color: var(--ouro); transform: translateY(-4px); }
.eq__fita {
  height: 5px;
  background: repeating-linear-gradient(-45deg,
              var(--ouro) 0 9px, transparent 9px 18px);
  opacity: .55;
}
.eq__foto { background: #fff; padding: 22px; display: grid; place-items: center; }
.eq__foto img { height: 180px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
/* Sem a foto, o painel branco não faz sentido: volta ao aço da página. */
.eq__foto--vazio { background: var(--aco); padding: 0; }
.eq__foto--vazio .sem-foto { width: 100%; }
.eq__corpo { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.eq__cat {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ouro);
  border: 1px solid rgba(245, 182, 13, .35);
  padding: 3px 9px;
  align-self: flex-start;
}
.eq h3 { margin: 13px 0 8px; }
.eq p { font-size: .94rem; color: var(--texto-2); flex: 1; }
.eq .btn { margin-top: 20px; width: 100%; }

/* ---- categorias / soluções ---- */

.cat {
  background: var(--grafite);
  border: 1px solid var(--linha);
  padding: 26px 24px 28px;
  transition: border-color .22s, background .22s;
}
.cat:hover { border-color: var(--ouro); background: var(--aco); }
.cat .ic { width: 36px; height: 36px; color: var(--ouro); margin-bottom: 16px; }
.cat h3 { font-size: 1.12rem; }
.cat p { font-size: .93rem; color: var(--texto-2); margin-top: 8px; }

/* ---- urgência ---- */

.urg { background: var(--grafite); position: relative; overflow: hidden; }
.urg .env { position: relative; z-index: 2; padding-block: var(--sec); }
.urg h2 { max-width: 16ch; }
.urg h2 em { font-style: normal; color: var(--vermelho); }
.urg p { margin-top: 18px; color: var(--texto-2); font-size: 1.06rem; }
.urg .btn { margin-top: 30px; }

/* ---- diferenciais ---- */

.dif { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--linha); }
.dif .ic { width: 26px; height: 26px; color: var(--ouro); flex: none; margin-top: 4px; }
.dif h3 { font-size: 1.05rem; }
.dif p { font-size: .93rem; color: var(--texto-2); margin-top: 4px; }

/* ---- depoimentos ---- */

.dep {
  background: var(--aco);
  border: 1px solid var(--linha);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.estrelas { color: var(--ouro); font-size: .95rem; letter-spacing: 3px; }
.dep p {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.16rem;
  line-height: 1.42;
  margin: 16px 0 auto;
  text-transform: none;
  letter-spacing: 0;
}
.dep footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--linha);
}
.dep .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ouro);
  color: var(--preto);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  flex: none;
}
.dep b { display: block; font-size: .95rem; }
.dep small {
  color: var(--texto-2);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---- FAQ ---- */

.faq { border-top: 1px solid var(--linha); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  color: var(--ouro);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq[open] summary::after { content: "–"; }
.faq p { padding-bottom: 24px; color: var(--texto-2); font-size: .98rem; }

/* ---- CTA final ---- */

.cta { background: var(--ouro); color: var(--preto); text-align: center; }
.cta .env { padding-block: clamp(56px, 7vw, 84px); }
.cta .etiqueta { color: var(--preto); justify-content: center; }
.cta .etiqueta::before { background: var(--preto); }
.cta h2 { margin-top: 16px; max-width: 18ch; margin-inline: auto; }
.cta p { margin: 16px auto 0; color: rgba(10, 10, 11, .78); font-weight: 500; }
.cta .btn { margin-top: 32px; }

/* ---- rodapé ---- */

.rodape {
  background: var(--grafite);
  border-top: 1px solid var(--linha);
  padding-top: clamp(48px, 6vw, 70px);
}
.rodape__grade { display: grid; gap: 38px; }
.rodape img.marca { width: 200px; margin-bottom: 18px; }
.rodape__letra {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 14px;
}
.rodape__letra i { font-style: normal; color: var(--ouro); }
.rodape p { font-size: .93rem; color: var(--texto-2); }
.rodape h4 {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--ouro);
  font-weight: 500;
  margin-bottom: 14px;
}
.rodape li {
  list-style: none;
  margin-bottom: 9px;
  font-size: .95rem;
  color: var(--texto-2);
  line-height: 1.5;
}
.rodape li a:hover { color: var(--ouro); }
.creditos {
  border-top: 1px solid var(--linha);
  margin-top: 44px;
  padding-block: 22px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texto-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* ---- WhatsApp flutuante ---- */

.flutuante {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ouro);
  color: var(--preto);
  padding: 14px 20px;
  border-radius: 60px;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .92rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .55);
  transition: transform .18s;
}
.flutuante:hover { transform: scale(1.04); }
.flutuante svg { width: 22px; height: 22px; }
.flutuante span { display: none; }

/* -----------------------------------------------------------------------------
   7. MOVIMENTO
   -------------------------------------------------------------------------- */

.sobe {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.sobe--ok { opacity: 1; transform: none; }

/* -----------------------------------------------------------------------------
   8. RESPONSIVO
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .grade-3 { grid-template-columns: repeat(2, 1fr); }
  .numeros .env { grid-template-columns: repeat(4, 1fr); }
  .flutuante span { display: inline; }
  .barra .oculta-mob { display: inline; }
}

@media (min-width: 900px) {
  .topo__nav { display: flex; }
  .hero__grade { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .grade-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .difs { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 44px; }
  .urg .env { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
  .rodape__grade { grid-template-columns: 1.5fr 1fr 1.2fr; gap: 48px; }
  .faq__grade { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
  .faq__grade .sec__cabeca { margin-bottom: 0; position: sticky; top: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .sobe { opacity: 1; transform: none; }
}

/* =============================================================================
   9. MARCAÇÃO DE PENDÊNCIAS — REMOVER ANTES DE PUBLICAR

   Destaca na tela tudo que ainda depende de dado do cliente. Apague este bloco
   inteiro junto com os class="pendente" do HTML e o aviso .aviso-homolog.
   ========================================================================== */

.pendente {
  border-bottom: 2px dashed var(--vermelho);
  cursor: help;
}

.aviso-homolog {
  border: 1px dashed var(--vermelho);
  border-left: 4px solid var(--vermelho);
  background: rgba(220, 26, 26, .06);
  padding: 14px 18px;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--texto-2);
  line-height: 1.5;
}
.aviso-homolog strong { color: var(--texto); }
.aviso-homolog code {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--ouro);
}

/* ===== FIM DA MARCAÇÃO DE PENDÊNCIAS ===== */
