/* 🌐 Estilo general Mapa */
.mapa-container {
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: 2em;
}

.mapa-locations {
  overflow-y: auto;
  max-height: 300px;
  border-bottom: 1px solid #e5e7eb;
}

.mapa-location {
  background-color: white;
  padding: 12px 16px;
  margin-bottom: 8px;
  border: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  width: 100%;
  text-align: start;
}

.mapa-location:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.mapa-location.active {
  background: #f3f4f6;
  border-left-color: #ff7403;

}

.mapa-map {
  flex: 1;
}

#map {
  width: 100%;
  height: 100%;
}

#map iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: none;
}
.locations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.oculto{
  display: none;

}	
.visible{
  display: block;
}

/* 🖥️ Estilo para desktop */
@media (min-width: 768px) {
  .mapa-container {
    flex-direction: row;
    min-height: 500px;
  }

  .mapa-locations {
    width: 30%;
    max-height: 500px;
    border-bottom: none;
    border-right: 1px solid #e5e7eb;
  }

  .mapa-map {
    width: 70%;
  }
  
  #map {
    min-height: 500px;
  }
}

/* Ajustes para pantallas grandes */
@media (min-width: 1024px) {
  .mapa-container {
    min-height: 550px;
  }
  
  .mapa-locations {
    width: 35%;
    max-height: 550px;
  }
  
  .mapa-map {
    width: 65%;
  }
  
  #map {
    min-height: 550px;
  }
}
