/* =====================================================================
   SOUL OF TANZANIA · «MONOGRAFIA» — sistema de design newc2
   Galeria diurna: osso, tinta, laterite, folha profunda, ocre.
   Bodoni Moda (display) · Archivo (texto e meta em versaletes)
   ===================================================================== */

:root {
  --bone: #F4EEE1;
  --paper: #FBF8F0;
  --ink: #211A12;
  --ink-2: #574C3E;
  --ink-3: #8A7D6B;
  --terra: #A8481F;
  --terra-2: #C25B2D;
  --leaf: #1F3D2B;
  --ochre: #B98624;
  --line: rgba(33, 26, 18, .16);
  --line-strong: rgba(33, 26, 18, .5);
  --shadow: 7px 7px 0 rgba(33, 26, 18, .07);
  --display: "Bodoni Moda", "Didot", serif;
  --ui: "Archivo", system-ui, sans-serif;
  --mono: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --frame: min(1240px, calc(100vw - clamp(32px, 6vw, 96px)));
  --ease: cubic-bezier(.23, .9, .26, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.mono { font-family: var(--mono); font-weight: 500; }
::selection { background: rgba(168, 72, 31, .22); }
.frame { width: var(--frame); margin-inline: auto; }

/* ---------------- barra de meta ---------------- */
.metabar { border-bottom: 1px solid var(--line); background: var(--paper); font-size: 11px; letter-spacing: .04em; }
.metabar-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 7px 0; color: var(--ink-2); }
.metabar .mono { font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em; }
.metabar a:hover { color: var(--terra); }
.metabar-mid { display: none; }
@media (min-width: 980px) { .metabar-mid { display: inline; } }
.metabar-right { display: flex; align-items: center; gap: 16px; }
.langrow { display: inline-flex; gap: 2px; }
.langrow a { padding: 2px 6px; border: 1px solid transparent; }
.langrow a.on { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.langrow a:not(.on):hover { border-color: var(--line-strong); }

/* ---------------- mastro ---------------- */
.mast { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bone) 92%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.mast-in { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); padding: 14px 0; }
.wordmark { display: flex; align-items: center; flex: 0 0 auto; }
.wordmark img { height: clamp(56px, 6vw, 76px); width: auto; display: block; }
.mainnav { display: flex; gap: clamp(6px, 1.1vw, 16px); margin-left: auto; }
.mainnav a { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 2px; position: relative; color: var(--ink-2); }
.mainnav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--terra); transition: right .25s var(--ease); }
.mainnav a:hover { color: var(--ink); }
.mainnav a:hover::after, .mainnav a.on::after { right: 0; }
.mainnav a.on { color: var(--ink); }
.mast-cta { flex: 0 0 auto; }
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 7px; align-items: center; border: 1px solid var(--line-strong); }
.burger i { width: 18px; height: 2px; background: var(--ink); transition: transform .25s var(--ease); }
.burger.open i:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger.open i:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobilenav { position: fixed; inset: 0; top: 0; z-index: 49; background: var(--bone); padding-top: 120px; overflow-y: auto; }
.mobilenav a { display: block; font-family: var(--display); font-size: clamp(28px, 7vw, 40px); padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobilenav a.strong { color: var(--terra); }
.mobilenav .langrow.big { display: flex; gap: 10px; padding: 22px 0; flex-wrap: wrap; }
.mobilenav .langrow.big a { font-family: var(--ui); font-size: 14px; border: 1px solid var(--line-strong); padding: 8px 14px; }
.mobilenav .langrow.big a.on { background: var(--ink); color: var(--paper); }

/* ---------------- botões ---------------- */
.btn { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--ink); padding: 14px 26px; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; border-radius: 2px; transition: all .22s var(--ease); position: relative; background: transparent; }
.btn span { position: relative; z-index: 1; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--paper); }
.btn-terra { border-color: var(--terra); background: var(--terra); color: var(--paper); }
.btn-terra::before { background: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink::before { background: var(--terra); }
.btn-ghost { border-color: rgba(251, 248, 240, .6); color: var(--paper); }
.btn-ghost::before { background: var(--paper); }
.btn-ghost:hover { color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.uline { border-bottom: 1px solid var(--terra); padding-bottom: 1px; transition: all .2s; }
.uline:hover { color: var(--terra); }

/* ---------------- tipografia editorial ---------------- */
.kick { font-family: var(--mono); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--terra); display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.kick .no { border: 1px solid var(--terra); padding: 2px 7px; letter-spacing: .1em; white-space: nowrap; flex: 0 0 auto; }
.d1 { font-family: var(--display); font-weight: 560; font-size: clamp(44px, 8.4vw, 116px); line-height: .96; letter-spacing: -.005em; }
.d2 { font-family: var(--display); font-weight: 560; font-size: clamp(30px, 4.6vw, 58px); line-height: 1.02; }
.d3 { font-family: var(--display); font-weight: 600; font-size: clamp(21px, 2.6vw, 30px); line-height: 1.12; }
.d1 em, .d2 em, .d3 em { font-style: italic; font-weight: 460; color: var(--terra); }
.lede { font-size: clamp(16px, 1.75vw, 19px); color: var(--ink-2); max-width: 62ch; font-weight: 400; }
.smallcaps { font-family: var(--mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); }
.rule { border: 0; border-top: 1px solid var(--line); }
.rule-strong { border-top: 2px solid var(--ink); }

/* ---------------- secções ---------------- */
.chapter { padding: clamp(66px, 9vw, 140px) 0; }
.chapter + .chapter { border-top: 1px solid var(--line); }
.chapter.on-paper { background: var(--paper); }
.chapter.on-ink { background: var(--leaf); color: var(--bone); }
.chapter.on-ink .lede { color: rgba(244, 238, 225, .78); }
.chapter.on-ink .kick { color: var(--ochre); }
.chapter.on-ink .kick .no { border-color: var(--ochre); }
.chapter.on-ink .rule { border-color: rgba(244, 238, 225, .2); }
.chap-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 4vw, 48px); }

/* ---------------- placas (figuras) ---------------- */
.plate { background: var(--paper); border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.plate-img { overflow: hidden; position: relative; }
.plate-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.plate:hover .plate-img img { transform: scale(1.035); }
.plate-cap { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; padding: 10px 14px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.grid { display: grid; gap: clamp(16px, 2.4vw, 30px); }
.g2 { grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr)); }
.g3 { grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); }
.g4 { grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); }

.tag { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; border: 1px solid var(--line-strong); padding: 4px 9px; color: var(--ink-2); background: var(--paper); }
.tag.terra { background: var(--terra); border-color: var(--terra); color: var(--paper); }
.tag.leaf { background: var(--leaf); border-color: var(--leaf); color: var(--bone); }
.tag.ochre { border-color: var(--ochre); color: var(--ochre); }

/* ---------------- capa (home hero) ---------------- */
.masthead { position: relative; border-bottom: 1px solid var(--line); background: var(--leaf); color: var(--bone); overflow: hidden; }
.masthead-media { position: absolute; inset: 0; }
.masthead-media img, .masthead-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.masthead-media video { opacity: 0; transition: opacity 1.6s ease; }
.masthead-media video.on { opacity: 1; }
.masthead-media::after { content: ""; position: absolute; inset: 0; z-index: 2; background: radial-gradient(58% 72% at 22% 68%, rgba(8, 10, 8, .42), rgba(8, 10, 8, 0) 72%), linear-gradient(180deg, rgba(8, 10, 8, .34), rgba(8, 10, 8, 0) 26%, rgba(8, 10, 8, 0) 55%, rgba(8, 10, 8, .62) 100%); opacity: 1; transition: opacity 1.6s ease; }
.masthead-in { position: relative; z-index: 2; min-height: min(88svh, 860px); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(40px, 6vw, 80px) 0; }
.masthead .quote { font-family: var(--display); font-weight: 520; font-style: italic; font-size: clamp(23px, 3.3vw, 44px); line-height: 1.22; max-width: 30ch; transition: color 1.1s ease; }
.masthead .byline { font-family: var(--mono); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--ochre); margin: 22px 0 30px; transition: color 1.1s ease; }
.masthead-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.playlink { position: absolute; z-index: 3; right: clamp(16px, 3vw, 40px); bottom: 96px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bone); background: rgba(10, 14, 10, .38); border: 1px solid rgba(244, 238, 225, .3); border-radius: 999px; padding: 8px 16px 8px 8px; backdrop-filter: blur(6px); transition: all .25s var(--ease); opacity: 0; visibility: hidden; }
.playlink.show { opacity: 1; visibility: visible; }
.playlink:hover { background: rgba(10, 14, 10, .55); }
.playlink .disc { width: 34px; height: 34px; border: 1px solid rgba(244, 238, 225, .65); border-radius: 50%; display: grid; place-items: center; transition: all .25s var(--ease); }
.playlink:hover .disc { background: var(--terra); border-color: var(--terra); transform: scale(1.07); }
.masthead-index { position: relative; z-index: 2; border-top: 1px solid rgba(244, 238, 225, .16); }
.masthead-index .frame { display: grid; grid-template-columns: repeat(4, 1fr); }
.masthead-index a { padding: 16px 18px 18px 0; border-right: 1px solid rgba(244, 238, 225, .12); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(244, 238, 225, .8); display: flex; flex-direction: column; gap: 3px; transition: all .2s; }
.masthead-index a:last-child { border-right: 0; }
.masthead-index a b { font-family: var(--display); font-size: clamp(15px, 1.7vw, 21px); letter-spacing: 0; text-transform: none; color: var(--bone); font-weight: 560; }
.masthead-index a:hover { background: rgba(244, 238, 225, .07); color: var(--bone); }
.masthead-index a span.cnt { color: var(--ochre); }

/* índice de destinos — parado. Havia aqui uma faixa em movimento que competia
   com o vídeo da capa; ficou a mesma ideia, sem animação. */
.destindex { border-block: 1px solid var(--line); background: var(--bone); padding: clamp(18px, 2.4vw, 30px) 0; }
.destindex .frame { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px clamp(20px, 3vw, 42px); }
.destindex span { font-family: var(--display); font-weight: 620; line-height: 1.2; font-size: clamp(20px, 2.5vw, 32px); color: transparent; -webkit-text-stroke: 1px rgba(33, 26, 18, .32); }
.destindex span.solid { color: var(--terra); -webkit-text-stroke: 0; font-style: italic; font-weight: 460; }

/* ---------------- índices de listagem ---------------- */
.toolrow { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; padding: 14px 0; border-block: 1px solid var(--line); margin-bottom: clamp(22px, 3.4vw, 40px); }
.toolrow input[type="search"], .toolrow select { background: var(--paper); border: 1px solid var(--line-strong); padding: 10px 14px; font: inherit; font-size: 13.5px; color: var(--ink); border-radius: 2px; min-width: 150px; }
.toolrow input:focus, .toolrow select:focus { outline: 2px solid var(--terra); outline-offset: 0; }
.tabrow { display: flex; gap: 4px; flex-wrap: wrap; }
.tabrow button { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; padding: 9px 13px; border: 1px solid transparent; color: var(--ink-2); transition: all .18s; }
.tabrow button:hover { color: var(--terra); }
.tabrow button.on { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.spacer { flex: 1; }

/* cartão de tour: placa numerada */
.tourplate { display: flex; flex-direction: column; position: relative; }
.tourplate .plate-img { aspect-ratio: 4/3; }
.tourplate .no-tag { position: absolute; top: -1px; left: -1px; z-index: 2; background: var(--paper); border: 1px solid var(--line-strong); font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; padding: 6px 10px; }
.tourplate .badge-tag { position: absolute; top: -1px; right: -1px; z-index: 2; }
.tourplate .dur-tag { position: absolute; bottom: 12px; left: 12px; z-index: 2; background: rgba(33, 26, 18, .82); color: var(--bone); font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 10px; }
.tourplate-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; background: var(--paper); }
.tourplate-body h3 { font-family: var(--display); font-size: clamp(19px, 2.2vw, 24px); font-weight: 620; line-height: 1.12; }
.tourplate-body p { font-size: 13.5px; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tourplate-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.tourplate-foot .go { color: var(--terra); font-size: 16px; transition: transform .2s var(--ease); }
.tourplate:hover .tourplate-foot .go { transform: translateX(5px); }

/* ---------------- página de detalhe ---------------- */
.dossier { display: grid; grid-template-columns: minmax(270px, 340px) 1fr; gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.dossier-side { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 16px; }
.factlist { border-top: 2px solid var(--ink); }
.factlist .fact { display: flex; justify-content: space-between; gap: 12px; padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: 13px; }
.factlist .fact b { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; padding-top: 2px; }
.factlist .fact span { text-align: right; max-width: 60%; }
.prose { font-size: 16.5px; line-height: 1.75; color: var(--ink-2); }
.prose p { margin-bottom: 1.1em; }
.prose p:first-child::first-letter { font-family: var(--display); font-size: 3.2em; float: left; line-height: .82; padding: 4px 10px 0 0; color: var(--terra); font-weight: 620; }

/* dia-a-dia: lâminas romanas */
.folio { counter-reset: folio; margin-top: 10px; }
.folio-day { display: grid; grid-template-columns: 84px 1fr; gap: clamp(14px, 2.4vw, 30px); padding: 22px 0; border-top: 1px solid var(--line); }
.folio-day .num { font-family: var(--display); font-weight: 640; font-size: clamp(26px, 3vw, 38px); color: var(--terra); line-height: 1; }
.folio-day .num small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }
.folio-day h4 { font-family: var(--display); font-size: clamp(18px, 2vw, 23px); font-weight: 620; margin-bottom: 6px; }
.folio-day p { font-size: 14.5px; color: var(--ink-2); }
.folio-fig { grid-column: 1 / -1; margin: 8px 0 4px; }
.folio-fig .plate-img { aspect-ratio: 21/9; }

/* ---------------- equipa ---------------- */
.guide-card { text-align: left; }
.guide-card .plate-img { aspect-ratio: 1; }
.guide-card .plate-img img { filter: saturate(.92); }
.guide-body { padding: 16px 18px 18px; }
.guide-body h3 { font-family: var(--display); font-size: 22px; font-weight: 640; }
.guide-body .role { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin: 2px 0 8px; }
.guide-body p { font-size: 13.5px; color: var(--ink-2); }

/* ---------------- blockquote monografia ---------------- */
.pull { border-left: 3px solid var(--terra); padding: 6px 0 6px 26px; font-family: var(--display); font-style: italic; font-size: clamp(20px, 2.6vw, 28px); font-weight: 480; line-height: 1.3; color: var(--ink); max-width: 30ch; }

/* ---------------- FAQ ---------------- */
.qa { border-top: 2px solid var(--ink); }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary { display: grid; grid-template-columns: 64px 1fr 30px; align-items: baseline; gap: 14px; cursor: pointer; list-style: none; padding: 20px 2px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .qno { font-family: var(--display); font-size: 22px; font-weight: 640; color: var(--terra); }
.qa summary h3 { font-family: var(--display); font-size: clamp(17px, 2vw, 22px); font-weight: 620; }
.qa summary .plus { font-size: 20px; color: var(--ink-3); transition: transform .25s var(--ease); text-align: center; }
.qa details[open] summary .plus { transform: rotate(45deg); color: var(--terra); }
.qa .answer { padding: 0 2px 24px 78px; color: var(--ink-2); font-size: 14.5px; max-width: 72ch; white-space: pre-line; }
@media (max-width: 640px) { .qa summary { grid-template-columns: 40px 1fr 24px; } .qa .answer { padding-left: 2px; } }

/* ---------------- formulário ---------------- */
.formcard { background: var(--paper); border: 1px solid var(--line-strong); box-shadow: var(--shadow); padding: clamp(22px, 3.4vw, 44px); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea { background: var(--bone); border: 1px solid var(--line-strong); padding: 13px 15px; font: inherit; font-size: 15px; color: var(--ink); border-radius: 2px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--terra); outline-offset: 0; }
.field textarea { min-height: 130px; resize: vertical; }
.fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .fieldrow { grid-template-columns: 1fr; } }
.form-status { font-family: var(--mono); font-size: 12.5px; margin-top: 12px; min-height: 18px; }
.form-status.ok { color: var(--leaf); }
.form-status.bad { color: var(--terra); }
output.bud { font-family: var(--mono); color: var(--terra); font-weight: 600; }
input[type="range"] { accent-color: var(--terra); }
.stepper { display: flex; align-items: center; border: 1px solid var(--line-strong); background: var(--bone); border-radius: 2px; }
.stepper button { width: 44px; height: 44px; font-size: 18px; }
.stepper button:hover { background: var(--terra); color: var(--paper); }
.stepper output { flex: 1; text-align: center; font-family: var(--mono); }

/* ---------------- galeria ---------------- */
.masonry { columns: 3 300px; column-gap: 18px; }
.masonry figure { margin-bottom: 18px; break-inside: avoid; cursor: zoom-in; border: 1px solid var(--line-strong); background: var(--paper); box-shadow: var(--shadow); }
.masonry img { width: 100%; transition: opacity .3s; }
.masonry figure:hover img { opacity: .88; }

/* ---------------- estadias / actividades ---------------- */
.roomrow { border: 1px solid var(--line); border-left: 3px solid var(--ochre); padding: 9px 12px; font-size: 13px; color: var(--ink-2); background: var(--bone); }

/* ---------------- faixa de testemunho ---------------- */
.reviewband { text-align: center; }
.reviewband .stars { color: var(--ochre); letter-spacing: 8px; font-size: 20px; }
.reviewlinks { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ---------------- rodapé (em linha com o site original) ---------------- */
.colophon { background: var(--paper); border-top: 2px solid var(--ink); margin-top: clamp(50px, 8vw, 110px); padding: clamp(36px, 5vw, 64px) 0 24px; }
.colo-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.colo-brand p { font-size: 13px; color: var(--ink-2); margin-top: 14px; max-width: 30ch; }
.colo-logo { height: 62px; width: auto; }
.colophon h5 { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
.colophon ul { list-style: none; display: grid; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.colophon ul a { border-bottom: 1px solid transparent; }
.colophon ul a:hover { color: var(--terra); border-bottom-color: var(--terra); }
.colo-news { margin-top: 18px; }
.colo-news label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.colo-news-row { display: flex; gap: 8px; }
.colo-news input { flex: 1; min-width: 0; background: var(--bone); border: 1px solid var(--line-strong); padding: 10px 12px; color: var(--ink); font: inherit; font-size: 13px; border-radius: 2px; }
.colo-news input:focus { outline: 2px solid var(--terra); }
.colo-news p { font-family: var(--mono); font-size: 11px; margin-top: 7px; color: var(--ink-3); min-height: 15px; }
.colo-bot { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 20px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.colo-bot .credits { font-size: 9.5px; text-transform: none; letter-spacing: .04em; }
@media (max-width: 1080px) { .colo-grid { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); } }

/* ---------------- lightbox / filme / toast ---------------- */
.lbx, .filmbox { position: fixed; inset: 0; z-index: 90; background: rgba(20, 16, 10, .93); display: grid; place-items: center; padding: 4vh 4vw; }
.lbx figure { max-width: 92vw; }
.lbx img { max-width: 92vw; max-height: 82vh; object-fit: contain; border: 1px solid rgba(244, 238, 225, .25); }
.lbx figcaption { color: rgba(244, 238, 225, .65); font-size: 11px; letter-spacing: .1em; margin-top: 12px; text-align: center; }
.lbx-x { position: absolute; top: 16px; right: 26px; font-size: 38px; color: #fff; opacity: .75; z-index: 2; }
.lbx-x:hover { opacity: 1; }
.lbx-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 30px; color: #fff; opacity: .6; padding: 20px; }
.lbx-nav:hover { opacity: 1; }
.lbx-nav.prev { left: 8px; }
.lbx-nav.next { right: 8px; }
.filmbox video { width: min(1100px, 94vw); max-height: 86vh; border: 1px solid rgba(244, 238, 225, .3); background: #000; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 16px); z-index: 95; background: var(--ink); color: var(--paper); padding: 12px 22px; font-size: 12px; letter-spacing: .08em; opacity: 0; pointer-events: none; transition: all .3s var(--ease); border-radius: 2px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------------- revelação ---------------- */
.rv { opacity: 0; transform: translateY(10px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ---------------- responsivo ---------------- */
@media (max-width: 960px) {
  .mainnav, .mast-cta { display: none; }
  .burger { display: flex; }
  .masthead-index .frame { grid-template-columns: repeat(2, 1fr); }
  .masthead-index a:nth-child(2) { border-right: 0; }
  .dossier { grid-template-columns: 1fr; }
  .dossier-side { position: static; }
  .metabar-in { justify-content: center; }
  .metabar-in > .mono:first-child { display: none; }
}
@media (max-width: 640px) {
  .folio-day { grid-template-columns: 54px 1fr; }
  .masonry { columns: 2 160px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
}

/* ---------------- assistente por passos ---------------- */
.wiz-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.wiz-dots { display: flex; gap: 6px; }
.wiz-dots i { width: 26px; height: 3px; background: var(--line); transition: background .3s; }
.wiz-dots i.on { background: var(--terra); }
.wiz-q { margin-bottom: 18px; }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr)); gap: 10px; }
.opt { text-align: left; border: 1px solid var(--line-strong); background: var(--bone); padding: 14px 16px; border-radius: 2px; transition: all .18s var(--ease); display: flex; flex-direction: column; gap: 3px; }
.opt b { font-family: var(--display); font-size: 17px; font-weight: 620; }
.opt small { font-size: 12px; color: var(--ink-3); }
.opt:hover { border-color: var(--terra); transform: translateY(-1px); }
.opt.on { background: var(--ink); border-color: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.opt.on small { color: rgba(251, 248, 240, .7); }
.wiz-foot { display: flex; justify-content: space-between; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.wiz-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.wiz-chips:empty { display: none; }
.wiz-chips .tag { background: var(--bone); }

/* toggle de som do hero */
.playlink .disc.playing { background: var(--terra); border-color: var(--terra); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(168, 72, 31, .4); } 55% { box-shadow: 0 0 0 12px rgba(168, 72, 31, 0); } }

/* ===== legibilidade sobre vídeo limpo ===== */
.masthead .quote, .masthead .byline, .masthead .kick { text-shadow: 0 2px 30px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .5); }

/* ===== dropdown do Kilimanjaro ===== */
.navdrop { position: relative; display: inline-flex; }
.navdrop > a { display: inline-flex; align-items: center; gap: 5px; }
.navdrop .caret { font-size: 8px; opacity: .6; transition: transform .18s; }
.navdrop:hover .caret, .navdrop:focus-within .caret { transform: translateY(1px); opacity: 1; }
.navdrop-menu { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px); background: var(--paper); border: 1px solid var(--line-strong); box-shadow: 7px 7px 0 rgba(33, 26, 18, .12); min-width: 260px; padding: 8px 0 10px; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s; z-index: 80; }
.navdrop:hover .navdrop-menu, .navdrop:focus-within .navdrop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 4px); }
.navdrop-menu a { display: block; padding: 8px 20px; font-size: 13.5px; color: var(--ink-2); white-space: nowrap; }
.navdrop-menu a:hover { background: var(--bone); color: var(--ink); }
.navdrop-menu .grp { font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--terra); padding: 12px 20px 5px; }
.mobilenav .subnav { display: flex; flex-direction: column; gap: 0; margin: -6px 0 6px 18px; border-left: 1px solid var(--line-strong); padding-left: 16px; }
.mobilenav .subnav a { font-size: 15px !important; padding: 5px 0 !important; color: var(--ink-2); }

/* ===== cartões de avaliação (testimonials) ===== */
.scoreband { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3.4vw, 40px); }
.scorecard { background: var(--paper); border: 1px solid var(--line-strong); box-shadow: 7px 7px 0 rgba(33, 26, 18, .1); padding: clamp(24px, 3.4vw, 44px); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.scorecard .src { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 9px; }
.scorecard .src img { width: 20px; height: 20px; object-fit: contain; }
.scorecard .num { font-family: "Bodoni Moda", serif; font-size: clamp(62px, 8.4vw, 108px); font-weight: 700; line-height: .92; color: var(--ink); }
.scorecard .num small { font-size: .38em; font-weight: 400; color: var(--ink-3); }
.scorecard .stars { color: var(--ochre); font-size: 19px; letter-spacing: 7px; }
.scorecard .cnt2 { font-size: 15.5px; color: var(--ink-2); }
.scorecard .cnt2 b { font-size: 19px; color: var(--ink); }
@media (max-width: 760px) { .scoreband { grid-template-columns: 1fr; } }

/* ===== página de obrigado ===== */
.thanks-hero { display: grid; align-content: center; text-align: center; padding: clamp(26px, 3.6vw, 48px) 0; }
.thanks-hero .d0 { font-family: "Bodoni Moda", serif; font-size: clamp(38px, 5.8vw, 84px); line-height: .98; font-weight: 700; }
.thanks-hero .lede { max-width: 600px; margin: 18px auto 0; font-size: clamp(16px, 1.8vw, 19px); }

/* ===== guia Kilimanjaro ===== */
.gearlist { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0 34px; }
.gearlist li { padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line); position: relative; font-size: 15px; color: var(--ink-2); }
.gearlist li::before { content: "✓"; position: absolute; left: 2px; top: 10px; color: var(--leaf); font-weight: 700; }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line-strong); box-shadow: 7px 7px 0 rgba(33, 26, 18, .08); background: var(--paper); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 700px; }
.cmp th, .cmp td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.cmp thead th { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); background: var(--bone); }
.cmp tbody th { font-family: "Bodoni Moda", serif; font-size: 17px; font-weight: 700; white-space: nowrap; }
.cmp tr:last-child td, .cmp tr:last-child th { border-bottom: 0; }
.stepband { counter-reset: step; display: grid; gap: 0; }
.stepband .step { display: grid; grid-template-columns: 84px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.stepband .step::before { counter-increment: step; content: "0" counter(step); font-family: "Bodoni Moda", serif; font-size: 44px; font-weight: 700; color: var(--terra); line-height: 1; }
.stepband .step h3 { font-size: 20px; margin-bottom: 8px; }
.stepband .step p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 640px) { .stepband .step { grid-template-columns: 1fr; gap: 8px; } }

@media (max-width: 700px) { .playlink { bottom: 150px; } }

/* ===== fase «mística»: imagem com véu de névoa claro, texto a tinta ===== */
.masthead-media::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(250, 246, 238, .72), rgba(250, 246, 238, .38) 46%, rgba(250, 246, 238, .60) 100%); opacity: 0; transition: opacity 1.6s ease; pointer-events: none; }
.masthead.lit .masthead-media::before { opacity: 1; }
.masthead.lit .masthead-media::after { opacity: 0; }
.masthead.lit .quote { color: var(--ink); text-shadow: none; }
.masthead.lit .byline { color: var(--ink-2); text-shadow: none; }
.masthead.lit .kick { text-shadow: none; }
.masthead.lit .btn-ghost { border-color: rgba(33, 26, 18, .55); color: var(--ink); }
.masthead.lit .btn-ghost::before { background: var(--ink); }
.masthead.lit .btn-ghost:hover { color: var(--paper); }
.masthead.lit .masthead-index { border-top-color: rgba(33, 26, 18, .18); }
.masthead.lit .masthead-index a { color: rgba(33, 26, 18, .66); border-right-color: rgba(33, 26, 18, .14); }
.masthead.lit .masthead-index a b { color: var(--ink); }
.masthead.lit .masthead-index a span.cnt { color: var(--terra); }
.masthead-index a, .masthead-index a b, .masthead-index { transition: color 1.1s ease, border-color 1.1s ease, background .2s; }

/* ===== header transparente sobre o hero (só na home), opaco ao rolar ===== */
/* -29px = padding do mast (2×14px) + risco; o clamp tem de ser IGUAL à altura do logo (.wordmark img) */
.home .masthead { margin-top: calc(-29px - clamp(56px, 6vw, 76px)); }
.home .mast { transition: background .4s ease, border-color .4s ease; }
.home .mast:not(.scrolled) { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; }
.home .mast .mainnav a, .home .mast .caret { transition: color .6s ease; }
.home .mast .wordmark img { transition: filter .6s ease; }
/* só as entradas de topo é que ficam claras por cima do vídeo — os links dentro
   do submenu estão sobre um painel claro e têm de continuar escuros */
.home .mast:not(.scrolled).on-video .mainnav > .navdrop > a { color: var(--bone) !important; text-shadow: 0 1px 12px rgba(0, 0, 0, .45); }
.home .mast:not(.scrolled).on-video .mainnav > .navdrop > a.on { color: var(--paper) !important; }
.home .mast:not(.scrolled).on-video .wordmark img { filter: brightness(0) invert(1) drop-shadow(0 1px 10px rgba(0, 0, 0, .4)); }
.home .mast:not(.scrolled).on-video .burger { border-color: rgba(244, 238, 225, .6); }
.home .mast:not(.scrolled).on-video .burger i { background: var(--bone); }

/* ===== controlos do filme na capa ===== */
.masthead.lit .playlink { color: var(--ink); border-color: rgba(33, 26, 18, .45); background: rgba(251, 248, 240, .55); }
.masthead.lit .playlink .disc { border-color: rgba(33, 26, 18, .5); }
.film-x { position: absolute; z-index: 3; top: calc(46px + clamp(42px, 4.6vw, 56px)); right: clamp(16px, 3vw, 40px); width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(244, 238, 225, .5); background: rgba(10, 14, 10, .35); color: var(--bone); font-size: 21px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .25s var(--ease); }
.film-x.show { opacity: 1; visibility: visible; }
.film-x:hover { background: var(--terra); border-color: var(--terra); }

/* ===== sem numeração de capítulos; kickers só com a palavra ===== */
.kick .no { display: none; }

/* ===== citação da capa centrada (não briga com o jeep) ===== */
.masthead-in { align-items: center; text-align: center; }
.masthead-in .kick { justify-content: center; }
.masthead .quote { max-width: 26ch; }
.masthead .byline { text-align: center; }
.masthead-foot { justify-content: center; }

/* ===== hero fecha no fold: barra de índice sempre inteira ===== */
.home .masthead { display: flex; flex-direction: column; min-height: 100vh; min-height: 100svh; }
.home .masthead-in { flex: 1 1 auto; min-height: 0; }

/* ===== cartões dinâmicos: sobem ao passar o rato ===== */
.tourplate { transition: transform .35s var(--ease), box-shadow .35s var(--ease); will-change: transform; }
.tourplate:hover { transform: translateY(-9px); box-shadow: 10px 15px 0 rgba(33, 26, 18, .13); }
.guide-card { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.guide-card:hover { transform: translateY(-9px); box-shadow: 10px 15px 0 rgba(33, 26, 18, .13); }

/* ===== guia mês-a-mês (migração) ===== */
.months { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 14px; margin-top: clamp(24px, 4vw, 40px); }
.month { background: var(--paper); border: 1px solid var(--line-strong); box-shadow: var(--shadow); padding: 16px 16px 18px; }
.month strong { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--terra); }
.month .dots { display: flex; gap: 4px; margin: 10px 0 12px; }
.month .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.month .dots i.on { background: var(--ochre); }
.month h5 { font-family: var(--display); font-size: 17.5px; font-weight: 600; margin-bottom: 6px; line-height: 1.15; }
.month p { font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.month.peak { border-color: var(--terra); box-shadow: 7px 7px 0 rgba(168, 72, 31, .12); }

/* ===== botão flutuante «Design my safari» ===== */
.fab { position: fixed; right: clamp(16px, 2.4vw, 30px); bottom: clamp(16px, 2.4vw, 30px); z-index: 120; display: flex; align-items: center; gap: 12px; padding: 8px 20px 8px 8px; background: var(--ink); color: var(--paper); border-radius: 999px; box-shadow: 0 14px 34px rgba(33, 26, 18, .38); opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .35s var(--ease); }
.fab.show { opacity: 1; visibility: visible; transform: none; }
.fab:hover { background: var(--terra); }
.fab .dot { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--terra); color: var(--paper); font-size: 17px; transition: background .3s; }
.fab:hover .dot { background: var(--ink); }
.fab b { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
@media (max-width: 700px) { .fab b { display: none; } .fab { padding: 8px; } }

/* =====================================================================
   Ajustes pedidos na revisão de 2026-08-07
   ===================================================================== */

/* --- menu agrupado: três entradas em vez de nove ------------------- */
.mainnav { gap: clamp(14px, 2vw, 30px); align-items: center; }
.mainnav > .navdrop > a { font-size: 12px; letter-spacing: .12em; }
.navdrop-menu { min-width: 240px; padding: 10px 0 12px; }
.navdrop-menu > a { font-size: 13.5px; padding: 9px 22px; }
.navdrop-sub { padding: 2px 0 6px; }
.navdrop-sub a { display: block; padding: 5px 22px 5px 36px; font-size: 12.5px; color: var(--ink-3); white-space: nowrap; position: relative; }
.navdrop-sub a::before { content: "·"; position: absolute; left: 24px; color: var(--line-strong); }
.navdrop-sub a:hover { background: var(--bone); color: var(--ink); }
/* O painel do submenu é sempre claro, mesmo quando o cabeçalho está por cima do
   vídeo e pinta as entradas de topo de branco. Sem esta excepção, o submenu
   ficava texto branco sobre painel branco — ilegível enquanto o filme corre. */
.mainnav .navdrop-menu a { color: var(--ink-2) !important; text-shadow: none !important; }
.mainnav .navdrop-menu a:hover { color: var(--ink) !important; }
.mainnav .navdrop-sub a { color: var(--ink-3) !important; }
.mainnav .navdrop-sub a:hover { color: var(--ink) !important; }
/* o botão de reserva ganha peso: é a acção principal do cabeçalho */
.mast-cta { margin-left: clamp(14px, 2vw, 26px); }

/* menu móvel agrupado */
.mobgroup { padding: 6px 0 12px; border-bottom: 1px solid var(--line); }
.mobgroup + .mobgroup { margin-top: 4px; }
.mobgroup-t { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); margin-bottom: 6px; }

/* --- carril horizontal da colecção -------------------------------- */
.rail { position: relative; --rail-gap: clamp(14px, 2vw, 22px); }
/* flex e não grid: com grid as colunas encolhem para caber e o carril nunca
   chega a transbordar, que é precisamente o que faz falta para deslizar. */
.rail-track { display: flex; gap: var(--rail-gap); overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 6px; scrollbar-width: none; -ms-overflow-style: none; }
.rail-track::-webkit-scrollbar { display: none; }
.rail-track > * { flex: 0 0 78%; scroll-snap-align: start; }
@media (min-width: 700px) { .rail-track > * { flex-basis: calc((100% - var(--rail-gap)) / 2); } }
@media (min-width: 1040px) { .rail-track > * { flex-basis: calc((100% - 2 * var(--rail-gap)) / 3); } }
.rail-arrow { position: absolute; top: 38%; z-index: 5; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink); font-size: 22px; line-height: 1;
  box-shadow: 3px 3px 0 rgba(33, 26, 18, .12); transition: background .18s, color .18s, opacity .18s; }
.rail-arrow:hover { background: var(--ink); color: var(--paper); }
.rail-arrow.prev { left: -14px; }
.rail-arrow.next { right: -14px; }
.rail-arrow[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 700px) { .rail-arrow { display: none; } .tourplate .no-tag { display: none; } }

/* --- rodapé mais simples ------------------------------------------ */
.colo-grid { grid-template-columns: 1.3fr repeat(3, 1fr) 1.1fr; }
.colo-social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.colo-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--ink-2); transition: background .18s, color .18s, border-color .18s; }
.colo-social a:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.colo-social svg { width: 17px; height: 17px; fill: currentColor; }
.colo-social a.wide { width: auto; padding: 0 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.colo-sister { margin-top: 16px; font-size: 12.5px; }
.colo-sister a { color: var(--ink-2); }
.colo-sister a:hover { color: var(--terra); }
.colo-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.totop { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line-strong); padding: 9px 14px; transition: background .18s, color .18s, border-color .18s; }
.totop:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.totop span { transition: transform .2s var(--ease); }
.totop:hover span { transform: translateY(-2px); }
@media (max-width: 1000px) { .colo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .colo-grid { grid-template-columns: 1fr; } }

/* --- logótipos das plataformas de avaliação --------------------------- */
.colo-social a img { width: 18px; height: 18px; object-fit: contain; transition: filter .18s; }
/* as marcas ficam na sua cor — é assim que se reconhecem */
.colo-social a:has(img):hover { background: var(--paper); border-color: var(--ink); }
.btn-brand span { display: inline-flex; align-items: center; gap: 9px; }
.btn-brand img { width: 18px; height: 18px; object-fit: contain; }

/* ---------------- journal ---------------- */
.article-col { max-width: 800px; margin: 0 auto; }
.prose a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 600; }
.jlead { display: grid; grid-template-columns: 1.3fr 1fr; text-decoration: none; color: inherit; }
.jlead .plate-img { aspect-ratio: auto; min-height: 340px; height: 100%; }
.jlead-body { padding: clamp(22px, 3.4vw, 46px); display: flex; flex-direction: column; gap: 14px; justify-content: center; background: var(--paper); }
.jlead-body h2 { max-width: 18ch; }
.jlead-body p { color: var(--ink-2); font-size: 15px; max-width: 52ch; }
.jlead-body .tourplate-foot { margin-top: 4px; }
@media (max-width: 860px) {
    .jlead { grid-template-columns: 1fr; }
    .jlead .plate-img { aspect-ratio: 16/10; min-height: 0; height: auto; }
}

/* ---------------- faixa de avaliações (sob a capa) ---------------- */
.ratestrip { background: var(--paper); border-bottom: 1px solid var(--line); }
.ratestrip-in { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 3vw, 34px); flex-wrap: wrap; padding: 13px 0; }
.ratestrip-score { font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.ratestrip .stars { color: var(--terra); letter-spacing: .18em; }
.ratestrip-links { display: inline-flex; gap: 18px; }
.ratestrip-links a { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); text-decoration: none; }
.ratestrip-links a:hover { color: var(--ink); }
.ratestrip-links img { width: 16px; height: 16px; object-fit: contain; }

/* ---------------- balão sobre o Serengeti ---------------- */
.balloonband { position: relative; overflow: hidden; color: var(--bone); }
.balloonband .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.balloonband::after { content: ''; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(24, 18, 11, .08) 30%, rgba(24, 18, 11, .66) 88%); }
.balloonband-in { position: relative; z-index: 2; padding: clamp(120px, 20vw, 260px) 0 clamp(48px, 7vw, 88px); }
.balloonband .d1 { max-width: 15ch; }
.balloonband .lede { color: var(--bone); opacity: .92; max-width: 54ch; margin-top: 16px; text-shadow: 0 1px 14px rgba(0, 0, 0, .35); }

/* ---------------- cartões lodges / galeria ---------------- */
.promoplate { position: relative; display: block; overflow: hidden; color: var(--bone); }
.promoplate .plate-img { aspect-ratio: 16/9; }
.promoplate .plate-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(24, 18, 11, .74)); }
.promoplate .promotext { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(16px, 2.4vw, 26px); display: flex; flex-direction: column; gap: 4px; }
.promoplate .promotext .smallcaps { color: var(--bone); opacity: .85; }
.promoplate .promotext h3 { color: var(--bone); }
.promoplate .promo-go { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .85; margin-top: 6px; transition: opacity .2s; }
.promoplate:hover .promo-go { opacity: 1; }

/* ---------------- galeria: verticais a quebrar a grelha ---------------- */
.masonry figure:nth-child(7n+3) img,
.masonry figure:nth-child(11n+6) img { aspect-ratio: 3/4; object-fit: cover; }

/* ---------------- migração: as quatro estações ---------------- */
.seasonband { display: grid; grid-template-columns: minmax(300px, 460px) 1fr; gap: clamp(22px, 4vw, 54px); align-items: start; }
.seasonband-art .plate-img { aspect-ratio: 4/5.5; }
.seasonband-list { display: flex; flex-direction: column; }
.season-row { padding: 18px 0; border-top: 1px solid var(--line); }
.season-row:first-of-type { border-top: 0; }
.season-row h3 { font-family: var(--display); font-size: clamp(19px, 2.1vw, 24px); font-weight: 620; margin: 3px 0 5px; }
.season-row p { font-size: 14px; color: var(--ink-2); max-width: 56ch; }
@media (max-width: 900px) {
    .seasonband { grid-template-columns: 1fr; }
    .seasonband-art .plate-img { aspect-ratio: 16/10; }
}

/* página when-to-go */
.seasonfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 34px); }
.season-chapter { border: 1px solid var(--line-strong); background: var(--paper); box-shadow: var(--shadow); padding: clamp(20px, 3vw, 32px); scroll-margin-top: 120px; }
.season-chapter-head { margin-bottom: 12px; }
.season-chapter-body p { font-size: 15px; color: var(--ink-2); }
@media (max-width: 760px) { .seasonfolio { grid-template-columns: 1fr; } }

/* ---------------- banda de confiança (testemunhos) ---------------- */
.trustband { position: relative; overflow: hidden; color: var(--bone); text-align: center; }
.trustband .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.trustband::after { content: ''; position: absolute; inset: 0; background: rgba(24, 18, 11, .58); }
.trustband-in { position: relative; z-index: 2; padding: clamp(64px, 9vw, 130px) 0; max-width: 860px; }
.trustband .stars { color: var(--ochre); letter-spacing: .3em; font-size: 18px; }
.trustband .lede { color: var(--bone); opacity: .92; margin-inline: auto; max-width: 56ch; text-shadow: 0 1px 12px rgba(0, 0, 0, .4); }
.trust-scores { display: flex; gap: clamp(14px, 2.5vw, 26px); justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.trust-score { display: flex; flex-direction: column; gap: 6px; align-items: center; padding: 18px clamp(22px, 3vw, 40px); border: 1px solid rgba(244, 238, 225, .28); background: rgba(24, 18, 11, .38); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); text-decoration: none; color: var(--bone); transition: border-color .2s, background .2s; }
.trust-score:hover { border-color: rgba(244, 238, 225, .6); background: rgba(24, 18, 11, .55); }
.trust-score .src { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
.trust-score .src img { width: 18px; height: 18px; object-fit: contain; }
.trust-score .num { font-family: var(--display); font-weight: 640; font-size: clamp(30px, 3.4vw, 42px); line-height: 1; }
.trust-score .num small { font-size: .45em; opacity: .7; font-weight: 400; }
.trust-score .cnt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }

/* ---------------- língua no cabeçalho fixo ---------------- */
.langdrop > a { font-family: var(--mono); }
.langdrop-menu { min-width: 150px; left: auto; right: 0; transform: translate(0, 10px); }
.navdrop.langdrop:hover .langdrop-menu, .navdrop.langdrop:focus-within .langdrop-menu { transform: translate(0, 4px); }
.langdrop-menu a.onlang { color: var(--terra); font-weight: 600; }

/* estado «a enviar» do formulário */
.btn.sending { opacity: .78; pointer-events: none; }
.btn.sending span::after { content: ''; display: inline-block; width: 12px; height: 12px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; margin-left: 9px; vertical-align: -2px; animation: tzspin .7s linear infinite; }
@keyframes tzspin { to { transform: rotate(360deg); } }
