/* ===================================================
   picoyplaca.com.co — Main Stylesheet
   Dark Premium | Colombian Plate Accent
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@600;700&display=swap');

/* ── TOKENS ── */
:root {
  --bg:           #08090e;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-h:    rgba(255,255,255,0.08);
  --border:       rgba(255,255,255,0.08);
  --border-h:     rgba(255,193,7,0.4);
  --plate-yellow: #ffc107;
  --plate-dark:   #1a1200;
  --text-1:       #f0f0f8;
  --text-2:       #9090b0;
  --text-3:       #606080;
  --green:        #22c55e;
  --green-bg:     rgba(34,197,94,0.12);
  --red:          #ef4444;
  --red-bg:       rgba(239,68,68,0.12);
  --orange:       #f97316;
  --orange-bg:    rgba(249,115,22,0.12);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --transition:   0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  background: radial-gradient(circle at 15% 25%, #131422 0%, var(--bg) 50%),
              radial-gradient(circle at 85% 75%, #1a1610 0%, var(--bg) 50%);
  background-attachment: fixed;
  color: var(--text-1);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo: estilo placa colombiana */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--plate-dark);
  flex-shrink: 0;
}
.logo-plate {
  background: var(--plate-yellow);
  padding: 4px 14px;
  border-radius: 6px;
  border: 2px solid var(--plate-dark);
  position: relative;
  box-shadow: 0 2px 8px rgba(255,193,7,0.3);
}
.logo-plate::before {
  content: '';
  position: absolute; inset: 2px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  pointer-events: none;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-2);
  white-space: nowrap;
}

/* City selector */
.city-select-wrap {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.05); /* Glass variant */
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  transition: border-color var(--transition), background var(--transition);
}
.city-select-wrap:focus-within { border-color: var(--plate-yellow); background: rgba(255,193,7,0.05); }
.city-select-wrap svg { color: var(--text-3); flex-shrink: 0; }
.city-select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-1);
  font-size: 0.875rem;
  font-family: inherit;
  padding: 10px 4px;
  cursor: pointer;
  min-width: 160px;
}
.city-select option { background: #13141f; color: var(--text-1); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-1);
  background: var(--bg-card-h);
}
.nav-cta {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--plate-yellow);
  color: var(--plate-dark);
  transition: opacity var(--transition), transform var(--transition);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; color: var(--text-2); cursor: pointer; padding: 4px; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(8,9,14,0.95);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 12px; border-radius: 8px; font-size: 0.9rem; color: var(--text-2); }
.mobile-menu a:hover { background: var(--bg-card); color: var(--text-1); }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plate-yellow);
  margin-bottom: 1rem;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--plate-yellow); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #c0c0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, var(--plate-yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Live clock */
.live-clock {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--text-2);
}
.live-clock .time { font-weight: 700; color: var(--text-1); font-variant-numeric: tabular-nums; }
.live-clock .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }

/* ── AD SLOT ── */
.ad-slot {
  background: rgba(255,255,255,0.025);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 0.75rem;
  text-align: center;
}
.ad-slot-banner { height: 90px; margin: 1rem 1.5rem; }
.ad-slot-rect { height: 250px; width: 100%; }
.ad-slot-leaderboard { height: 90px; width: 100%; }

/* ── MAIN CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION HEADING ── */
.section-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.25rem;
}
.section-head h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}
.section-head::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}

/* ── CITIES GRID ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 2.5rem;
}
.city-card {
  background: rgba(255, 255, 255, 0.03); /* Glass integration */
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.875rem;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.city-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-h);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.city-card-icon { font-size: 1.5rem; line-height: 1; }
.city-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
}
.city-card-dept {
  font-size: 0.72rem;
  color: var(--text-3);
}
.city-card-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  width: fit-content;
}
.status-active { background: var(--red-bg); color: var(--red); }
.status-free   { background: var(--green-bg); color: var(--green); }

/* ── CATEGORIES GRID ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 2.5rem;
}
.cat-card {
  background: rgba(255, 255, 255, 0.03); /* Glass integration */
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-h);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.cat-icon { font-size: 1.6rem; flex-shrink: 0; }
.cat-info { flex: 1; min-width: 0; }
.cat-name { font-size: 0.85rem; font-weight: 600; color: var(--text-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-count { font-size: 0.72rem; color: var(--text-3); }

/* ── CITY PAGE ── */
.city-hero {
  padding: 2.5rem 1.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-3); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--plate-yellow); }
.breadcrumb-sep { color: var(--text-3); }
.breadcrumb-current { color: var(--text-2); }

.city-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.city-hero-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.hero-date-item {
  display: flex;
  align-items: center;
}
.dept-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-2);
  text-decoration: none;
  transition: border-color var(--transition);
}
.dept-tag:hover { border-color: var(--plate-yellow); color: var(--plate-yellow); }

/* Category selector pills */
.cat-pills-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 1.25rem 0 1.5rem 0;
}
.cat-pills {
  display: flex; 
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px; /* space for interactions/shadows */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox hide scrollbar */
  -ms-overflow-style: none; /* IE/Edge hide scrollbar */
  flex: 1;
  scroll-behavior: smooth;
}
.cat-pills::-webkit-scrollbar {
  display: none; /* Chrome/Safari hide scrollbar */
}
.scroll-arrow {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all var(--transition);
  font-size: 1.2rem;
  line-height: 1;
  padding-bottom: 2px;
}
.scroll-arrow:hover { background: var(--plate-yellow); color: var(--plate-dark); border-color: var(--plate-yellow); }
.left-arrow { margin-right: 8px; }
.right-arrow { margin-left: 8px; }

.cat-pill {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--plate-yellow); color: var(--plate-yellow); }
.cat-pill.active { background: var(--plate-yellow); color: var(--plate-dark); border-color: var(--plate-yellow); }

/* ── RESTRICTION CARDS ── */
.restrictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 2.5rem;
}
.restriction-card {
  background: rgba(255, 255, 255, 0.03); /* Glass integration */
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.restriction-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.rc-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.rc-icon { font-size: 1.8rem; flex-shrink: 0; }
.rc-title-wrap { flex: 1; min-width: 0; }
.rc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rc-link { font-size: 0.75rem; color: var(--plate-yellow); margin-top: 2px; }
.rc-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.badge-active { background: var(--red-bg); color: var(--red); }
.badge-free   { background: var(--green-bg); color: var(--green); }

.rc-body { padding: 16px 20px; }

.rc-restriction-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 10px;
}

/* Plate chips */
.plates-row {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.plate-chip {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--plate-yellow);
  color: var(--plate-dark);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 2px 6px rgba(255,193,7,0.25);
}
.plate-chip.all {
  width: auto; padding: 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Schedule rows */
.schedule-list { display: flex; flex-direction: column; gap: 6px; }
.schedule-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem;
  color: var(--text-2);
}
.schedule-item svg { color: var(--orange); flex-shrink: 0; width: 14px; height: 14px; }
.schedule-time { font-weight: 600; color: var(--text-1); font-variant-numeric: tabular-nums; }

/* No restriction state */
.rc-free-state {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--green-bg);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}
.rc-free-state svg { width: 18px; height: 18px; flex-shrink: 0; }

.rc-footer {
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  text-align: right;
}
.rc-footer a {
  font-size: 0.78rem;
  color: var(--plate-yellow);
  font-weight: 600;
  transition: opacity var(--transition);
}
.rc-footer a:hover { opacity: 0.8; }

/* ── INFO BOX ── */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.info-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.info-box p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 0.75rem; }
.info-box p:last-child { margin-bottom: 0; }
.info-box a { color: var(--plate-yellow); }
.info-box ul { padding-left: 1.25rem; list-style: disc; }
.info-box ul li { font-size: 0.875rem; color: var(--text-2); margin-bottom: 4px; }

/* Sanction box */
.sanction-box {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 1rem;
}
.sanction-box strong { color: var(--red); }

/* Report error link */
.report-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  color: var(--text-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 2rem;
  transition: color var(--transition), border-color var(--transition);
}
.report-link:hover { color: var(--orange); border-color: var(--orange); }

/* ── DEPT GRID ── */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin-bottom: 2.5rem;
}
.dept-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-decoration: none; color: inherit;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.dept-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  transform: translateY(-1px);
}
.dept-card-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.dept-card-cities { font-size: 0.78rem; color: var(--text-3); }

/* ── FOOTER ── */
.footer {
  background: #05060b;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-3);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 0.875rem;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--plate-yellow); }
.footer-col ul li.current { font-size: 0.83rem; color: var(--text-2); font-weight: 600; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }
.footer-bottom a { font-size: 0.78rem; color: var(--text-3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--plate-yellow); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── PLATE CHECKER MODULE ── */
.plate-checker {
  background: linear-gradient(145deg, #0f1225 0%, #0a0a14 100%);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.plate-checker::before {
  content: ''; position: absolute; top:-50%; left:-50%; width:200%; height:200%;
  background: radial-gradient(circle at 50% 10%, rgba(255,193,7,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.plate-checker h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--text-1);
}
.plate-checker h2 span { color: var(--plate-yellow); }
.plate-checker-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.plate-input-wrapper {
  background: var(--plate-yellow);
  padding: 6px;
  border-radius: 8px;
  border-top: 3px solid #6b5000;
  border-bottom: 3px solid #6b5000;
  border-left: 2px solid var(--plate-dark);
  border-right: 2px solid var(--plate-dark);
  box-shadow: 0 6px 16px rgba(255,193,7,0.35);
}
.plate-input-wrapper::before {
  content: 'COLOMBIA';
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  font-weight: 900;
  color: var(--plate-dark);
  text-align: center;
  margin-bottom: 3px;
  letter-spacing: 0.25em;
}
.plate-input {
  /* Realplate simulation */
  background: linear-gradient(to bottom, #ffffff 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--plate-dark);
  text-align: center;
  text-transform: uppercase;
  width: 240px;
  height: 65px;
  outline: none;
  letter-spacing: 3px;
  transition: transform 0.1s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.plate-input::placeholder { color: #94a3b8; font-weight: 600; opacity: 0.5; }
.plate-btn {
  background: linear-gradient(to right, var(--plate-yellow), #fca5a5); /* Red/Yellow vibrant CTA */
  background: var(--plate-yellow);
  color: var(--plate-dark);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0 34px;
  height: 75px; /* match exact height of plate */
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(255,193,7,0.3);
}
.plate-btn:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 8px 24px rgba(255,193,7,0.4); 
}

.plate-result {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.plate-result.active { display: inline-block; }
.plate-result.success { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.plate-result.danger { background: var(--red-bg); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }

/* Email obfuscated */
.email-obf::after { content: "@picoyplaca.com.co"; }

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; align-items: center; }
  .city-select-wrap { display: none; }
  .cities-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .restrictions-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero { padding: 2rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .logo { font-size: 1.1rem; gap: 6px; }
  .logo-plate { padding: 4px 10px; }
  .logo-sub { font-size: 0.65rem; }
  .city-hero-title { font-size: 1.6rem; }
  .cat-pills-wrapper { margin-right: -1.5rem; padding-right: 1.5rem; margin-top: 1rem; }
  .cat-pills { gap: 8px; padding-right: 0.5rem; }
  .cat-pill { font-size: 0.8rem; padding: 6px 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-hero-date { gap: 8px; font-size: 0.8rem; }
}

/* ── SCROLL TOP BUTTON ── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--plate-yellow);
  color: var(--plate-dark);
  border: none; border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,193,7,0.4);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 50;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-2px); }

/* ── UTILITIES ── */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.text-yellow { color: var(--plate-yellow); }
.text-muted  { color: var(--text-3); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
