/* =====================================================================
   BR Rest Mapas — tema claro, estilo app de mapas.
   Uma folha só, sem fonte externa (usa a fonte do sistema: SF, Segoe,
   Roboto), mobile-first, de 320 px a TV 4K.
   ===================================================================== */

:root {
  --bg: #f4f5f7;
  --sf: #ffffff;
  --sf-2: #f8f9fb;
  --ink: #0d1321;
  --ink-2: #3b4454;
  --ink-3: #6a7385;
  --line: #e3e6eb;
  --line-2: #eef0f3;

  --brand: #ff4d1c;
  --brand-2: #e2380b;
  --brand-bg: #fff1ec;
  --route: #0a6cff;
  --route-2: #0057d6;
  --route-bg: #eaf2ff;
  --ok: #0c9a61;
  --ok-bg: #e8f7f0;
  --warn: #b26a00;
  --warn-bg: #fff6e6;

  --r-s: 10px;
  --r: 16px;
  --r-l: 24px;
  --sh-1: 0 1px 2px rgba(13, 19, 33, .06), 0 1px 1px rgba(13, 19, 33, .04);
  --sh-2: 0 2px 6px rgba(13, 19, 33, .06), 0 12px 28px -10px rgba(13, 19, 33, .18);
  --sh-3: 0 6px 16px rgba(13, 19, 33, .08), 0 24px 56px -16px rgba(13, 19, 33, .28);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --wrap: 1240px;
  --gut: 16px;
  --top: 64px;
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--top) + 12px); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.55 var(--font); -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word; text-rendering: optimizeLegibility;
}
img, svg, iframe, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--route-2); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--route) 55%, transparent); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3 { margin: 0 0 .45em; line-height: 1.15; letter-spacing: -.025em; font-weight: 750; }
h1 { font-size: clamp(1.75rem, 1.2rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.9rem); }
h3 { font-size: 1.06rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select { font: inherit; color: inherit; }
.ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor;
       stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico-c { fill: currentColor; stroke: none; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 300; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sec { padding-block: clamp(36px, 5vw, 72px); }
.sec-s { padding-block: clamp(20px, 3vw, 36px); }
.muted { color: var(--ink-3); }
.lead { font-size: clamp(1rem, .96rem + .3vw, 1.15rem); color: var(--ink-2); max-width: 62ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700;
           letter-spacing: .08em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 10px; }

.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.sec-head h2 { margin: 0; }
.sec-head p { margin: 6px 0 0; color: var(--ink-3); max-width: 60ch; }
.sec-head .more { font-weight: 650; font-size: .92rem; white-space: nowrap; }

/* ---------------------------------------------------------------- topo */
.top { position: sticky; top: 0; z-index: 80; height: var(--top);
       background: rgba(255, 255, 255, .86); backdrop-filter: saturate(180%) blur(14px);
       -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.top-in { height: 100%; display: flex; align-items: center; gap: 14px; }
.logo { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); flex: none; }
.logo:hover { text-decoration: none; }
.logo svg { width: 28px; height: 30px; color: var(--brand); }
.logo b { font-size: 1.14rem; font-weight: 800; letter-spacing: -.04em; }
.logo span { font-weight: 400; color: var(--ink-3); font-size: 1.14rem; letter-spacing: -.03em; }
.top-nav { display: none; gap: 2px; margin-left: 8px; }
.top-nav a { color: var(--ink-2); font-weight: 600; font-size: .92rem; padding: 8px 12px; border-radius: 999px; }
.top-nav a:hover { background: var(--line-2); text-decoration: none; color: var(--ink); }
.top-nav a[aria-current] { color: var(--brand-2); }
.top-r { margin-left: auto; display: flex; align-items: center; gap: 8px; }
@media (min-width: 900px) { .top-nav { display: flex; } }

/* busca com autocompletar */
.sbox { position: relative; flex: 1 1 auto; max-width: 440px; }
.sbox input { width: 100%; height: 42px; padding: 0 14px 0 40px; border-radius: 999px;
              border: 1px solid var(--line); background: var(--sf-2); outline: none;
              transition: border-color .15s, box-shadow .15s, background .15s; }
.sbox input:focus { background: #fff; border-color: var(--route); box-shadow: 0 0 0 4px var(--route-bg); }
.sbox > .ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.top .sbox { display: none; }
@media (min-width: 720px) { .top .sbox { display: block; } }
.ac { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 90; background: #fff;
      border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-3); overflow: hidden; }
.ac[hidden] { display: none; }
.ac a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--ink); border-top: 1px solid var(--line-2); }
.ac a:first-child { border-top: 0; }
.ac a:hover, .ac a.on { background: var(--sf-2); text-decoration: none; }
.ac small { display: block; color: var(--ink-3); font-size: .8rem; }
.ac .ac-ico { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none;
              background: var(--brand-bg); color: var(--brand-2); }
.ac .ac-ico.c { background: var(--route-bg); color: var(--route-2); }

.ibtn { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
        display: inline-grid; place-items: center; color: var(--ink); cursor: pointer; }
.ibtn:hover { background: var(--sf-2); }
@media (min-width: 900px) { .ibtn.menu { display: none; } }
.drawer { position: fixed; inset: var(--top) 0 auto 0; z-index: 79; background: #fff; border-bottom: 1px solid var(--line);
          box-shadow: var(--sh-3); padding: 12px var(--gut) 18px; }
.drawer[hidden] { display: none; }
.drawer a { display: block; padding: 12px 4px; font-weight: 650; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.drawer .sbox { max-width: none; margin-bottom: 8px; }

/* -------------------------------------------------------------- botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px;
       padding: 0 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 650; font-size: .94rem;
       cursor: pointer; white-space: nowrap; transition: background .15s, box-shadow .15s, transform .1s;
       background: var(--brand); color: #fff; }
.btn:hover { background: var(--brand-2); text-decoration: none; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-route { background: var(--route); }
.btn-route:hover { background: var(--route-2); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { background: var(--sf-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: var(--line-2); color: var(--ink); }
.btn-glass { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.3); }
.btn-sm { min-height: 36px; padding: 0 13px; font-size: .86rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* --------------------------------------------------------- chips/selos */
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chips-wrap { flex-wrap: wrap; overflow: visible; }
.chip { display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; border-radius: 999px;
        background: #fff; border: 1px solid var(--line); color: var(--ink-2); font-weight: 600; font-size: .88rem;
        white-space: nowrap; cursor: pointer; flex: none; }
.chip:hover { border-color: var(--ink-3); color: var(--ink); text-decoration: none; }
.chip b { color: var(--ink-3); font-weight: 600; font-size: .8rem; }
.chip[aria-pressed="true"], .chip[aria-current] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip[aria-pressed="true"] b, .chip[aria-current] b { color: rgba(255,255,255,.7); }

.badge { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 10px; border-radius: 999px;
         font-size: .78rem; font-weight: 700; background: var(--line-2); color: var(--ink-2); white-space: nowrap; }
.badge-ok { background: var(--ok-bg); color: var(--ok); }
.badge-off { background: #f3f4f6; color: var(--ink-3); }
.badge-br { background: var(--brand-bg); color: var(--brand-2); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-ok .dot { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }

/* ------------------------------------------------------------- slider */
.hs { position: relative; background: #1a1f2b; overflow: hidden; }
.hs-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.hs-track::-webkit-scrollbar { display: none; }
.hs-slide { position: relative; flex: 0 0 100%; scroll-snap-align: start; height: clamp(360px, 58vh, 620px); }
.hs-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs::after { content: ""; position: absolute; inset: 0; pointer-events: none;
             background: linear-gradient(180deg, rgba(10,14,22,.08) 0%, rgba(10,14,22,.10) 35%, rgba(10,14,22,.78) 100%); }
.hs-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: #fff; padding-bottom: clamp(26px, 4vw, 48px); }
.hs-body h1 { color: #fff; max-width: 22ch; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hs-body .lead { color: rgba(255,255,255,.9); }
.hs-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.hs-meta .badge { background: rgba(255,255,255,.92); }
.hs-meta .badge-ok { background: #e3f8ee; }
.hs-nav { position: absolute; right: var(--gut); top: 16px; z-index: 3; display: flex; gap: 6px; }
.hs-nav button { width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9);
                 display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-1); color: var(--ink); }
.hs-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 12px; z-index: 3; display: flex; gap: 6px; }
.hs-dots span { width: 22px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.45); }
.hs-dots span.on { background: #fff; }
.hs-cred { position: absolute; right: 10px; top: 62px; z-index: 3; font-size: .68rem; max-width: 60%;
           background: rgba(0,0,0,.45); color: rgba(255,255,255,.88); padding: 3px 8px; border-radius: 6px;
           white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-cred a { color: inherit; }
.hs-ilus { position: absolute; left: 12px; top: 14px; z-index: 3; font-size: .7rem; font-weight: 700; letter-spacing: .04em;
           background: rgba(0,0,0,.5); color: #fff; padding: 4px 9px; border-radius: 6px; text-transform: uppercase; }

/* --------------------------------------------------------------- cards */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.grid-s { grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr)); }
.card { position: relative; background: var(--sf); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1);
        border: 1px solid var(--line); transition: box-shadow .18s, transform .18s; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
.card-img { position: relative; aspect-ratio: 16 / 10; background: var(--line-2); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .tag { position: absolute; left: 10px; top: 10px; }
.card-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.card h3 { margin: 0; font-size: 1rem; }
.card h3 a { color: var(--ink); }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card .meta { font-size: .86rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 4px 8px; }
.card .foot { margin-top: auto; padding-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; position: relative; z-index: 1; }

/* tile de foto com legenda sobreposta (cidades, cozinhas) */
.tile { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: #222;
        box-shadow: var(--sh-1); display: block; color: #fff; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.72)); }
.tile span { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1; }
.tile b { display: block; font-size: 1.08rem; letter-spacing: -.01em; }
.tile small { color: rgba(255,255,255,.85); font-size: .82rem; }
.tile:hover { text-decoration: none; }

/* ----------------------------------------------------------- lista/item */
.rows { display: flex; flex-direction: column; gap: 10px; }
.row { position: relative; display: flex; gap: 12px; align-items: stretch; background: var(--sf); border: 1px solid var(--line);
       border-radius: var(--r); padding: 10px; transition: border-color .15s, box-shadow .15s; }
.row:hover, .row.hl { border-color: var(--route); box-shadow: 0 0 0 3px var(--route-bg); }
.row-img { width: 96px; flex: none; border-radius: 12px; overflow: hidden; background: var(--line-2); aspect-ratio: 1; }
.row-img img { width: 100%; height: 100%; object-fit: cover; }
.row-b { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.row h3 { margin: 0; font-size: 1rem; }
.row h3 a { color: var(--ink); }
.row h3 a::after { content: ""; position: absolute; inset: 0; border-radius: var(--r); }
.row .meta { font-size: .85rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .acts { display: flex; gap: 6px; margin-top: auto; padding-top: 4px; position: relative; z-index: 1; flex-wrap: wrap; }
.row-n { position: absolute; left: 14px; top: 14px; z-index: 1; min-width: 22px; height: 22px; border-radius: 11px; padding: 0 6px;
         background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; display: grid; place-items: center; }
@media (min-width: 640px) { .row-img { width: 120px; } }

/* -------------------------------------------------------- app do mapa */
.app { position: relative; height: calc(100svh - var(--top)); min-height: 560px; max-height: 980px; background: #e8ecef; }
.app #mapa { position: absolute; inset: 0; }
.panel { position: absolute; z-index: 5; background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
         border-radius: var(--r-l); box-shadow: var(--sh-3); display: flex; flex-direction: column; overflow: hidden; }
.panel-h { padding: 18px 18px 12px; border-bottom: 1px solid var(--line-2); }
.panel-h h1 { font-size: 1.32rem; margin-bottom: 4px; }
.panel-h p { font-size: .88rem; color: var(--ink-3); margin: 0 0 12px; }
.panel-h .sbox { max-width: none; }
.panel-h .chips { margin-top: 12px; }
.panel-b { overflow-y: auto; padding: 10px 12px 14px; flex: 1; overscroll-behavior: contain; }
.panel-b h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin: 6px 6px 10px; font-weight: 700; }
.pl { display: flex; flex-direction: column; }
.pl a { display: flex; gap: 11px; align-items: center; padding: 8px 6px; border-radius: 12px; color: var(--ink); }
.pl a:hover, .pl a.hl { background: var(--sf-2); text-decoration: none; }
.pl img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex: none; background: var(--line-2); }
.pl .t { min-width: 0; flex: 1; }
.pl b { display: block; font-size: .94rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl small { color: var(--ink-3); font-size: .8rem; }
.pl .d { font-size: .8rem; font-weight: 700; color: var(--route-2); white-space: nowrap; }
.pl .pin { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none; background: var(--route-bg); color: var(--route-2); }
@media (min-width: 960px) {
  .panel { left: 20px; top: 20px; bottom: 20px; width: 390px; }
}
@media (max-width: 959px) {
  .app { height: auto; max-height: none; min-height: 0; display: flex; flex-direction: column; }
  .app #mapa { position: relative; height: 58svh; min-height: 340px; }
  .panel { position: relative; border-radius: var(--r-l) var(--r-l) 0 0; margin-top: -22px; box-shadow: 0 -8px 24px -12px rgba(0,0,0,.25); }
  .panel-b { max-height: none; }
}
.map-loc { position: absolute; z-index: 4; right: 12px; bottom: 32px; }
.maplibregl-popup-content { border-radius: 14px !important; padding: 0 !important; box-shadow: var(--sh-3) !important; font-family: var(--font); overflow: hidden; }
.pop { width: 240px; }
.pop img { width: 100%; height: 110px; object-fit: cover; }
.pop div { padding: 10px 12px 12px; }
.pop b { display: block; font-size: .96rem; line-height: 1.25; }
.pop small { color: var(--ink-3); }
.pop .btn-row { margin-top: 9px; }
.maplibregl-ctrl-attrib { font-size: 10px !important; }

/* --------------------------------------------------- lugar (lista+mapa) */
.lg { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: start; }
.lg-map { position: relative; border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line); background: #e8ecef; height: 420px; }
.lg-map #mapa { position: absolute; inset: 0; }
@media (min-width: 1024px) {
  .lg { grid-template-columns: minmax(0, 1fr) minmax(380px, 44%); gap: 24px; }
  .lg-map { position: sticky; top: calc(var(--top) + 16px); height: calc(100vh - var(--top) - 32px); order: 2; }
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }

/* ------------------------------------------------------------- números */
.stats { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--sf); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.stat b { display: block; font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); letter-spacing: -.03em; line-height: 1.1; }
.stat span { color: var(--ink-3); font-size: .86rem; }
.stats-hero { margin-top: -38px; position: relative; z-index: 4; }
.hs:has(+ .stats-hero) .hs-body { padding-bottom: 64px; }
.stats-hero .stat { box-shadow: var(--sh-2); border: 0; }

/* -------------------------------------------------------------- painéis */
.box { background: var(--sf); border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.box-h { padding: 16px 20px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.box-h h2 { font-size: 1.08rem; margin: 0; letter-spacing: -.01em; }
.box-b { padding: 18px 20px; }
.box-b > :last-child { margin-bottom: 0; }
.two { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .two { grid-template-columns: 1fr 1fr; gap: 22px; } }
.gmap { position: relative; aspect-ratio: 4 / 3; background: var(--line-2); }
@media (min-width: 900px) { .gmap { aspect-ratio: auto; height: 380px; } }
.gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.hrs { width: 100%; border-collapse: collapse; font-size: .94rem; }
.hrs th, .hrs td { padding: 9px 0; border-bottom: 1px solid var(--line-2); text-align: left; }
.hrs td { text-align: right; font-variant-numeric: tabular-nums; }
.hrs tr:last-child th, .hrs tr:last-child td { border: 0; }
.hrs th { font-weight: 600; color: var(--ink-2); }
.hrs .hoje th, .hrs .hoje td { color: var(--route-2); font-weight: 750; }
.hrs .fecha td { color: var(--ink-3); }
.now { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 14px 20px; border-bottom: 1px solid var(--line-2); }
.now b { font-size: 1.02rem; }
.now .ok { color: var(--ok); } .now .off { color: var(--ink-2); } .now .nd { color: var(--ink-3); }

.facts { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .facts { grid-template-columns: 1fr 1fr; } }
.fact { display: flex; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--line-2); align-items: flex-start; }
.fact .ico { color: var(--ink-3); margin-top: 3px; width: 1.25em; height: 1.25em; }
.fact dt { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.fact dd { margin: 2px 0 0; font-weight: 550; }

.note { display: flex; gap: 12px; align-items: flex-start; background: var(--sf-2); border: 1px solid var(--line);
        border-radius: var(--r); padding: 14px 16px; font-size: .9rem; color: var(--ink-2); }
.note .ico { color: var(--ink-3); margin-top: 2px; }
.note p { margin: 0; } .note p + p { margin-top: .5em; }
.note-warn { background: var(--warn-bg); border-color: #f4dcb0; }
.note-warn .ico { color: var(--warn); }

/* ----------------------------------------------------------------- FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--sf); border: 1px solid var(--line); border-radius: var(--r); padding: 0 18px; }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 650; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--ink-3); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); padding-bottom: 16px; margin: 0; }

.cols { columns: 2; column-gap: 24px; }
@media (min-width: 720px) { .cols { columns: 3; } }
@media (min-width: 1080px) { .cols { columns: 4; } }
.cols li { break-inside: avoid; padding: 5px 0; }
.cols a { color: var(--ink-2); }
.cols a:hover { color: var(--route-2); }
.cols span { color: var(--ink-3); font-size: .84rem; }

.prose { max-width: 70ch; color: var(--ink-2); }
.prose h2 { color: var(--ink); margin-top: 1.6em; }
.prose h3 { color: var(--ink); margin-top: 1.3em; }
.prose ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.prose li { margin-bottom: .35em; }

.crumbs { font-size: .82rem; color: var(--ink-3); padding-block: 12px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ink-3); }

.pag { display: flex; gap: 8px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.pag a, .pag span { min-width: 42px; height: 42px; display: inline-grid; place-items: center; padding: 0 12px;
                    border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 650; color: var(--ink-2); }
.pag [aria-current] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* passo a passo (home) */
.steps { display: grid; gap: 14px; grid-template-columns: 1fr; counter-reset: s; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--sf); border: 1px solid var(--line); border-radius: var(--r-l); padding: 22px; }
.step i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
          background: var(--route-bg); color: var(--route-2); font-style: normal; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-3); font-size: .94rem; }

/* barra de ação fixa no celular (página do estabelecimento) */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: flex; gap: 8px; padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.dock .btn { flex: 1; }
@media (min-width: 900px) { .dock { display: none; } }
.pg-biz { padding-bottom: 72px; }
@media (min-width: 900px) { .pg-biz { padding-bottom: 0; } }

/* ---------------------------------------------------------------- rodapé */
.foot { background: #fff; border-top: 1px solid var(--line); padding-block: 44px 28px; margin-top: 40px; font-size: .92rem; }
.foot-g { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .foot-g { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot-g > div:first-child { grid-column: 1 / -1; }
@media (min-width: 900px) { .foot-g > div:first-child { grid-column: auto; } }
.foot h2 { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 12px; }
.foot li { margin-bottom: 8px; }
.foot a { color: var(--ink-2); }
.foot-end { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line-2); display: flex; flex-wrap: wrap;
            justify-content: space-between; gap: 10px; color: var(--ink-3); font-size: .82rem; }

/* ------------------------------------------------------- consentimento */
.consent { position: fixed; z-index: 95; left: 12px; right: 12px; bottom: 12px; max-width: 420px; background: #fff;
           border-radius: var(--r); box-shadow: var(--sh-3); border: 1px solid var(--line); padding: 14px 16px; font-size: .86rem; }
@media (min-width: 600px) { .consent { left: auto; } }
.consent p { margin: 0 0 10px; color: var(--ink-2); }
.consent .btn-row .btn { flex: 1; min-height: 38px; }
.pg-biz .consent { bottom: 84px; }
@media (min-width: 900px) { .pg-biz .consent { bottom: 12px; } }

.ad { margin-block: 24px; text-align: center; }
.ad::before { content: "Publicidade"; display: block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }

/* ------------------------------------------------------------ TV / 4K */
@media (min-width: 1800px) { body { font-size: 18px; } :root { --wrap: 1560px; --top: 72px; } }
@media (min-width: 2600px) { body { font-size: 21px; } :root { --wrap: 1900px; } }

@media print {
  .top, .foot, .consent, .dock, .hs-nav, .lg-map, .gmap, .ad { display: none !important; }
  body { background: #fff; }
}
