:root {
  --green-dark: #1f4d3a;
  --green: #2f6b53;
  --green-soft: #e9f1ed;
  --blue: #3e7fa6;
  --white: #ffffff;
  --off: #f5f7f4;
  --stone: #6e746f;
  --text: #25312b;
  --shadow: 0 12px 35px rgba(16, 32, 24, 0.12);
  --radius: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--off);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */
.header {
  position: relative;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4%;
  background: rgba(15, 30, 24, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  font-size: 1rem;
  color: #d7f0df;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 10px;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 13, 0.35) 0%,
    rgba(8, 16, 13, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 100px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #173b2d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 180px));
  gap: 16px;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px;
}

.badge strong {
  display: block;
  font-size: 1.4rem;
}

.badge span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--green-soft);
}

.section-dark {
  background: linear-gradient(135deg, #17372b 0%, #244d3d 100%);
  color: var(--white);
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.light-text .section-tag {
  color: #cfe8d6;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--stone);
}

.light-text p {
  color: rgba(255, 255, 255, 0.85);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.split h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.split p {
  margin-bottom: 14px;
}

.split-media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

/* FEATURES */
.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--off);
  border-radius: 18px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* MAPAS SHOWCASE */
.maps-showcase-section {
  overflow: hidden;
}

.maps-showcase-container {
  width: min(1400px, 96%);
}

.maps-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 40px;
}

.maps-stat {
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 20px rgba(24, 39, 29, 0.06);
  text-align: center;
}

.maps-stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.maps-stat span {
  display: block;
  font-size: 0.95rem;
  color: var(--stone);
}

.maps-showcase-list {
  display: grid;
  gap: 42px;
}

.map-showcase-item {
  background: var(--white);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.map-showcase-head {
  margin-bottom: 18px;
}

.map-showcase-head h3 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
}

.map-showcase-head p {
  color: var(--stone);
  max-width: 900px;
}

.map-showcase-image-wrap {
  position: relative;
  width: 100%;
  background: #edf4ef;
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.map-showcase-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 14px
    );
}

.map-showcase-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: #f8fbf8;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

.map-showcase-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.map-showcase-actions .btn {
  min-width: 180px;
}

/* Mantener compatibilidad con JS actual */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.map-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.map-card:hover {
  transform: translateY(-6px);
}

.map-image-wrap {
  position: relative;
  overflow: hidden;
  background: #eef4ef;
  padding: 10px;
}

.map-thumb {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #f7faf7;
  transition: transform 0.35s ease;
  cursor: pointer;
  padding: 0;
  border-radius: 16px;
  user-select: none;
  -webkit-user-drag: none;
}

.map-card:hover .map-thumb {
  transform: scale(1.01);
}

.map-zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border: none;
  background: rgba(31, 77, 58, 0.92);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.map-zoom-btn:hover {
  background: #173b2d;
}

.map-card-content {
  padding: 22px;
}

.map-card-content h3 {
  margin-bottom: 8px;
}

.map-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* DESTINOS / DISTRIBUCIÓN */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.12));
}

.destination-overlay h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.destination-overlay p {
  color: rgba(255, 255, 255, 0.92);
}

/* SPONSORS */
.sponsor-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e7efe9;
  color: #1f4d3a;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1f4d3a;
  color: #fff;
}

.sponsor-grid-filtered {
  display: grid;
  gap: 24px;
  width: 100%;
}

.sponsor-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.sponsor-item-filter {
  background: #f5f7f4;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(25, 39, 29, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
}

.sponsor-wide-card {
  min-height: 220px;
}

.sponsor-item-filter:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.sponsor-thumb {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.lazy-sponsor {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lazy-sponsor.loaded {
  opacity: 1;
  transform: translateY(0);
}

.sponsor-item-filter.hidden {
  display: none;
}

/* CTA */
.cta-section {
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--white) 100%);
  padding-top: 0;
}

.cta-box {
  background: linear-gradient(135deg, #204638 0%, #2f6b53 100%);
  color: var(--white);
  border-radius: 32px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
  margin-top: -30px;
}

.cta-box .section-tag {
  color: #d8efe0;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.15;
}

/* CONTACT */
.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-info {
  max-width: 600px;
  width: 100%;
}

.contact-items {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(24, 39, 29, 0.06);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

/* FOOTER */
.footer {
  background: #17372b;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 34px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 12px;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-weight: 600;
  word-break: break-word;
}

/* MODAL GENERAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 9, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2000;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.modal-content img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.modal-content h3 {
  color: var(--white);
}

.modal-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* MODAL MAPA FULLSCREEN */
.fullscreen-modal {
  padding: 18px;
  z-index: 4000;
}

.modal-content-map {
  position: relative;
  z-index: 2100;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-zoom-stage {
  position: relative;
  z-index: 2100;
  width: 100%;
  height: calc(100vh - 110px);
  overflow: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: grab;
  display: block;
  scroll-behavior: auto;
  touch-action: none;
}

.map-zoom-stage.dragging {
  cursor: grabbing;
}

.map-zoom-stage::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.map-zoom-stage::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.map-zoom-stage::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-content-map img {
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.modal-map-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.modal-map-actions h3 {
  margin: 0;
  color: #fff;
}

.modal-map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1f8f57;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 24px rgba(10, 40, 22, 0.25);
  z-index: 1400;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .maps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 960px) {
  .split,
  .footer-grid,
  .destinations-grid,
  .maps-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .split-media img {
    min-height: 320px;
  }

  .maps-showcase-item {
    padding: 18px;
    border-radius: 22px;
  }

  .map-showcase-image-wrap {
    padding: 12px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 4%;
    width: min(280px, 88vw);
    background: rgba(20, 39, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    background-position: center;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-actions,
  .map-actions-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-actions-row .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .maps-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .maps-stat {
    min-width: auto;
    width: 100%;
  }

  .maps-showcase-container {
    width: min(100%, 96%);
  }

  .maps-showcase-list {
    gap: 28px;
  }

  .map-showcase-head h3 {
    font-size: 1.3rem;
  }

  .map-showcase-actions {
    justify-content: stretch;
  }

  .map-showcase-actions .btn {
    width: 100%;
  }

  .maps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fullscreen-modal {
    padding: 0;
  }

  .modal-content-map {
    width: 100vw;
    height: 100vh;
    justify-content: space-between;
    padding: 8px;
  }

  .map-zoom-stage {
    width: 100%;
    height: calc(100vh - 95px);
  }

  .modal-content-map img {
    width: 100%;
  }

  .modal-map-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
  }

  .modal-map-actions h3 {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .modal-map-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .modal-map-buttons .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    z-index: 2100;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .sponsor-grid-wide {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sponsor-item-filter {
    width: 100%;
    min-height: 180px;
    padding: 12px;
  }

  .sponsor-thumb {
    width: 100%;
    height: 150px;
    object-fit: contain;
  }

  .sponsor-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  #imageModal {
    z-index: 4000;
  }

  #imageModal .modal-close {
    z-index: 99999;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .navbar {
    padding: 16px 4%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
  }

  .destination-card {
    min-height: 320px;
  }

  .modal {
    padding: 18px;
  }

  .modal-content img {
    max-height: 65vh;
  }

  .sponsor-grid-wide {
    grid-template-columns: 1fr;
  }

  .sponsor-wide-card {
    min-height: 200px;
  }

  .sponsor-thumb {
    height: 160px;
  }

  .modal-map-actions {
    flex-direction: column;
    width: 100%;
  }

  .modal-map-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 12px;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 16px;
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom a {
    font-weight: 600;
    word-break: break-word;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .map-zoom-stage {
    height: calc(100vh - 85px);
  }

  .modal-map-buttons {
    grid-template-columns: 1fr;
  }

  .modal-map-actions h3 {
    font-size: 0.95rem;
  }

  .sponsor-item-filter {
    min-height: 160px;
    padding: 10px;
  }

  .sponsor-thumb {
    height: 130px;
  }
}

#imageModal .modal-content,
#imageModal .modal-content-map,
#imageModal .map-zoom-stage,
#imageModal #modalImage {
  position: relative;
  z-index: 1;
}

#imageModal .modal-close {
  z-index: 99999;
}

#imageModal {
  z-index: 4000;
}