/* ================================================
   ConectaFortaleza — guia.css
   Paleta verde v1 · Mobile-first · Acessível
   ================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Helvetica, Arial, sans-serif;
  background: #F7F8FA;
  color: #1A1A2E;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a      { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── VARIÁVEIS ── */
:root {
  --g-dark:  #085041;
  --g-mid:   #0F6E56;
  --g:       #1D9E75;
  --g-light: #5DCAA5;
  --g-pale:  #9FE1CB;
  --g-bg:    #E1F5EE;

  --text-1:  #fff;
  --text-2:  #FCEBEB;
  --text-3:  #9CA3AF;

  --border:    #262625;
  --bg-white:  #464646;
  --bg-grey:   #ffff;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-pill: 999px;

  --shadow-s: 0 1px 4px rgba(0,0,0,.08);
  --shadow-m: 0 4px 18px rgba(0,0,0,.11);
  --trans: all .2s ease;
}

/* ── UTILITÁRIOS ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #30302E;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,.13); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 12px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--g); }

.nav-links { display: none; flex: 1; gap: 2px; }
.nav-link {
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--g-mid); background: var(--g-bg); font-weight: 500; }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.btn-outline {
  font-size: 13px; font-weight: 500;
  color: var(--g-mid);
  border: 1.5px solid var(--g-light);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  transition: var(--trans);
}
.btn-outline:hover { background: var(--g-bg); }
.btn-fill {
  font-size: 13px; font-weight: 600;
  color: #fff; background: var(--g);
  padding: 7px 16px; border-radius: var(--r-pill);
  transition: var(--trans); white-space: nowrap;
}
.btn-fill:hover { background: var(--g-mid); }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-links.open {
  display: flex; flex-direction: column;
  position: absolute; top: 56px; left: 0; right: 0;
  background: var(--bg-white);
  padding: 12px 16px 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-m);
  z-index: 199;
  animation: slideDown .2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .nav-links { display: flex; position: static; box-shadow: none; padding: 0; border: none; animation: none; }
  .hamburger { display: none; }
}

/* ════════════════════════════════
   BREADCRUMB
════════════════════════════════ */
.breadcrumb {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-3);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 6px; }
.bc-link { color: var(--g); transition: var(--trans); }
.bc-link:hover { color: var(--g-mid); }
.bc-sep { color: var(--border); }
.bc-current { color: var(--text-1); font-weight: 500; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #E1F5EE 0%, #c5ede1 100%);
  padding: 36px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -80px; bottom: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(29,158,117,.07);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--g-mid); background: var(--g-pale);
  padding: 4px 14px; border-radius: var(--r-pill);
  margin-bottom: 14px; letter-spacing: .02em;
}
.hero-title {
  font-size: clamp(22px, 4.5vw, 36px);
  font-weight: 700; color: var(--g-dark);
  line-height: 1.22; margin-bottom: 10px;
}
.hero-title span { color: var(--g); }
.hero-sub {
  font-size: 14px; color: var(--g-mid);
  margin-bottom: 22px; max-width: 520px;
}

/* Barra de busca */
.search-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  background: #30302E; border: 2px solid var(--g-light);
  border-radius: var(--r-lg);
  padding: 6px 6px 6px 12px; gap: 8px;
  max-width: 640px; box-shadow: var(--shadow-m);
  margin-bottom: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.search-bar:focus-within {
  border-color: var(--g);
  box-shadow: 0 0 0 4px rgba(29,158,117,.15);
}
.s-icon { color: var(--g-pale); flex-shrink: 0; display: flex; }
.s-input {
  flex: 1; min-width: 120px;
  border: none; outline: none;
  font-size: 14px; color: var(--text-1); background: transparent;
}
.s-input::placeholder { color: var(--g-pale); }
.s-loc-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: var(--g);
  background: var(--g-bg); border: none;
  padding: 6px 12px; border-radius: var(--r-md);
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: var(--trans);
}
.s-loc-btn:hover { background: var(--g-pale); }
.s-btn {
  font-size: 13px; font-weight: 600;
  color: var(--g-dark); background: var(--g-light);
  padding: 10px 20px; border-radius: var(--r-md);
  border: none; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: var(--trans);
}
.s-btn:hover { background: var(--g); color: #fff; }

@media (max-width: 500px) {
  .search-bar { padding: 8px; flex-wrap: wrap; }
  .s-input { width: 100%; order: 1; }
  .s-loc-btn { order: 2; }
  .s-btn { order: 3; width: 100%; text-align: center; }
}

/* Stats hero */
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; }
.hstat-val { font-size: 24px; font-weight: 700; color: var(--g-dark); line-height: 1; }
.hstat-label { font-size: 11px; color: var(--g-mid); margin-top: 3px; }

/* ════════════════════════════════
   TABS DE CATEGORIA
════════════════════════════════ */
.cat-tabs-wrap {
  background: #30302E;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 56px; z-index: 90;
}
.cat-tabs {
  display: flex; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.ctab {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 13px 16px; cursor: pointer;
  border: none; border-bottom: 2px solid transparent;
  background: none; white-space: nowrap; flex-shrink: 0;
  transition: color .2s, border-color .2s;
}
.ctab:hover { color: var(--g); }
.ctab.active { color: var(--g); border-bottom-color: var(--g); }
.ctab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ctab-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.ctab-count {
  font-size: 10px; font-weight: 600;
  color: var(--g-mid); background: var(--g-bg);
  padding: 2px 7px; border-radius: var(--r-pill);
}

/* ════════════════════════════════
   FILTRO MOBILE BAR
════════════════════════════════ */
.filter-mobile-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 4px;
}
.btn-filter-mobile {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--g-mid);
  background: var(--g-bg); border: 1px solid var(--g-pale);
  padding: 8px 16px; border-radius: var(--r-pill);
  cursor: pointer; transition: var(--trans);
}
.btn-filter-mobile:hover { background: var(--g-pale); }
.filter-count-badge {
  font-size: 10px; font-weight: 700;
  color: #fff; background: var(--g);
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.resultado-mob { font-size: 13px; color: var(--text-2); }

@media (min-width: 900px) { .filter-mobile-bar { display: none; } }

/* ════════════════════════════════
   BODY LAYOUT
════════════════════════════════ */
.body-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding-top: 16px;
  padding-bottom: 40px;
}
@media (min-width: 900px) {
  .body-layout { grid-template-columns: 240px 1fr; gap: 20px; }
}

/* ════════════════════════════════
   SIDEBAR
════════════════════════════════ */
.sidebar {
  background: #30302E;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  position: fixed; top: 0; left: -100%; bottom: 0;
  width: 85%; max-width: 320px;
  z-index: 300; overflow-y: auto;
  transition: left .3s ease;
  box-shadow: var(--shadow-m);
}
.sidebar.open { left: 0; }

@media (min-width: 900px) {
  .sidebar {
    position: sticky; top: 80px;
    left: auto; width: auto; max-width: none;
    box-shadow: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}

.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 299;
}
.sidebar-overlay.show { display: block; }

.sidebar-header {
  display: flex; align-items: center;
  margin-bottom: 16px; gap: 8px;
}
.sidebar-title { font-size: 15px; font-weight: 600; color: var(--text-1); flex: 1; }
.fg-clear-all {
  font-size: 11px; color: var(--g);
  cursor: pointer; background: none; border: none; padding: 0;
  transition: var(--trans);
}
.fg-clear-all:hover { color: var(--g-mid); }
.sidebar-close {
  font-size: 16px; color: var(--text-3);
  cursor: pointer; padding: 4px 8px; border-radius: var(--r-sm);
  transition: var(--trans);
}
.sidebar-close:hover { background: var(--bg-grey); color: var(--text-1); }
@media (min-width: 900px) { .sidebar-close { display: none; } }

/* Grupos de filtro */
.filter-group {
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.filter-group:last-of-type { border-bottom: none; margin-bottom: 0; }

.fg-title {
  font-size: 13px; font-weight: 600; color: var(--text-1);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.fg-clear { font-size: 10px; color: var(--g); cursor: pointer; font-weight: 400; }

.filter-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer;
}
.filter-opt:hover .f-label { color: var(--text-1); }

.fcheck, .fradio {
  width: 16px; height: 16px;
  border: 2px solid var(--border); flex-shrink: 0;
  transition: var(--trans);
}
.fcheck { border-radius: 4px; }
.fradio { border-radius: 50%; }
.fcheck.on, .fradio.on { background: var(--g); border-color: var(--g); }

.f-label { font-size: 13px; color: var(--text-2); transition: var(--trans); }
.f-label.on { color: var(--text-1); font-weight: 500; }
.f-count { font-size: 11px; color: var(--text-3); margin-left: auto; }

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
  font-size: 11px; color: var(--text-2);
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: var(--r-pill);
  cursor: pointer; transition: var(--trans);
}
.tag-pill:hover { border-color: var(--g-pale); color: var(--g-mid); }
.tag-pill.on { color: var(--g-mid); background: var(--g-bg); border-color: var(--g-pale); }

/* Botões sidebar */
.sidebar-btns { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.btn-aplicar {
  width: 100%; font-size: 13px; font-weight: 600;
  color: #fff; background: var(--g);
  padding: 10px; border-radius: var(--r-md);
  border: none; cursor: pointer; transition: var(--trans);
}
.btn-aplicar:hover { background: var(--g-mid); }
.btn-limpar {
  width: 100%; font-size: 12px; font-weight: 500;
  color: var(--g-mid); background: transparent;
  padding: 9px; border-radius: var(--r-md);
  border: 1px solid var(--g-pale); cursor: pointer; transition: var(--trans);
}
.btn-limpar:hover { background: var(--g-bg); }

/* ════════════════════════════════
   LISTAGEM
════════════════════════════════ */
.listagem { min-width: 0; }

.list-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px; gap: 10px; flex-wrap: wrap;
}
.list-resultado { font-size: 13px; color: #0F6E56; }
.list-resultado strong { color: #085041; }

.list-controls { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sort-label { font-size: 12px; color: var(--text-3); white-space: nowrap; }
.sort-sel {
  font-size: 12px; color: var(--text-1);
  border: 1px solid var(--border); background: var(--bg-white);
  padding: 5px 10px; border-radius: var(--r-md);
  cursor: pointer; outline: none;
}
.sort-sel:focus { border-color: var(--g); }

.mapa-toggle-btn {
  font-size: 11px; font-weight: 500;
  color: var(--g-mid); background: var(--g-bg);
  border: 1px solid var(--g-pale);
  padding: 5px 12px; border-radius: var(--r-pill);
  cursor: pointer; white-space: nowrap; transition: var(--trans);
}
.mapa-toggle-btn:hover { background: var(--g-pale); }
.mapa-toggle-btn.hidden { background: var(--bg-grey); color: var(--text-3); border-color: var(--border); }

.toggle-view { display: flex; gap: 4px; }
.tv {
  width: 30px; height: 30px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); cursor: pointer;
  color: var(--text-3); transition: var(--trans);
}
.tv:hover { background: var(--g-bg); color: var(--g); border-color: var(--g-pale); }
.tv.active { background: var(--g-bg); border-color: var(--g-pale); color: var(--g); }

/* ════════════════════════════════
   MAPA
════════════════════════════════ */
.mapa-card {
  background: #30302E;
  border: 1px solid #5DCAA5;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--trans);
}
.mapa-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.mapa-title { font-size: 13px; font-weight: 500; color: var(--text-1); }
.mapa-count { color: var(--g); }
.mapa-inner-toggle {
  font-size: 11px; color: var(--g);
  cursor: pointer; background: none; border: none;
  padding: 0; transition: var(--trans);
}
.mapa-inner-toggle:hover { color: var(--g-mid); }

.mapa-area {
  height: 180px; position: relative;
  background: #464646; overflow: hidden;
  transition: height .3s ease;
}
.mapa-area.collapsed { height: 0; border: none; }

.mapa-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
}

.mapa-pins { position: absolute; inset: 0; }

.mapa-pin-wrap {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
  transition: transform .15s;
}
.mapa-pin-wrap:hover { transform: scale(1.15); z-index: 10; }
.mapa-pin-emoji { font-size: 18px; line-height: 1; }
.mapa-pin-lbl {
  font-size: 9px; color: var(--g-dark);
  background: var(--g-bg);
  border: 1px solid var(--g-pale);
  padding: 2px 6px; border-radius: 3px;
  white-space: nowrap; margin-top: 2px;
  box-shadow: var(--shadow-s);
}

.mapa-zoom {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.zoom-btn {
  width: 28px; height: 28px; border-radius: var(--r-md);
  background: var(--bg-white); border: 1px solid var(--border);
  font-size: 16px; font-weight: 500; color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-s); transition: var(--trans);
}
.zoom-btn:hover { background: var(--g-bg); color: var(--g); border-color: var(--g-pale); }

.mapa-hint {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 10px; color: var(--text-3);
  background: rgba(255,255,255,.8);
  padding: 3px 8px; border-radius: var(--r-sm);
  pointer-events: none;
}

/* Tooltip do pin */
.pin-tooltip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: none;
  animation: slideUp .2s ease;
}
.pin-tooltip.show { display: flex; align-items: center; gap: 10px; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pt-emoji { font-size: 22px; flex-shrink: 0; }
.pt-info { flex: 1; min-width: 0; }
.pt-name { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 2px; }
.pt-meta { font-size: 11px; color: var(--text-2); }
.pt-stars { font-size: 11px; color: #BA7517; }
.pt-btn {
  font-size: 11px; font-weight: 500;
  color: var(--g-mid); background: var(--g-bg);
  border: 1px solid var(--g-pale);
  padding: 6px 14px; border-radius: var(--r-md);
  cursor: pointer; white-space: nowrap; transition: var(--trans);
}
.pt-btn:hover { background: var(--g-pale); }
.pt-close {
  font-size: 16px; color: var(--text-3);
  cursor: pointer; padding: 4px; transition: var(--trans);
}
.pt-close:hover { color: var(--text-1); }

/* ════════════════════════════════
   DESTAQUE STRIP
════════════════════════════════ */
.destaque-strip {
  background: var(--g-bg);
  border: 1px solid var(--g-pale);
  border-radius: var(--r-lg);
  padding: 12px 14px;
  margin-bottom: 16px;
}
.ds-label {
  font-size: 11px; font-weight: 600; color: var(--g-mid);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px;
}
.ds-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.ds-scroll::-webkit-scrollbar { display: none; }

.ds-card {
  background: var(--bg-white); border: 1px solid var(--g-light);
  border-radius: var(--r-md); padding: 10px 12px;
  min-width: 160px; flex-shrink: 0; cursor: pointer;
  transition: var(--trans);
}
.ds-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
.ds-img {
  height: 60px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; overflow: hidden;
}
.ds-img svg,
.pcard-img svg,
.lcard-img svg,
.ng-cover svg {
  width: 28px; height: 28px;
  stroke: #fff; fill: none;
  flex-shrink: 0;
}
.ds-name { font-size: 12px; font-weight: 600; color: var(--text-1); margin-bottom: 2px; }
.ds-sub  { font-size: 10px; color: var(--text-2); margin-bottom: 4px; }
.ds-star { font-size: 10px; color: #BA7517; margin-bottom: 6px; }
.ds-entrada { font-size: 10px; font-weight: 500; color: var(--g); margin-bottom: 6px; }
.ds-btn {
  display: block; text-align: center;
  font-size: 10px; font-weight: 500; color: var(--g-mid);
  background: var(--g-bg); padding: 4px; border-radius: var(--r-sm);
}

/* ════════════════════════════════
   VIEWS TOGGLE
════════════════════════════════ */
.view-grid .cards-list { display: none; }
.view-list .cards-grid { display: none; }

/* ════════════════════════════════
   GRID VIEW
════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 600px)  { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.pcard {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: var(--trans);
}
.pcard:hover { box-shadow: var(--shadow-m); border-color: var(--g-pale); transform: translateY(-2px); }
.pcard.featured { border: 2px solid var(--g-light); }

.pcard-img {
  height: 90px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pcard-badges {
  position: absolute; top: 7px; right: 7px; display: flex; gap: 4px; flex-wrap: wrap;
}
.pb {
  font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: var(--r-pill);
}
.pb-dest { background: #EEEDFE; color: #3C3489; }
.pb-aberto { background: var(--g-bg); color: var(--g-mid); }
.pb-fechado { background: #FCEBEB; color: #791F1F; }

.pcard-body { padding: 10px 12px 12px; }
.pc-name  { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 2px; }
.pc-cat   { font-size: 11px; color: var(--text-2); margin-bottom: 2px; }
.pc-loc   { font-size: 10px; color: var(--text-3); margin-bottom: 4px; }
.pc-stars { font-size: 11px; color: #BA7517; margin-bottom: 4px; }
.pc-entrada { font-size: 11px; color: var(--g); font-weight: 500; margin-bottom: 8px; }
.pc-tags  { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.pctag {
  font-size: 9px; color: var(--text-2);
  border: 1px solid var(--border);
  padding: 2px 7px; border-radius: var(--r-pill);
}
.pc-btn {
  display: block; text-align: center;
  font-size: 11px; font-weight: 600; color: var(--g-mid);
  background: var(--g-bg); padding: 8px;
  border-radius: var(--r-md); transition: var(--trans);
}
.pc-btn:hover { background: var(--g-pale); }

/* ════════════════════════════════
   LIST VIEW
════════════════════════════════ */
.cards-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.lcard {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 14px 16px;
  display: flex; gap: 14px; cursor: pointer; transition: var(--trans);
}
.lcard:hover { box-shadow: var(--shadow-m); border-color: var(--g-pale); }
.lcard.featured { border: 2px solid var(--g-light); }

.lcard-img {
  width: 72px; height: 72px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.lcard-main { flex: 1; min-width: 0; }
.lcard-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px; margin-bottom: 2px;
}
.lcard-name   { font-size: 14px; font-weight: 700; color: var(--text-1); }
.lcard-entrada{ font-size: 12px; font-weight: 600; color: var(--g); white-space: nowrap; }
.lcard-cat    { font-size: 12px; color: var(--text-2); margin-bottom: 4px; }
.lcard-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 11px; color: var(--text-3); margin-bottom: 8px;
}
.lcard-star { color: #BA7517; }
.lcard-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.lcard-btn {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--g-mid); background: var(--g-bg);
  border: 1px solid var(--g-pale);
  padding: 6px 16px; border-radius: var(--r-md); transition: var(--trans);
}
.lcard-btn:hover { background: var(--g-pale); }

/* ════════════════════════════════
   PAGINAÇÃO
════════════════════════════════ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap; margin-top: 8px;
}
.page-btn {
  min-width: 34px; height: 34px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #085041;
  border: 1px solid var(--border); cursor: pointer;
  transition: var(--trans); padding: 0 8px;
}
.page-btn:hover { background: var(--g-bg); border-color: var(--g-pale); color: var(--g); }
.page-btn.active { background: var(--g); color: #fff; border-color: var(--g); font-weight: 600; }
.page-btn.arr { color: var(--g); font-size: 16px; }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }
.page-ellipsis { font-size: 13px; color: var(--text-3); padding: 0 4px; }

/* ════════════════════════════════
   FOOTER MINI
════════════════════════════════ */
.footer-mini {
  background: #30302E; border-top: 1px solid var(--border);
  padding: 16px 0; margin-top: 16px;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.fm-logo { font-size: 15px; font-weight: 700; color: var(--text-1); }
.fm-logo span { color: var(--g); }
.fm-links { display: flex; flex-wrap: wrap; gap: 16px; }
.fm-link { font-size: 12px; color: var(--text-3); transition: var(--trans); }
.fm-link:hover { color: var(--g); }

/* ════════════════════════════════
   ANIMAÇÕES
════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.shake { animation: shake .4s ease; }
