/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-900: #0e2e18; --green-800: #1a4d25; --green-700: #215f2e;
  --green-600: #2d7a3a; --green-500: #3a9748; --green-400: #5cb96a;
  --green-200: #c2eaca; --green-100: #e8f5ea; --green-50: #f3faf4;
  --yellow-600: #e6a800; --yellow-500: #f5c518; --yellow-400: #f9d44e; --yellow-100: #fff8dc;
  --neutral-900: #111827; --neutral-800: #1c1c1e; --neutral-700: #374151;
  --neutral-600: #4b5563; --neutral-500: #6b7280; --neutral-400: #9ca3af;
  --neutral-300: #d1d5db; --neutral-200: #e5e7eb; --neutral-100: #f3f4f6; --neutral-50: #f9fafb;
  --white: #ffffff;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-h: 88px;
  --container: 1160px;
  --radius: 8px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--neutral-800); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
img { display: block; max-width: 100%; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 46, 24, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

#navbar .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 56px;
  height: 56px;
  max-height: calc(var(--nav-h) - 20px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (hover: hover) {
  .nav-logo:hover .nav-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 8px rgba(245, 197, 24, 0.35));
  }
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-sub {
  font-size: 10px;
  color: var(--green-400);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}

.nav-link {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow-500);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-link.active {
  color: var(--yellow-500);
}

.nav-link.disabled,
.nav-mobile-link.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Botón sorteo en vivo */
.nav-live {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow-500);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,197,24,0.3);
}

.nav-live:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green-700);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.2);
  }
}/* ── SCREEN SYSTEM ────────────────────────────────────────── */
.screen { display: none; }
.screen.active { display: block; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  min-height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14, 46, 24, 0.95) 0%, rgba(14, 46, 24, 0.7) 60%, rgba(14, 46, 24, 0.4) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px; z-index: 1;
}
.hero-glow { position: absolute; right: -100px; top: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,197,24,.12) 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 16px 24px; display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: center; width: 100%; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-400); margin-bottom: 14px; }
.hero-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 12px; }
.hero-title span { color: var(--yellow-500); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 20px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary { 
    background: var(--yellow-500); 
    color: var(--green-800); 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 15px; 
    padding: 13px 28px; 
    border-radius: 6px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: none; 
    cursor: pointer; 
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.btn-hero-primary:hover { 
    background: var(--yellow-400); 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 10px 25px rgba(245,197,24,0.4); 
}
.btn-hero-primary:hover::after { opacity: 1; }

.btn-hero-outline { 
    background: rgba(255,255,255,0.05); 
    color: #fff; 
    font-family: var(--font-body); 
    font-weight: 600; 
    font-size: 15px; 
    padding: 13px 28px; 
    border-radius: 6px; 
    border: 1.5px solid rgba(255,255,255,0.3); 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { 
    border-color: rgba(255,255,255,0.8); 
    background: rgba(255,255,255,0.15); 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Hero result card */
.hero-right-col { display: flex; flex-direction: column; gap: 10px; }
.hero-result-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 16px;
  backdrop-filter: blur(12px);
}
.hrc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.hrc-title { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-400); }
.hrc-badge { background: var(--yellow-500); color: var(--green-800); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px; display: flex; align-items: center; gap: 4px; }
.hrc-game { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 0px; }
.hrc-date { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.hrc-numbers { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.num-ball { width: 46px; height: 46px; border-radius: 50%; background: var(--yellow-500); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--green-800); box-shadow: 0 4px 12px rgba(245,197,24,.35); }
.hrc-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 8px; }
.hrc-prev { display: flex; flex-direction: column; gap: 8px; }
.hrc-prev-row { display: flex; justify-content: space-between; align-items: center; }
.hrc-prev-label { font-size: 12px; color: rgba(255,255,255,.45); }
.hrc-prev-nums { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .04em; }

/* Hero Support Card */
.hero-support-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 12px 16px;
  backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: 12px;
}
.hsc-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45,122,58,.3);
}
.hsc-icon svg { width: 28px; height: 28px; }
.hsc-content { display: flex; flex-direction: column; }
.hsc-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-400); margin-bottom: 4px; }
.hsc-phone { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--yellow-500); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.hsc-schedule { font-size: 11px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.hsc-logo-text { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.8); letter-spacing: .05em; display: flex; align-items: center; gap: 4px; }
.hsc-logo-text strong { color: #fff; font-weight: 700; }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker { background: var(--green-700); padding: 10px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 0; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
.ticker-item strong { font-family: var(--font-mono); color: var(--yellow-500); }
.ticker-sep { color: rgba(255,255,255,.25); margin: 0 4px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION COMMON ───────────────────────────────────────── */
section { padding: 72px 0; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-500); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--neutral-800); letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2; }
.section-desc { font-size: 16px; color: var(--neutral-500); line-height: 1.65; max-width: 540px; }
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── SERVICES GRID ────────────────────────────────────────── */
#services { background: var(--neutral-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: 10px; padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: all .2s; cursor: pointer; border: 1.5px solid transparent;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.11); border-color: var(--green-200); }
.service-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--neutral-800); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--neutral-500); line-height: 1.6; margin-bottom: 16px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--green-600); display: flex; align-items: center; gap: 4px; }

/* ── STATS BAR ────────────────────────────────────────────── */
#stats { background: var(--green-800); padding: 12px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.stat-item { padding: 12px 24px; background: var(--green-800); text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); }

/* ── RESULTS SCREEN ────────────────────────────────────────── */
#screen-results { background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%); min-height: 80vh; padding: 24px 0 48px; position: relative; }
.results-header { background: transparent; padding: 12px 0 24px; margin-bottom: 0; position: relative; z-index: 1; }
.results-tabs { display: flex; gap: 4px; margin-top: 20px; }
.rtab { padding: 8px 18px; border-radius: 6px 6px 0 0; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); cursor: pointer; transition: all .2s; }
.rtab.active { background: rgba(255,255,255,.1); color: #fff; backdrop-filter: blur(10px); }
.rtab:not(.active):hover { color: #fff; background: rgba(255,255,255,.05); }
.results-body { padding: 36px 0; position: relative; z-index: 1; }
.result-day-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); border-radius: 10px; padding: 28px; box-shadow: 0 4px 12px rgba(0,0,0,.1); margin-bottom: 16px; }
.rdc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.rdc-game { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; }
.rdc-meta { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 3px; }
.rdc-badge { padding: 5px 12px; border-radius: 99px; font-size: 12px; font-weight: 600; }
.rdc-numbers { display: flex; gap: 10px; flex-wrap: wrap; }
.result-ball { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.result-ball.accent { background: var(--yellow-500); color: var(--green-900); border: none; box-shadow: 0 4px 12px rgba(245,197,24,.4); }

/* Dynamic Extract View (Premium & Modern) */
.extract-header-inside {
  background: rgba(0, 0, 0, 0.15);
  padding: 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.eh-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-500);
  color: var(--green-900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(245, 197, 24, 0.2);
}
.eh-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow-500);
  margin-bottom: 6px;
}
.eh-main-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.jurisdiction-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px) saturate(150%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}
.jc-header {
  padding: 24px 16px;
  background: rgba(255,255,255,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.jc-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--green-400);
  letter-spacing: 0.1em;
}
.jc-location {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.jc-right { display: flex; align-items: center; gap: 24px; }
.jc-stat { text-align: right; }
.jc-stat-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.4); display: block; margin-bottom: 2px; }
.jc-stat-value { font-family: var(--font-mono); font-size: 15px; color: var(--yellow-500); }
.jc-divider-v { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

.extract-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 8px;
  padding: 24px 16px;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
}
.extract-item-premium {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 6px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.extract-item-premium:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.02);
  border-color: rgba(245, 197, 24, 0.2);
}

.ei-pos-premium {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  width: 28px;
}
.ei-num-wrapper {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}
.ei-num-premium {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow-500);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.2);
}

.jc-footer {
  padding: 12px 16px;
  background: rgba(0,0,0,0.1);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.jc-footer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.extract-item-premium.hidden-item {
  display: none;
}
.extract-grid-premium.expanded .extract-item-premium.hidden-item {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.expand-btn-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.expand-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--yellow-500);
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.expand-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.expand-btn svg {
  transition: transform 0.3s ease;
}
.expand-btn.expanded svg {
  transform: rotate(180deg);
}

@media (max-width: 800px) {
  .extract-grid-premium { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .jc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .jc-right { width: 100%; justify-content: space-between; }
  .extract-header-inside { flex-direction: column; align-items: flex-start; gap: 20px; }
  .eh-meta { width: 100%; }
  .history-select { width: 100%; }
}

/* ── AGENCIAS SCREEN ───────────────────────────────────────── */
#screen-agencias { background: var(--neutral-50); min-height: 80vh; padding: 48px 0; }
.agency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.agency-card { background: var(--white); border-radius: 8px; padding: 20px 24px; box-shadow: 0 2px 8px rgba(0,0,0,.06); display: flex; gap: 16px; align-items: flex-start; }
.agency-num { width: 44px; height: 44px; background: var(--green-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--green-700); flex-shrink: 0; }
.agency-name { font-weight: 600; color: var(--neutral-800); margin-bottom: 4px; }
.agency-addr { font-size: 13px; color: var(--neutral-500); margin-bottom: 6px; }
.agency-city { font-size: 12px; font-weight: 600; color: var(--green-600); display: inline-flex; align-items: center; gap: 4px; }
.search-bar { background: var(--white); border-radius: 8px; padding: 14px 18px; display: flex; gap: 12px; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,.07); margin-bottom: 24px; }
.search-bar input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 15px; color: var(--neutral-800); background: transparent; }
.search-bar input::placeholder { color: var(--neutral-400); }
.search-btn { background: var(--green-600); color: #fff; border: none; border-radius: 6px; padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: background .2s; }
.search-btn:hover { background: var(--green-700); }

/* ── INSTITUCIONAL SCREEN ──────────────────────────────────── */
#screen-institucional { min-height: 80vh; padding: 48px 0; background: var(--white); }
.inst-hero { background: linear-gradient(135deg, var(--green-900), var(--green-700)); padding: 60px 0; margin-bottom: 0; }
.inst-body { padding: 56px 0; }
.inst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.inst-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--neutral-800); margin-bottom: 12px; }
.inst-text p { font-size: 15px; color: var(--neutral-600); line-height: 1.7; margin-bottom: 12px; }
.autoridades { background: var(--neutral-50); border-radius: 10px; padding: 28px; }
.aut-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--neutral-800); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--green-200); }
.aut-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--neutral-200); }
.aut-row:last-child { border-bottom: none; }
.aut-role { font-size: 12px; font-weight: 600; color: var(--neutral-500); text-transform: uppercase; letter-spacing: .04em; }
.aut-name { font-size: 14px; font-weight: 600; color: var(--neutral-800); }

/* ── NEWS SECTION ─────────────────────────────────────────── */
#news { 
  background: var(--green-900);
  background-image: radial-gradient(circle at 0% 0%, var(--green-800) 0%, transparent 50%),
                    radial-gradient(circle at 100% 100%, var(--green-700) 0%, transparent 50%);
  position: relative; 
  overflow: hidden;
  padding: 100px 0;
}
#news::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}
.news-glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}
.news-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.news-carousel-container {
  overflow: hidden;
}
.news-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
}
.news-carousel-item {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}
.news-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.news-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.news-carousel-dot.active {
  background: var(--yellow-500);
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .news-carousel-item { flex: 0 0 50%; }
}
@media (max-width: 600px) {
  .news-carousel-item { flex: 0 0 100%; }
}
#news .section-title { color: white; }
#news .section-eyebrow { color: var(--yellow-500); }

.news-card { 
  background: var(--white);
  border-radius: 20px; 
  border: 1px solid rgba(255, 255, 255, 0.05); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1); 
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card:hover { 
  transform: translateY(-8px); 
  border-color: rgba(92, 185, 106, 0.35); 
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.45), 
    0 15px 30px -10px rgba(92, 185, 106, 0.25);
}
.news-img { 
  height: 200px; 
  margin: 12px 12px 0 12px; 
  border-radius: 14px; 
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-100);
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.1), 
    0 8px 16px -6px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.news-card:hover .news-img {
  transform: scale(1.02); 
  box-shadow: 
    0 15px 30px -5px rgba(0, 0, 0, 0.15), 
    0 10px 20px -6px rgba(0, 0, 0, 0.1);
}
.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.news-card:hover .news-overlay { opacity: 1; }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-tag { 
  display: inline-block; 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  color: var(--green-700); 
  background: var(--green-100); 
  padding: 4px 10px; 
  border-radius: 6px; 
  margin-bottom: 12px; 
  align-self: flex-start;
}
.news-title { 
  font-family: var(--font-display); 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--neutral-800); 
  margin-bottom: 12px; 
  line-height: 1.3; 
  transition: color 0.3s;
}
.news-card:hover .news-title { color: var(--green-600); }
.news-excerpt {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-date { 
  margin-top: auto;
  font-size: 12px; 
  color: var(--neutral-400); 
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* ── NEWS DETAIL PAGE ──────────────────────────────────────── */
.news-hero {
    height: 65vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    color: white;
    overflow: hidden; /* Importante para que el blur no se salga */
}
.news-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.8); /* Desenfoque y un poco más oscuro */
    transform: scale(1.1); /* Evita bordes blancos por el blur */
    z-index: 0;
}
.news-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.news-hero-content { position: relative; z-index: 2; max-width: 900px; }
.btn-back {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: white; text-decoration: none; font-size: 0.95rem; font-weight: 500;
    margin-bottom: 2.5rem; opacity: 0.85; transition: all 0.3s;
    background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 30px;
    backdrop-filter: blur(8px);
}
.btn-back:hover { opacity: 1; background: rgba(255,255,255,0.2); transform: translateX(-4px); }
.news-meta-detail { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 1.5rem; }
.news-title-detail { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.news-subtitle { font-size: clamp(16px, 2vw, 22px); opacity: 0.9; line-height: 1.5; font-weight: 400; color: rgba(255,255,255,0.9); }
.news-main-content { padding: 80px 0; background: white; }
.news-content-wrapper { max-width: 800px; margin: 0 auto; }
.news-text-body { font-size: 1.18rem; line-height: 1.85; color: #334155; }
.news-text-body p { margin-bottom: 2rem; }
.news-text-body h2, .news-text-body h3 { font-family: var(--font-display); margin: 3rem 0 1.5rem; color: var(--neutral-900); }
.news-gallery { margin-top: 6rem; padding-top: 4rem; border-top: 1px solid var(--neutral-100); }
.gallery-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 2.5rem; color: var(--neutral-900); }

.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
}
.gallery-carousel-container {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.08), 
    0 20px 50px -15px rgba(0, 0, 0, 0.12),
    0 30px 70px -20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.gallery-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-carousel-item {
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.gallery-carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 10;
}
.gallery-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-carousel-caption {
  position: absolute;
  left: 40px;
  bottom: 32px;
  z-index: 12;
  max-width: 70%;
  pointer-events: none;
}
.gallery-carousel-caption h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 
    0 4px 10px rgba(0,0,0,0.06),
    0 10px 20px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.1),
    0 20px 30px rgba(0,0,0,0.08);
}
.gallery-nav.prev { left: -25px; }
.gallery-nav.next { right: -25px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-300);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-dot.active {
  background: var(--green-600);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .gallery-nav { width: 40px; height: 40px; }
  .gallery-nav.prev { left: 10px; }
  .gallery-nav.next { right: 10px; }
  .gallery-carousel-caption {
    left: 20px;
    bottom: 20px;
    max-width: 80%;
  }
  .gallery-carousel-caption h4 {
    font-size: 16px;
  }
}



/* ── CTA BANNER ───────────────────────────────────────────── */
#cta-banner { background: var(--yellow-500); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-text h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--green-800); margin-bottom: 6px; }
.cta-text p { font-size: 15px; color: rgba(26,77,37,.7); }
.btn-cta { background: var(--green-800); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 6px; border: none; cursor: pointer; transition: all .2s; white-space: nowrap; }
.btn-cta:hover { background: var(--green-900); transform: translateY(-1px); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--green-900); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.footer-brand-sub { font-size: 11px; color: var(--green-400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-400); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-link:hover { color: var(--yellow-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: #fff; font-weight: 500; }
.footer-gov { font-size: 13px; color: #fff; font-weight: 500; }

/* SOCIAL BUTTONS (TW Elements Style) */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  color: #fff;
}
.social-btn.facebook { background-color: #1877f2; }
.social-btn.instagram { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-btn.youtube { background-color: #ff0000; }

/* ── MOBILE MENU ──────────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; margin-left: auto; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .2s; }
.nav-mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h); z-index: 99;
  background: var(--green-900); padding: 24px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  color: rgba(255,255,255,.8); font-size: 18px; font-weight: 600;
  padding: 14px 16px; border-radius: 8px; text-decoration: none;
  transition: all .18s; border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--yellow-500); background: rgba(255,255,255,.05); }
.nav-mobile-cta {
  margin-top: 16px; background: var(--yellow-500); color: var(--green-800);
  font-size: 16px; font-weight: 700; padding: 14px 20px; border-radius: 8px;
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet: ≤900px */
@media (max-width: 900px) {
  .nav-links, .nav-live { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 32px; }
  .hero-result-card { max-width: 480px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .inst-grid { grid-template-columns: 1fr; gap: 32px; }
  .agency-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Mobile: ≤600px */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  /* Nav */
  #navbar .inner { padding: 0 16px; gap: 12px; }
  .nav-brand { font-size: 17px; }
 
.nav-logo-img {
  width: 40px;
  height: 40px;
  max-height: 40px;
}

  /* Container */
  .container { padding: 0 16px; }

  /* Hero */
  .hero-inner { padding: 36px 16px 32px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .btn-hero-primary, .btn-hero-outline { font-size: 14px; padding: 11px 20px; width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-result-card { padding: 18px; width: 100%; max-width: none; }
  .pozo-value { font-size: 32px; }
  .pozo-currency { font-size: 22px; }
  .num-ball { width: 40px; height: 40px; font-size: 14px; }
  .hrc-prev-row { flex-direction: column; gap: 2px; align-items: flex-start; }
  .hrc-prev-nums { font-size: 12px; }

  /* Sections */
  section { padding: 48px 0; }
  .section-title { font-size: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 30px; }
  .stat-item { padding: 20px 16px; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }

  /* Results */
  .results-header { padding: 24px 0 0; }
  .results-tabs { gap: 2px; overflow-x: auto; padding-bottom: 0; }
  .rtab { font-size: 13px; padding: 8px 14px; white-space: nowrap; }
  .result-day-card { padding: 18px; }
  .rdc-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .rdc-game { font-size: 17px; }
  .result-ball { width: 44px; height: 44px; font-size: 15px; }

  /* Agencias */
  .search-bar { padding: 12px 14px; flex-wrap: wrap; }
  .search-bar input { min-width: 0; font-size: 14px; }
  .search-btn { width: 100%; padding: 10px; }

  /* Institucional */
  .inst-hero { padding: 36px 0; }
  .aut-row { flex-direction: column; gap: 2px; }
  .aut-name { font-size: 13px; }

  /* CTA */
  #cta-banner { padding: 36px 0; }
  .cta-text h2 { font-size: 22px; }
  .btn-cta { width: 100%; padding: 13px; font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
  footer { padding: 40px 0 24px; }

  /* Tweaks panel */
  #tweaks-panel { bottom: 12px; right: 12px; left: 12px; width: auto; }
}

/* ── TWEAKS PANEL ─────────────────────────────────────────── */
#tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18); width: 240px;
  display: none; border: 1.5px solid var(--neutral-200);
}
#tweaks-panel.show { display: block; }
.tweaks-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--neutral-800); margin-bottom: 14px; }
.tweak-row { margin-bottom: 12px; }
.tweak-label { font-size: 11px; font-weight: 600; color: var(--neutral-500); margin-bottom: 5px; }
.tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opt { font-size: 12px; padding: 4px 10px; border-radius: 5px; border: 1.5px solid var(--neutral-200); cursor: pointer; color: var(--neutral-600); background: #fff; transition: all .18s; }
.tweak-opt.active { border-color: var(--green-600); background: var(--green-50); color: var(--green-700); font-weight: 600; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
#screen-contacto { min-height: 80vh; padding: 48px 0; background: var(--neutral-50); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; margin-top: 40px; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--neutral-200);
}
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--neutral-700); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--neutral-200);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s;
  background: var(--neutral-50);
}
.form-control:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--green-100);
}
.btn-submit {
  width: 100%;
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 10px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,122,58,0.2); }

/* Contact Info */
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid var(--neutral-200);
  transition: transform 0.2s;
}
.info-card:hover { transform: translateX(8px); border-color: var(--green-200); }
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-content h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--neutral-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.info-content p { font-size: 16px; font-weight: 600; color: var(--neutral-800); }
.info-content a { color: var(--green-700); text-decoration: none; transition: color 0.2s; }
.info-content a:hover { color: var(--green-500); text-decoration: underline; }

/* Social Cards */
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.social-card {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--neutral-200);
  transition: all 0.2s;
}
.social-card:hover { background: var(--neutral-50); border-color: var(--green-600); }
.social-icon { color: var(--green-700); }
.social-name { font-size: 13px; font-weight: 600; color: var(--neutral-800); }

/* Map Section */
.map-section { margin-top: 64px; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid var(--neutral-200); height: 450px; }
.map-section iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-col { order: -1; }
}