/* ==========================================================================
   We Love Chile · folha compartilhada das páginas de passeio (SEO landings)
   --------------------------------------------------------------------------
   Vive em /paginas/ e é consumida por páginas que moram em /<slug>/index.html.
   Por isso todo caminho de fonte aqui sai de ../assets/fonts/.

   Regras de marca que esta folha obedece (marca.md é a autoridade):
   fundo creme e nunca branco, cor de destino mandando no hero, forma-assinatura
   do arco, botão pill com sombra deslocada, Chalkiez no display e Lufga no
   corpo, estética scrapbook com rotação suave, zero emoji.
   ========================================================================== */

/* ---------- Fontes locais, nenhuma de CDN ---------- */
@font-face {
  font-family: 'Chalkiez';
  src: url('../assets/fonts/Chalkiez-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0020-007E;
}
/* Chalkiez não desenha acento. Chaloops cobre o pt-BR no mesmo estilo de giz. */
@font-face {
  font-family: 'Chalkiez';
  src: url('../assets/fonts/Chaloops-Bd.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0080-024F, U+1E00-1EFF;
}
@font-face { font-family: 'Lufga'; src: url('../assets/fonts/lufga-regular.otf') format('opentype');  font-weight: 400; font-display: swap; }
@font-face { font-family: 'Lufga'; src: url('../assets/fonts/lufga-medium.otf') format('opentype');   font-weight: 500; font-display: swap; }
@font-face { font-family: 'Lufga'; src: url('../assets/fonts/lufga-semibold.otf') format('opentype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Lufga'; src: url('../assets/fonts/lufga-bold.otf') format('opentype');     font-weight: 700; font-display: swap; }
@font-face { font-family: 'Lufga'; src: url('../assets/fonts/lufga-black.otf') format('opentype');    font-weight: 900; font-display: swap; }

:root {
  --cream:        #F3E8D5;
  --cream-soft:   #FAF3E6;
  --red:          #DB3A3D;
  --red-deep:     #B02026;
  --red-label:    #C93033;   /* fundo de rótulo pequeno sobre claro, passa AA */
  --yellow:       #F5B71C;
  --yellow-deep:  #D99512;
  --on-yellow:    #5C3D06;
  --blue:         #1E55B5;
  --navy:         #1B2A5E;
  --teal:         #0E6A6C;
  --purple:       #5A2246;
  --ink:          #1B2A5E;
  --muted:        #4A5D8A;   /* secundário sobre claro, sempre sólido */
  --muted-dark:   #D9E1F5;   /* secundário sobre navy */
  --eyebrow:      #B02E2F;
  --line:         rgba(27,42,94,.14);
  --font-sans-fb: ui-sans-serif, system-ui, -apple-system, sans-serif;
  --arco:         999px 999px 0 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: 'Lufga', var(--font-sans-fb);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--estreito { max-width: 820px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.pular-para-conteudo {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: var(--cream);
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: top .2s;
}
.pular-para-conteudo:focus { top: 12px; }

/* ---------- Cabeçalho ---------- */
.topo {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60;
}
.topo__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.topo__marca { font-family: 'Chalkiez', 'Lufga', var(--font-sans-fb); font-size: 25px; color: var(--ink); line-height: 1; padding: 10px 0; }
.topo__links { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
/* nowrap e flex-shrink 0: sem eles o botão Reservar encolhia até virar um
   círculo com o texto vazando para fora, no desktop estreito. */
.topo__links a { font-size: 14px; font-weight: 600; color: var(--ink); padding: 12px 0; white-space: nowrap; flex-shrink: 0; }
.topo__links a:hover { color: var(--red-deep); text-decoration: underline; text-underline-offset: 4px; }
/* Especificidade proposital: `.topo__links a` (classe + tipo) vence `.topo__cta`
   (só classe) e apagava o padding lateral do botão, que virava um círculo com o
   texto vazando. Ancorar no seletor completo resolve sem !important. */
.topo__links a.topo__cta {
  background: var(--red-label); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: 999px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.topo__links a.topo__cta:hover { background: var(--red-deep); color: #fff; text-decoration: none; }
@media (max-width: 800px) { .topo__links a:not(.topo__cta) { display: none; } }

/* ---------- Trilha de migalhas ---------- */
.migalhas { background: var(--cream); padding: 14px 0 0; }
.migalhas ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
.migalhas li::after { content: '·'; margin-left: 8px; color: var(--muted); }
.migalhas li:last-child::after { content: ''; }
.migalhas a { text-decoration: underline; text-underline-offset: 3px; }
.migalhas a:hover { color: var(--red-deep); }
.migalhas [aria-current] { font-weight: 600; color: var(--ink); }

/* ---------- Hero da página ---------- */
.hero {
  background: var(--red);
  color: var(--cream);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero--vinho  { background: var(--purple); }
.hero--oceano { background: var(--teal); }
.hero--neve   { background: var(--navy); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__selo {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--on-yellow);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Chalkiez', 'Lufga', var(--font-sans-fb);
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.02; letter-spacing: -.01em;
  color: var(--cream); margin-bottom: 16px; font-weight: 400;
}
.hero__linha { font-size: 18px; font-weight: 500; color: #fff; max-width: 46ch; margin-bottom: 26px; }
.hero__fatos { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero__fato {
  background: rgba(255,255,255,.16); color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
}
.hero__acoes { display: flex; flex-wrap: wrap; gap: 12px; }

/* Cartão de preço, o item que precisa estar acima da dobra */
.preco-card {
  background: var(--cream-soft); color: var(--ink);
  border-radius: 20px; padding: 26px 26px 22px;
  box-shadow: 0 16px 0 rgba(27,42,94,.20);
  transform: rotate(-1.2deg);
}
.preco-card__rotulo { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--eyebrow); }
.preco-card__valor { font-size: 44px; font-weight: 900; line-height: 1.05; margin: 4px 0 2px; }
.preco-card__unidade { font-size: 13px; color: var(--muted); font-weight: 600; }
.preco-card__lista { list-style: none; margin: 18px 0 0; border-top: 1px solid var(--line); padding-top: 14px; }
.preco-card__lista li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 6px 0; }
.preco-card__lista span:first-child { color: var(--muted); }
.preco-card__lista span:last-child { font-weight: 700; text-align: right; }
.preco-card__nota { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .hero { padding: 36px 0 52px; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .preco-card { transform: none; box-shadow: 0 12px 0 rgba(27,42,94,.20); }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 700; text-align: center;
  transition: transform .15s, background .2s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--principal { background: var(--yellow); color: var(--navy); box-shadow: 0 4px 0 var(--yellow-deep); }
.btn--principal:hover { background: var(--yellow-deep); box-shadow: 0 6px 0 rgba(27,42,94,.35); }
.btn--vermelho { background: var(--red-label); color: #fff; box-shadow: 0 4px 0 var(--red-deep); }
.btn--vermelho:hover { background: var(--red-deep); }
.btn--contorno { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.9); }
.btn--contorno:hover { background: rgba(255,255,255,.16); }
.btn--escuro { background: var(--navy); color: var(--cream); box-shadow: 0 4px 0 rgba(27,42,94,.4); }
.btn--bloco { width: 100%; }

/* ---------- Faixa de confiança ---------- */
.confianca { background: var(--navy); color: var(--muted-dark); padding: 18px 0; }
.confianca__inner { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; align-items: center; }
.confianca span { font-size: 13.5px; }
.confianca strong { color: var(--cream); font-weight: 700; }

/* ---------- Seções ---------- */
.secao { padding: 64px 0; }
.secao--creme-suave { background: var(--cream-soft); }
.secao__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--eyebrow); display: block; margin-bottom: 10px; }
.secao h2 {
  font-family: 'Chalkiez', 'Lufga', var(--font-sans-fb);
  font-size: clamp(30px, 4vw, 46px); line-height: 1.05; font-weight: 400;
  margin-bottom: 14px;
}
.secao h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
.secao p + p { margin-top: 14px; }
.secao__intro { font-size: 17px; color: var(--muted); max-width: 62ch; margin-bottom: 32px; }
.prosa p, .prosa li { font-size: 16.5px; }
.prosa p { margin-bottom: 16px; }
.prosa ul { margin: 0 0 18px 20px; }
.prosa li { margin-bottom: 8px; }
.prosa a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.prosa a:hover { color: var(--red-deep); }

/* ---------- Polaroid e figuras ---------- */
.polaroid { background: var(--cream-soft); padding: 12px 12px 16px; border-radius: 6px; box-shadow: 0 14px 30px rgba(27,42,94,.22); transform: rotate(1.4deg); }
.polaroid img { border-radius: 3px; }
.polaroid figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center; }
@media (max-width: 900px) { .polaroid { transform: none; } }

/* ---------- Grade de dois blocos ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }

/* ---------- Inclui e não inclui ---------- */
.inclui { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inclui__bloco { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.inclui__bloco h3 { font-size: 17px; margin-bottom: 14px; }
.inclui__bloco ul { list-style: none; }
.inclui__bloco li { display: flex; gap: 10px; font-size: 15px; padding: 7px 0; align-items: flex-start; }
.marca-ok, .marca-nao { flex: 0 0 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; margin-top: 2px; }
.marca-ok  { background: #0E6A6C; color: #fff; }
.marca-nao { background: #B02026; color: #fff; }
@media (max-width: 700px) { .inclui { grid-template-columns: 1fr; } }

/* ---------- Cartões de passeio ---------- */
.grade-passeios { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.passeio {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.passeio:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(27,42,94,.16); }
.passeio__foto { aspect-ratio: 4 / 3; background: #D9CDB6; overflow: hidden; }
.passeio__foto img { width: 100%; height: 100%; object-fit: cover; }
/* Passeio sem foto no catálogo: carimbo da marca no lugar do retângulo cinza. */
.passeio__sem-foto { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.passeio__sem-foto img { width: 72px; height: 72px; object-fit: contain; opacity: .5; }
.passeio__corpo { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.passeio__meta { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.passeio__nome { font-size: 18px; font-weight: 700; line-height: 1.25; margin-bottom: 8px; }
.passeio__resumo { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 16px; }
.passeio__rodape { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.passeio__preco-rotulo { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.passeio__preco { font-size: 21px; font-weight: 900; line-height: 1.1; }
.passeio__btn {
  background: var(--red-label); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 20px; border-radius: 999px; min-height: 44px;
  display: inline-flex; align-items: center;
}
.passeio__btn:hover { background: var(--red-deep); }

/* ---------- Âncoras de categoria ---------- */
.ancoras { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.ancoras a {
  background: var(--cream-soft); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; padding: 11px 18px; border-radius: 999px; min-height: 44px;
  display: inline-flex; align-items: center;
}
.ancoras a:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ---------- Roteiro hora a hora ---------- */
.roteiro { list-style: none; border-left: 2px dashed rgba(27,42,94,.28); margin-left: 8px; padding-left: 26px; }
.roteiro li { position: relative; padding-bottom: 24px; }
.roteiro li::before {
  content: ''; position: absolute; left: -34px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--cream);
}
.secao--creme-suave .roteiro li::before { border-color: var(--cream-soft); }
.roteiro__hora { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--eyebrow); }
.roteiro__titulo { font-size: 17px; font-weight: 700; margin: 2px 0 4px; }
.roteiro__texto { font-size: 15px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  background: var(--cream-soft); border: 1px solid var(--line);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-size: 16.5px; font-weight: 700; min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--red); flex: 0 0 auto; line-height: 1; }
.faq details[open] summary::after { content: '\2013'; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq__resposta { padding: 16px 22px 20px; font-size: 15.5px; color: var(--muted); }
.faq__resposta p + p { margin-top: 12px; }

/* ---------- Aviso honesto ---------- */
.aviso {
  background: #FFF6E0; border: 1px solid rgba(217,149,18,.5); border-left: 5px solid var(--yellow-deep);
  border-radius: 12px; padding: 18px 22px; font-size: 15px; color: #5C3D06;
}
.aviso strong { color: #4A3005; }

/* ---------- Bloco de reserva ---------- */
.reserva { background: var(--navy); color: var(--cream); border-radius: 24px; padding: 40px; }
.reserva h2 { color: var(--cream); }
.reserva p { color: var(--muted-dark); }
.reserva__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
/* min-width 0: item de grid nasce com min-width auto, e o <select> das vinícolas
   herdava a largura da opção mais longa ("Concha y Toro: Marquês de Casa
   Concha"), empurrando a página inteira 100px para fora da tela no celular. */
.reserva__campo { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.reserva__campo > * { max-width: 100%; }
.reserva__campo--largo { grid-column: 1 / -1; }
.reserva__campo label { font-size: 13px; font-weight: 700; color: var(--cream); }
.reserva__campo input, .reserva__campo select, .reserva__campo textarea {
  font: inherit; font-size: 15px; padding: 12px 14px; min-height: 48px;
  border-radius: 12px; border: 1px solid rgba(243,232,213,.35);
  background: rgba(243,232,213,.10); color: var(--cream);
}
.reserva__campo textarea { min-height: 88px; resize: vertical; }
.reserva__campo input::placeholder, .reserva__campo textarea::placeholder { color: rgba(217,225,245,.65); }
.reserva__campo select option { color: #1B2A5E; }
.reserva__nota { font-size: 13px; color: var(--muted-dark); margin-top: 14px; }
@media (max-width: 700px) { .reserva { padding: 28px 22px; } .reserva__form { grid-template-columns: 1fr; } }

/* ---------- Links relacionados ---------- */
.relacionados { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.relacionado {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; display: block; min-height: 44px;
}
.relacionado:hover { border-color: var(--red); box-shadow: 0 8px 20px rgba(27,42,94,.12); }
.relacionado strong { display: block; font-size: 17px; margin-bottom: 6px; }
.relacionado span { font-size: 14px; color: var(--muted); }

/* ---------- Rodapé ---------- */
.rodape { background: var(--navy); color: var(--muted-dark); padding: 52px 0 28px; margin-top: 0; }
.rodape__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.rodape__marca { font-family: 'Chalkiez', 'Lufga', var(--font-sans-fb); font-size: 26px; color: var(--cream); margin-bottom: 10px; }
.rodape p { font-size: 14px; }
.rodape__titulo { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.rodape ul { list-style: none; }
.rodape li { margin-bottom: 9px; }
.rodape a { font-size: 14.5px; }
.rodape a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.rodape__base { border-top: 1px solid rgba(243,232,213,.16); margin-top: 34px; padding-top: 20px; font-size: 13px; }
@media (max-width: 860px) { .rodape__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .rodape__grid { grid-template-columns: 1fr; } }

/* ---------- Barra fixa de conversão no celular ---------- */
.barra-mobile {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--cream-soft); border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -6px 20px rgba(27,42,94,.14);
}
.barra-mobile__preco { line-height: 1.15; }
.barra-mobile__preco small { display: block; font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.barra-mobile__preco strong { font-size: 20px; font-weight: 900; }
@media (max-width: 760px) {
  .barra-mobile { display: flex; }
  body { padding-bottom: 82px; }
}

/* ==========================================================================
   Avaliações reais (Google Meu Negócio + Tripadvisor)
   Preenchido em runtime a partir de window.WLC_RATINGS (data/depoimentos.js).
   Nunca hardcode nota ou contagem num HTML: se a nota mudar no Google, o
   número aqui muda sozinho na próxima geração/checagem, sem editar 6 páginas.
   ========================================================================== */
.avaliacoes-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.avaliacao-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--cream-soft); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 18px; min-height: 44px;
}
.avaliacao-badge:hover { border-color: var(--red); }
.avaliacao-badge__marca { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.avaliacao-badge__nota { font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1; }
.avaliacao-badge__estrelas { color: var(--yellow-deep); font-size: 14px; letter-spacing: 1px; }
.avaliacao-badge__contagem { font-size: 13px; color: var(--muted); }

/* ---------- Depoimentos reais ---------- */
.depoimentos-grade { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.depoimento {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.depoimento__estrelas { color: var(--yellow-deep); font-size: 14px; letter-spacing: 2px; }
.depoimento__titulo { font-size: 16px; font-weight: 700; line-height: 1.3; }
.depoimento__texto { font-size: 14.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.depoimento__rodape { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px; }
.depoimento__rodape strong { color: var(--ink); font-size: 13.5px; }
.depoimento__fonte {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); background: var(--cream); border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 999px;
}

/* ---------- Identificação legal (rodapé) ---------- */
.identificacao-legal {
  border-top: 1px solid rgba(243,232,213,.16); margin-top: 20px; padding-top: 18px;
  font-size: 12.5px; line-height: 1.7; color: var(--muted-dark);
}
.identificacao-legal strong { color: var(--cream); }
.identificacao-legal__linha { display: flex; flex-wrap: wrap; gap: 6px 8px; }
.identificacao-legal__selos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.identificacao-legal__selos a { text-decoration: underline; text-underline-offset: 3px; }
.identificacao-legal__selos a:hover { color: var(--cream); }

/* ---------- Política de cancelamento ---------- */
.politica-cancelamento {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 24px;
}
.politica-cancelamento h3 { font-size: 17px; margin-bottom: 10px; }
.politica-cancelamento p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.politica-cancelamento p + p { margin-top: 10px; }
