.contenedor {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: #555;
  max-width: 850px;
}

.visor-mapa-recursos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.visor-mapa {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  background: #f5f5f5;
  overflow: hidden;
}

.visor-mapa img {
  display: block;
  width: 100%;
  height: auto;
}

.capa-puntos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.punto-mapa {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #c52222;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 4px rgba(0,0,0,0.45);
}

.punto-mapa:hover,
.punto-mapa.activo {
  width: 20px;
  height: 20px;
  background: #f2c230;
  z-index: 10;
}

.panel-lugar {
  border: 1px solid #ccc;
  background: #fff;
  padding: 1rem;
}

.panel-lugar h2 {
  font-size: 1.25rem;
  margin-top: 0;
}

.panel-lugar p {
  font-size: 0.95rem;
}

.mensaje-inicial {
  color: #666;
}

.lista-fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}

.item-foto {
  display: block;
  text-decoration: none;
  color: inherit;
}

.item-foto img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}

.item-foto span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.recursos-lugar {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

.recursos-lugar a {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  background: #f8f8f8;
}

.recursos-lugar a:hover {
  background: #eee;
}

/* Tablet */
@media (max-width: 992px) {
  .visor-mapa-recursos {
    grid-template-columns: 1fr;
  }

  .panel-lugar {
    margin-top: 0;
  }

  .lista-fotos {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Celular */
@media (max-width: 576px) {
  .contenedor {
    padding: 0.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  .punto-mapa {
    width: 18px;
    height: 18px;
  }

  .punto-mapa:hover,
  .punto-mapa.activo {
    width: 24px;
    height: 24px;
  }

  .lista-fotos {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-lugar {
    padding: 0.75rem;
  }
}