/* --- ESTILO ULTRA BÁSICO (modo funcional) --- */

html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #000;
}

/* Layout general */
header, section, footer {
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
}

header {
  background: #eee;
  font-weight: bold;
}

h1, h2, h3 {
  margin: 8px 0;
  font-weight: 600;
}

p, li {
  margin: 4px 0;
}

/* Mapa simple */
#map {
  width: 100%;
  height: 400px;
  border: 1px solid #000;
}

/* Leyenda muy simple */
.legend {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}
.legend i {
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 1px solid #000;
}

/* Contenedores */
.wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* Eliminar estilos decorativos */
button, a, .btn {
  all: unset;
  cursor: pointer;
  color: blue;
  text-decoration: underline;
}

footer {
  border-top: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 12px;
}

/* Responsivo básico */
@media (max-width: 600px) {
  #map {
    height: 300px;
  }
}
