
/* HERO */
.map-hero {
  background: var(--gradiente-principal);
  color: white;
  text-align: center;
   padding:120px 20px;
}

/* FILTROS */
.map-filtros {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}

.map-filtros button {
  padding: 10px 15px;
  border-radius: 20px;
  border: none;
  cursor: pointer;

  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);

  transition: 0.3s;
}

.map-filtros button.active {
  background: var(--gradiente-principal);
  color: white;
}

/* LAYOUT */
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  padding: 20px;
}

/* LISTA */
.map-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 70vh;
  overflow-y: auto;
}

/* CARD */
.map-card {
  background: white;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-card:hover {
  transform: scale(1.03);
}

/* MAPA */
.map-container iframe {
  width: 100%;
  height: 70vh;
  border-radius: 15px;
  border: none;
}







/* RESPONSIVE */
@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 300px;
  }
}