.map-container {
  flex: 1;
  height: 100%;
  background-image: url(../img/background.webp);
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.map-container {
    width: 100%;
    min-height: 750px; /* asegura altura suficiente */
  }

  .map-container iframe {
    width: 100%;
    height: 750px; /* cambia este valor según lo necesites */
    border: 0;
    border-radius: 12px;
    display: block;
  }

#map {
  flex: 1;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #2e3350;
  min-height: 300px;
}

.map-title {
  color: black;
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  #map {
    min-height: 500px;
  }
}
