/* ==========================================================================
   Portal de Tete — estilos (assentam sobre o Bootstrap 5.3)

   IDEIA VISUAL: "estratos". A paleta vem do próprio território:
     carvão  · ferro  · ferrugem (óxido de ferro) · ouro · mopane (savana) · Zambeze (água)
   As faixas horizontais lembram camadas geológicas e repetem-se no logótipo,
   nos separadores e no fundo do carrossel. Cada tema tem a sua cor.
   ========================================================================== */

:root {
  --carvao: #24221F;
  --carvao-2: #34312C;
  --ferro: #4C5A66;
  --ferrugem: #8E4A2F;
  --ouro: #C79A2E;
  --ouro-claro: #E8C878;
  --zambeze: #1F7A7A;
  --mopane: #55703A;

  --pedra: #ECE9E3;
  --papel: #F7F6F3;
  --texto: #2A2723;
  --suave: #5E5A53;
  --linha: #D6D2C9;

  --nav-h: 68px;
  --strata: linear-gradient(90deg, var(--carvao) 0 22%, var(--ferro) 22% 40%, var(--ferrugem) 40% 54%, var(--ouro) 54% 74%, var(--mopane) 74% 88%, var(--zambeze) 88% 100%);

  --f-display: "Archivo", "Arial Narrow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-text: "Source Serif 4", Georgia, "Times New Roman", serif;
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  padding-top: var(--nav-h);
  background: var(--pedra);
  color: var(--texto);
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; color: inherit; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.55rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
a { color: #155F5F; text-underline-offset: 3px; }
img { max-width: 100%; }
main:focus { outline: none; }

:focus-visible { outline: 3px solid var(--zambeze); outline-offset: 3px; }
.site-nav :focus-visible, .hero :focus-visible, .wealth :focus-visible, .site-footer :focus-visible,
.page-hero :focus-visible, .hl:focus-visible, .lb :focus-visible, .modal-x:focus-visible { outline-color: var(--ouro-claro); }

.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 2000; background: var(--ouro); color: var(--carvao); font-family: var(--f-display); font-weight: 700; padding: .6rem 1rem; border-radius: 4px; }
.skip-link:focus { top: .75rem; }

.strata { height: 10px; background: var(--strata); }

/* ---------- botões ---------- */
.btn-gold, .btn-carvao, .btn-sec {
  border: 0; border-radius: 4px; padding: .75rem 1.35rem;
  font-family: var(--f-display); font-weight: 700; text-decoration: none; display: inline-block;
}
.btn-gold { background: var(--ouro); color: var(--carvao); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--ouro-claro); color: var(--carvao); }
.btn-carvao { background: var(--carvao); color: #fff; }
.btn-carvao:hover, .btn-carvao:focus-visible { background: var(--ferro); color: #fff; }
.btn-sec { background: var(--c, var(--carvao)); color: var(--ink, #fff); }
.btn-sec:hover, .btn-sec:focus-visible { background: var(--c, var(--carvao)); color: var(--ink, #fff); filter: brightness(1.12); }

/* ---------- chips ---------- */
.chip, .chip-btn {
  display: inline-block; padding: .22rem .8rem; border-radius: 999px;
  border: 1px solid var(--linha); background: var(--papel); color: var(--texto);
  font-family: var(--f-display); font-size: .88rem; font-weight: 600; line-height: 1.5; text-decoration: none; cursor: pointer;
}
.chip:hover, .chip-btn:hover { border-color: var(--carvao); color: var(--texto); }
.chip-btn[aria-pressed="true"] { background: var(--carvao); border-color: var(--carvao); color: #fff; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.keep .chip { border-color: var(--c); border-width: 2px; }

/* ---------- mídia (imagens em caixas com proporção) ---------- */
.media { position: relative; display: block; overflow: hidden; background: var(--carvao-2); }
.media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-failed { background: linear-gradient(135deg, var(--carvao), var(--ferro) 38%, var(--ferrugem) 68%, var(--ouro)); }
.tile {
  display: grid; place-items: center; color: var(--ink, #fff);
  background-color: var(--c, var(--carvao));
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .09) 0 10px, transparent 10px 22px);
}
.tile .bi { font-size: 3.2rem; opacity: .92; }

/* ---------- navegação ---------- */
.site-nav {
  --bs-navbar-color: #E6E1D6; --bs-navbar-hover-color: #fff; --bs-navbar-active-color: var(--ouro-claro);
  background: var(--carvao); min-height: var(--nav-h);
  border-bottom: 4px solid transparent; border-image: var(--strata) 1;
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.01em; }
.brand-mark {
  width: 24px; height: 28px; display: inline-block; flex: none;
  background: linear-gradient(to bottom, var(--ouro) 0 24%, var(--ferrugem) 24% 46%, var(--ferro) 46% 62%, var(--mopane) 62% 82%, var(--zambeze) 82% 100%);
}
.brand-sub { font-size: .82rem; font-weight: 500; color: #BDB6A8; border-left: 1px solid #5a554d; padding-left: .6rem; }
.site-nav .nav-link { font-family: var(--f-display); font-weight: 600; font-size: .98rem; }
.site-nav .nav-link.active { box-shadow: inset 0 -3px 0 var(--ouro); }
.navbar-toggler { border-color: #5b564e; font-size: 1.5rem; padding: .1rem .5rem; }
.nav-search { display: flex; align-items: center; border: 1px solid #5b564e; border-radius: 999px; padding: 0 .25rem 0 .95rem; margin: .5rem 0 .5rem; }
.nav-search input { background: none; border: 0; color: #fff; width: 9.5rem; padding: .42rem 0; font-family: var(--f-display); font-size: .95rem; }
.nav-search input::placeholder { color: #A9A396; }
.nav-search input:focus { outline: none; }
.nav-search:focus-within { border-color: var(--ouro); box-shadow: 0 0 0 2px rgba(199, 154, 46, .35); }
.nav-search button { background: none; border: 0; color: #E6E1D6; padding: .35rem .65rem; }
.lang-toggle { background: none; border: 1px solid var(--ouro); color: var(--ouro-claro); font-family: var(--f-display); font-weight: 700; border-radius: 999px; padding: .3rem .85rem; margin: .5rem 0 .5rem .5rem; }
.lang-toggle:hover { background: var(--ouro); color: var(--carvao); }
@media (min-width: 1200px) { .nav-search { margin: 0; } .lang-toggle { margin: 0 0 0 .75rem; } }
@media (max-width: 420px) { .brand-sub { display: none; } }

/* ---------- carrossel principal ---------- */
.hero { position: relative; background: var(--carvao); }
.hero .strata { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; }
.hero .carousel-item { height: clamp(540px, calc(100vh - var(--nav-h)), 800px); }
.hero .carousel-item > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .carousel-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28, 25, 22, .9) 0%, rgba(28, 25, 22, .5) 40%, rgba(28, 25, 22, .12) 100%);
}
.hero-copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-bottom: 7rem; color: #fff; }
.hero-copy-in { max-width: 46rem; }
.hero-title {
  font-family: var(--f-display); font-weight: 800; font-variation-settings: "wdth" 112; font-stretch: 112%;
  font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.015em; margin-bottom: .9rem;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 34rem; color: #EFEAE0; margin-bottom: 1.6rem; }
.photo-credit { position: absolute; right: 1rem; bottom: 1.4rem; z-index: 3; font-family: var(--f-display); font-size: .78rem; color: rgba(255, 255, 255, .82); text-decoration: none; }
.photo-credit:hover { color: #fff; text-decoration: underline; }
.hero .carousel-indicators {
  left: 0; right: 0; max-width: 1320px; margin: 0 auto 2.2rem; padding: 0 12px; justify-content: flex-start; z-index: 4;
}
.hero .carousel-indicators [data-bs-target] { width: 38px; height: 4px; margin: 0 6px 0 0; border: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; background-color: #fff; opacity: .55; }
.hero .carousel-indicators .active { background-color: var(--ouro); opacity: 1; }
.hero .carousel-control-prev, .hero .carousel-control-next { z-index: 4; width: 4.5rem; }
@media (max-width: 767px) { .hero .carousel-control-prev, .hero .carousel-control-next { display: none; } .hero-copy { padding-bottom: 6rem; } }

/* ---------- faixa de pesquisa ---------- */
.search-band { position: relative; z-index: 5; margin-top: -3rem; }
.band-panel {
  position: relative; background: var(--papel); border: 1px solid var(--linha);
  padding: 2rem 2rem 1.6rem; display: grid; grid-template-columns: 1fr 1.25fr; gap: 1rem 2.5rem; align-items: center;
}
.band-panel::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 6px; background: var(--strata); }
.band-text h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: .35rem; }
.band-text p { margin: 0; color: var(--suave); }
.band-try { grid-column: 1 / -1; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-family: var(--f-display); font-size: .9rem; color: var(--suave); }
.band-form { display: flex; gap: .5rem; }
.band-form input {
  flex: 1; min-width: 0; border: 1px solid #B8B2A5; background: #fff; border-radius: 4px; padding: .85rem 1.1rem;
  font-family: var(--f-display); font-size: 1.05rem; color: var(--texto);
}
.band-form input:focus { outline: 3px solid var(--zambeze); outline-offset: 1px; border-color: var(--zambeze); }
@media (max-width: 991px) { .band-panel { grid-template-columns: 1fr; padding: 1.5rem 1.25rem; } }
@media (max-width: 480px) { .band-form { flex-direction: column; } }

/* ---------- blocos genéricos ---------- */
.block { padding: 4.5rem 0; }
.block-alt { background: var(--papel); border-block: 1px solid var(--linha); }
.block-tight { padding-bottom: 1.25rem; }
.block-head { margin-bottom: 2rem; max-width: 44rem; }
.block-head p, .block-sub { color: var(--suave); margin: .5rem 0 0; }
.block-sub { margin-bottom: 1.5rem; }
.empty { color: var(--suave); font-family: var(--f-display); padding: 1rem 0; }

/* ---------- destaques ---------- */
.hl-grid { display: grid; gap: 14px; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: repeat(2, minmax(250px, 1fr)); }
.hl-0 { grid-row: 1 / span 2; }
.hl-3 { grid-column: 2 / span 2; }
.hl { position: relative; display: flex; align-items: flex-end; overflow: hidden; color: #fff; text-decoration: none; background: var(--carvao-2); min-height: 250px; }
.hl:hover { color: #fff; }
.hl .media, .hl .tile { position: absolute; inset: 0; }
.hl::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 25, 22, .88) 0%, rgba(28, 25, 22, .35) 55%, rgba(28, 25, 22, .05) 100%); }
.hl .media > img { transition: transform .5s ease; }
.hl:hover .media > img { transform: scale(1.04); }
.hl-body { position: relative; z-index: 2; padding: 1.3rem 1.5rem; }
.hl-tag { display: inline-block; background: var(--c); color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: .82rem; padding: .1rem .6rem; border-radius: 2px; margin-bottom: .6rem; }
.hl h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.hl-0 h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.hl p { margin: 0; font-size: .95rem; color: #ECE7DC; max-width: 34rem; }
@media (max-width: 991px) {
  .hl-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .hl-0 { grid-column: 1 / -1; grid-row: auto; min-height: 380px; }
  .hl-3 { grid-column: auto; }
}
@media (max-width: 575px) { .hl-grid { grid-template-columns: 1fr; } }

/* ---------- em síntese ---------- */
.about-text { font-size: 1.15rem; max-width: 40rem; margin-top: 1rem; }
.facts { margin: 0; }
.facts > div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--linha); }
.facts dt { font-family: var(--f-display); font-weight: 600; color: var(--suave); }
.facts dd { margin: 0; font-family: var(--f-display); font-weight: 700; text-align: right; }

/* ---------- linhas por tema ---------- */
.sec-row { padding: 4rem 0; overflow: hidden; border-top: 1px solid var(--linha); }
.sec-photo { position: relative; }
.sec-photo::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; background: var(--c); }
.sec-photo .media { aspect-ratio: 4 / 3; z-index: 1; }
.sec-row h2 { border-left: 8px solid var(--c); padding-left: 1rem; margin-bottom: .9rem; }
.sec-lead { font-size: 1.15rem; color: var(--suave); max-width: 38rem; }
.sec-list { list-style: none; padding: 0; margin: 1.5rem 0 1.75rem; max-width: 40rem; }
.sec-list a { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .7rem .25rem; border-bottom: 1px solid var(--linha); color: var(--texto); text-decoration: none; font-family: var(--f-display); font-weight: 600; }
.sec-list a:hover { border-bottom-color: var(--c); background: rgba(0, 0, 0, .035); }
.sec-list .bi { color: var(--suave); font-size: .9rem; flex: none; }

/* ---------- riqueza ---------- */
.wealth { background: var(--carvao); color: #fff; padding: 4.5rem 0 5rem; position: relative; }
.wealth .block-head p { color: #CFC9BD; }
.wealth::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px; background: var(--strata); }
.wealth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.wealth-item { background: var(--c); color: var(--ink); text-decoration: none; padding: 2rem 1.5rem 1.75rem; min-height: 250px; display: flex; flex-direction: column; justify-content: flex-end; }
.wealth-item:hover { color: var(--ink); filter: brightness(1.1); }
.wealth-item:first-child { outline: 1px solid #4a463f; outline-offset: -1px; }
.wealth-item .bi { font-size: 2.4rem; margin-bottom: auto; }
.wealth-item h3 { font-size: 1.6rem; margin: 1.5rem 0 .3rem; }
.wealth-item p { margin: 0; font-size: .98rem; }
.wealth-more { margin: 2rem 0 0; }
@media (max-width: 991px) { .wealth-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .wealth-grid { grid-template-columns: 1fr; } .wealth-item { min-height: 170px; } }

/* ---------- galeria ---------- */
.gallery { column-count: 3; column-gap: 14px; }
.gal-item { display: block; width: 100%; margin: 0 0 14px; padding: 0; border: 0; background: none; position: relative; break-inside: avoid; cursor: zoom-in; text-align: left; }
.gal-item[hidden] { display: none; }
.gal-item .media { aspect-ratio: 4 / 3; }
.gal-item:nth-child(3n+1) .media { aspect-ratio: 4 / 5; }
.gal-item:nth-child(3n) .media { aspect-ratio: 1 / 1; }
.gal-item .media > img { transition: transform .5s ease; }
.gal-item:hover .media > img { transform: scale(1.04); }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem .9rem .75rem; color: #fff; font-family: var(--f-display); font-size: .9rem; font-weight: 600; background: linear-gradient(transparent, rgba(0, 0, 0, .72)); opacity: 0; transition: opacity .2s; }
.gal-item:hover .gal-cap, .gal-item:focus-visible .gal-cap { opacity: 1; }
@media (hover: none) { .gal-cap { opacity: 1; } }
@media (max-width: 991px) { .gallery { column-count: 2; } }
@media (max-width: 575px) { .gallery { column-count: 1; } }

/* ---------- comentários ---------- */
.c-form .form-label { font-family: var(--f-display); font-weight: 600; margin-bottom: .3rem; }
.c-form .form-control { border-color: #B8B2A5; border-radius: 4px; font-family: var(--f-display); }
.c-form .form-control:focus { border-color: var(--zambeze); box-shadow: 0 0 0 3px rgba(31, 122, 122, .25); }
.c-status { min-height: 1.5rem; margin: .75rem 0 0; font-family: var(--f-display); font-weight: 600; }
.c-status.ok { color: var(--mopane); }
.c-status.err { color: #A3341D; }
.c-note { font-size: .9rem; color: var(--suave); margin: .25rem 0 0; }
.c-count { font-family: var(--f-display); font-weight: 700; color: var(--suave); min-height: 1.5rem; }
.c-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--linha); }
.c-avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; }
.c-head { margin: 0 0 .25rem; font-family: var(--f-display); }
.c-head span, .c-head time { color: var(--suave); font-size: .88rem; margin-left: .35rem; }
.c-text { margin: 0; white-space: pre-line; overflow-wrap: anywhere; }

/* ---------- cartões de entrada ---------- */
.entry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.entry-card { position: relative; background: var(--papel); border: 1px solid var(--linha); border-top: 5px solid var(--c); display: flex; flex-direction: column; }
.entry-card .media, .entry-card .tile { aspect-ratio: 16 / 10; }
.entry-card:hover { border-color: var(--c); }
.entry-body { padding: 1.1rem 1.25rem 1.4rem; }
.entry-body h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.entry-body h3 a { color: var(--texto); text-decoration: none; }
.entry-card:hover h3 a { text-decoration: underline; text-decoration-thickness: 2px; text-decoration-color: var(--c); }
.entry-body p:last-child { margin: 0; color: var(--suave); font-size: .98rem; }
.entry-sec { display: flex; align-items: center; gap: .5rem; margin: 0 0 .45rem; font-family: var(--f-display); font-size: .86rem; font-weight: 600; color: var(--suave); }
.dot { width: 10px; height: 10px; background: var(--c); flex: none; }

.result { padding: 1.2rem 0; border-bottom: 1px solid var(--linha); }
.result h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.result h3 a { color: var(--texto); text-decoration-color: var(--c); text-decoration-thickness: 2px; }
.result p:last-child { margin: 0; color: var(--suave); }
.res-h { font-size: 1.25rem; margin-bottom: 1rem; }

/* ---------- cabeçalho das páginas interiores ---------- */
.page-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(300px, 44vh, 460px); background: var(--carvao); color: #fff; overflow: hidden; }
.page-hero .media { position: absolute; inset: 0; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 25, 22, .9) 0%, rgba(28, 25, 22, .45) 55%, rgba(28, 25, 22, .2) 100%); }
.page-hero > .container-xl { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 2.75rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-variation-settings: "wdth" 112; font-stretch: 112%; margin-bottom: .6rem; }
.page-lead { max-width: 40rem; font-size: 1.2rem; color: #EFEAE0; margin-bottom: 0; }
.page-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--c, var(--ouro)); z-index: 3; }
.page-hero-plain { min-height: 0; }
.page-hero-plain::after { display: none; }
.page-hero-plain .page-lead { margin-bottom: 1.5rem; }
.band-form-lg { max-width: 44rem; }
.crumbs { display: flex; gap: .55rem; font-family: var(--f-display); font-size: .9rem; margin-bottom: 1rem; color: #DDD7CB; }
.crumbs a { color: #fff; }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-bottom: 1rem; }
.filter-input { position: relative; flex: 1 1 320px; max-width: 32rem; }
.filter-input .bi { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--suave); }
.filter-input input { width: 100%; border: 1px solid #B8B2A5; background: #fff; border-radius: 4px; padding: .8rem 1rem .8rem 2.6rem; font-family: var(--f-display); font-size: 1.02rem; }
.filter-input input:focus { outline: 3px solid var(--zambeze); outline-offset: 1px; border-color: var(--zambeze); }
.filter-count { margin: 0; font-family: var(--f-display); font-weight: 700; color: var(--suave); }
.keep { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--linha); }
.keep h2 { font-size: 1.4rem; margin-bottom: 1rem; }

/* ---------- janelas ---------- */
.modal-content { border: 0; border-radius: 0; background: var(--papel); border-top: 8px solid var(--c, var(--ouro)); }
.modal-x { position: absolute; top: .9rem; right: .9rem; z-index: 6; background-color: rgba(0, 0, 0, .55); border-radius: 50%; padding: .75rem; opacity: 1; }
.modal-media { position: relative; aspect-ratio: 16 / 7; background: var(--carvao-2); }
.modal-media .media, .modal-media .tile { position: absolute; inset: 0; }
.modal-body { padding: 1.75rem 2rem 2rem; }
.modal-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.modal-body p { max-width: 62ch; }
.modal-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 1.5rem; }
.lb { background: #141210; color: #fff; border-top: 0; }
.lb-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 50vh; padding: 1rem 0 0; }
.lb-img { max-width: 100%; max-height: 74vh; object-fit: contain; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, .55); color: #fff; font-size: 1.2rem; }
.lb-nav:hover { background: var(--ouro); color: var(--carvao); }
.lb-prev { left: .75rem; } .lb-next { right: .75rem; }
.lb-cap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; padding: .9rem 1.5rem 1.2rem; font-family: var(--f-display); }
.lb-text { margin: 0; font-weight: 600; }
.lb-src { color: var(--ouro-claro); font-size: .9rem; }

/* ---------- rodapé ---------- */
.site-footer { background: var(--carvao); color: #CFC9BD; margin-top: 0; }
.foot-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.foot-text { max-width: 30rem; }
.foot-h { font-size: 1rem; color: #fff; margin-bottom: .8rem; }
.foot-list { list-style: none; padding: 0; margin: 0; }
.foot-list li { margin-bottom: .4rem; }
.foot-list a { color: #E6E1D6; text-decoration: none; font-family: var(--f-display); }
.foot-list a:hover { color: var(--ouro-claro); text-decoration: underline; }
.foot-credits { border-top: 1px solid #443f38; padding: 1.25rem 0 2rem; font-size: .86rem; color: #A9A396; max-width: 60rem; }

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
