:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --text-primary: #1a1916;
  --text-secondary: #6b6860;
  --text-tertiary: #9e9b96;
  --blue: #1a5fb4;
  --blue-light: #deeaf8;
  --blue-mid: #3778c2;
  --green: #1a7a52;
  --green-light: #daf0e5;
  --green-mid: #26a269;
  --amber: #7a4b00;
  --amber-light: #fdf0d3;
  --amber-mid: #c07a00;
  --red: #a51d2d;
  --red-light: #fde0e3;
  --purple: #4a3898;
  --purple-light: #ece8fc;
  --orange: #9a3d0c;
  --orange-light: #fce8dc;
  --orange-mid: #c64a14;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --nav-h: 58px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-mid);
  transition: background 0.3s;
}

.brand-dot.evento-active { background: var(--orange-mid); }

.brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand-city {
  font-size: 13px;
  color: var(--text-tertiary);
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-link:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--text-primary); font-weight: 500; background: rgba(0,0,0,0.06); }

.evento-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.evento-btn:hover { border-color: var(--orange-mid); color: var(--orange); }
.evento-btn.on { background: var(--orange-mid); color: #fff; border-color: var(--orange-mid); }

.evento-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

main { max-width: 900px; margin: 0 auto; padding: 0 1.5rem 4rem; }

/* HERO */
.hero {
  padding: 3.5rem 0 2.5rem;
  animation: fadeUp 0.5s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  width: fit-content;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.hstat-val {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: 'DM Mono', monospace;
  color: var(--text-primary);
}

.hstat-lbl {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.hstat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  animation: fadeUp 0.5s ease both;
}

.page-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.page-sub {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ALERTS */
.evento-alert {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--orange-light);
  border: 1px solid rgba(198,74,20,0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.3s ease;
}

.evento-alert.show { display: flex; }
.alert-icon { font-size: 18px; flex-shrink: 0; }
.alert-body { font-size: 13px; color: var(--orange); }
.alert-body strong { color: var(--orange); }

.ops-alert-ok {
  background: var(--green-light);
  border-color: rgba(38,162,105,0.25);
}

.ops-alert-ok .alert-body { color: var(--green); }
.ops-alert-ok .alert-body strong { color: var(--green); }

/* SECTION TITLES */
.section-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

/* HOW IT WORKS */
.how-section { margin-bottom: 3rem; animation: fadeUp 0.5s 0.1s ease both; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.step-icon { font-size: 24px; margin-bottom: 10px; }

.step-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ROUTES */
.routes-section { margin-bottom: 3rem; animation: fadeUp 0.5s 0.15s ease both; }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  transition: transform 0.2s;
}

.route-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.route-card.evento-only { display: none; }
.route-card.evento-only.show { display: block; border-color: rgba(198,74,20,0.3); background: #fffaf8; }

.route-event-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 20px;
  border: 1px solid rgba(198,74,20,0.2);
}

.route-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.route-badge {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}

.route-badge.blue { background: var(--blue-light); color: var(--blue); }
.route-badge.green { background: var(--green-light); color: var(--green); }
.route-badge.purple { background: var(--purple-light); color: var(--purple); }
.route-badge.orange { background: var(--orange-light); color: var(--orange); }

.route-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }

.route-freq {
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.route-freq.blue { color: var(--blue); }
.route-freq.green { color: var(--green); }
.route-freq.purple { color: var(--purple); }
.route-freq.orange { color: var(--orange); }

.route-stops { margin-bottom: 12px; }

.stop-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.stop-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  flex-shrink: 0;
}

.stop-dot.filled { background: var(--blue-mid); border-color: var(--blue-mid); }
.stop-dot.green-dot { border-color: var(--green-mid); }
.stop-dot.filled.green-dot { background: var(--green-mid); }
.stop-dot.purple-dot { border-color: var(--purple); }
.stop-dot.filled.purple-dot { background: var(--purple); }
.stop-dot.orange-dot { border-color: var(--orange-mid); }
.stop-dot.filled.orange-dot { background: var(--orange-mid); }

.route-hours {
  font-size: 11px;
  color: var(--text-tertiary);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* SCHEDULE */
.schedule-section { margin-bottom: 3rem; animation: fadeUp 0.5s 0.2s ease both; }

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}

.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 1.25rem;
}

.sched-item {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.sched-item.highlight { background: var(--blue-light); }
.sched-item.evento-sched { background: var(--orange-light); display: none; }
.sched-item.evento-sched.show { display: block; }

.sched-day { font-size: 12px; color: var(--text-tertiary); margin-bottom: 4px; }

.sched-item.highlight .sched-day { color: var(--blue); }
.sched-item.evento-sched .sched-day { color: var(--orange); }

.sched-time { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.sched-note { font-size: 11px; color: var(--text-tertiary); margin-top: 3px; }
.sched-item.highlight .sched-note { color: var(--blue); }
.sched-item.evento-sched .sched-note { color: var(--orange); }

.sched-footer {
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* DISPONIBILIDAD */
.disp-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.4s ease both;
}

.dmet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.dmet-val {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.dmet-val.green { color: var(--green); }
.dmet-val.red { color: var(--red); }
.dmet-lbl { font-size: 11px; color: var(--text-tertiary); margin-top: 3px; }

.disp-section { margin-bottom: 2rem; animation: fadeUp 0.4s 0.1s ease both; }
.disp-section.evento-only { display: none; }
.disp-section.evento-only.show { display: block; }

.disp-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.lot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  position: relative;
  transition: box-shadow 0.2s;
}

.lot-card.evento-card { border-color: rgba(198,74,20,0.2); background: #fffbf9; }
.lot-event-ribbon {
  position: absolute; top: 10px; right: 10px;
  font-size: 10px; font-weight: 500;
  background: var(--orange-light); color: var(--orange);
  padding: 2px 8px; border-radius: 20px;
}

.lot-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; gap: 8px; }
.lot-name { font-size: 14px; font-weight: 600; }
.lot-addr { font-size: 11px; color: var(--text-tertiary); margin-top: 2px; }

.lot-status { font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.green-status { background: var(--green-light); color: var(--green); }
.amber-status { background: var(--amber-light); color: var(--amber); }
.red-status { background: var(--red-light); color: var(--red); }

.lot-bar-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.lot-bar-track { flex: 1; height: 6px; background: var(--bg); border-radius: 3px; overflow: hidden; }

.lot-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--green-mid);
  transition: width 0.6s ease, background 0.4s;
}

.amber-fill { background: var(--amber-mid); }
.red-fill { background: #c0392b; }

.lot-nums { display: flex; align-items: baseline; gap: 2px; flex-shrink: 0; }
.lot-avail { font-size: 14px; font-weight: 600; font-family: 'DM Mono', monospace; color: var(--green); transition: color 0.3s; }
.amber-num { color: var(--amber); }
.red-num { color: var(--red); }
.lot-total { font-size: 11px; color: var(--text-tertiary); }

.lot-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.lot-tag { font-size: 10px; padding: 2px 7px; border-radius: 20px; }
.blue-tag { background: var(--blue-light); color: var(--blue); }
.green-tag { background: var(--green-light); color: var(--green); }
.purple-tag { background: var(--purple-light); color: var(--purple); }
.orange-tag { background: var(--orange-light); color: var(--orange); }

/* OPERACIONES */
.ops-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
  animation: fadeUp 0.4s ease both;
}

.ops-sum-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.ops-sum-val {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  letter-spacing: -0.02em;
}

.ops-sum-lbl { font-size: 11px; color: var(--text-tertiary); margin-top: 3px; }

.ops-section { margin-bottom: 2.5rem; animation: fadeUp 0.4s 0.1s ease both; }
.ops-section-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.ops-section-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 1.25rem; max-width: 600px; }

.agreements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.agreement-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s;
}

.agreement-card:hover { box-shadow: var(--shadow-sm); }
.active-agreement { border-color: rgba(38,162,105,0.3); background: #fbfffD; }
.info-card { border-style: dashed; }

.agr-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.agr-name { font-size: 14px; font-weight: 600; }
.agr-status { font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.active-status { background: var(--green-light); color: var(--green); }
.pending-status { background: var(--amber-light); color: var(--amber); }
.design-status { background: var(--blue-light); color: var(--blue); }

.agr-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-tertiary); }
.agr-dot { opacity: 0.4; }
.agr-spaces { font-weight: 500; color: var(--text-secondary); }
.agr-body { font-size: 12px; color: var(--text-secondary); line-height: 1.55; flex: 1; }
.agr-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); margin-top: auto; }
.agr-entity { font-size: 11px; color: var(--text-tertiary); }

.agr-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.agr-btn:hover { border-color: var(--green-mid); color: var(--green); }
.active-btn { background: var(--green-light); color: var(--green); border-color: var(--green-mid); }
.design-btn { cursor: default; opacity: 0.6; }

/* EVENT CONTROL */
.event-control-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.event-ctrl-title { font-size: 12px; font-weight: 500; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }

.event-ctrl-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.sys-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.inactive-dot { background: var(--text-tertiary); }
.active-sys-dot { background: var(--orange-mid); animation: pulse-dot 1.5s infinite; }

.event-checklist { display: flex; flex-direction: column; gap: 8px; }

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.chk-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
}

.pending-chk { border: 1.5px solid var(--border-strong); }
.done-chk { background: var(--green-mid); color: #fff; }
.done-chk::after { content: '✓'; }

.event-ctrl-right { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.big-evento-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.big-evento-btn:hover { border-color: var(--orange-mid); color: var(--orange); background: var(--orange-light); }
.big-evento-btn.on { background: var(--orange-mid); color: #fff; border-color: var(--orange-mid); }

.event-ctrl-note { font-size: 11px; color: var(--text-tertiary); text-align: center; max-width: 180px; line-height: 1.5; }

/* TIMELINE */
.steps-timeline { position: relative; padding-left: 28px; }
.steps-timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }

.tl-item {
  position: relative;
  padding: 0 0 1.5rem 1.25rem;
  opacity: 0.45;
}

.tl-item.active { opacity: 1; }
.tl-item.done { opacity: 0.8; }

.tl-dot {
  position: absolute;
  left: -21px;
  top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: var(--bg);
}

.tl-item.active .tl-dot { background: var(--blue-mid); border-color: var(--blue-mid); }
.tl-item.done .tl-dot { background: var(--green-mid); border-color: var(--green-mid); }

.tl-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.tl-body { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* FOOTER */
.sitefooter {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.footer-links { display: flex; gap: 12px; margin-left: auto; }
.footer-links a { font-size: 12px; color: var(--text-secondary); text-decoration: none; }
.footer-links a:hover { color: var(--text-primary); }
.footer-note { font-size: 11px; color: var(--text-tertiary); width: 100%; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 640px) {
  main { padding: 0 1rem 3rem; }
  .hero { padding: 2rem 0 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; width: 100%; }
  .hstat-div { display: none; }
  .disp-metrics, .ops-summary { grid-template-columns: repeat(2, 1fr); }
  .event-control-card { grid-template-columns: 1fr; }
  .event-ctrl-right { align-items: stretch; }
}

/* ── HAMBURGER NAV ──────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(247,246,243,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 0.75rem 1rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: fadeDown 0.2s ease;
}
.mobile-drawer.open { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.mobile-nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  display: block;
  transition: all 0.15s;
}
.mobile-nav-links a:hover { background: rgba(0,0,0,0.04); color: var(--text-primary); }
.mobile-nav-links a.active { background: rgba(0,0,0,0.06); color: var(--text-primary); font-weight: 500; }

.mobile-evento-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-evento-btn:hover { border-color: var(--orange-mid); color: var(--orange); }
.mobile-evento-btn.on { background: var(--orange-mid); color: #fff; border-color: var(--orange-mid); }

@media (max-width: 760px) {
  .topnav { padding: 0 1rem; height: var(--nav-h); }
  .nav-links { display: none; }
  .evento-btn { display: none; }
  .brand-city { display: none; }
  .hamburger { display: flex; }
}

/* Leaflet popup overrides */
.clean-popup .leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0;
}
.clean-popup .leaflet-popup-content { margin: 12px 14px; }
.clean-popup .leaflet-popup-tip-container { margin-top: -1px; }

/* Footer disclaimer */
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-tertiary);
  width: 100%;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.footer-disclaimer strong { color: var(--text-secondary); }
