body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff9f0;
  color: #333;
}

header {
  background-color: #ffcc00;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #007a33;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #007a33;
  font-weight: 600;
}

main {
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  color: #007a33;
}

p {
  font-size: 1.2em;
}

.mapa {
  margin: 30px auto;
  max-width: 800px;
  border: 3px solid #007a33;
  border-radius: 10px;
  overflow: hidden;
}

.imagenes-local {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.imagenes-local img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.imagenes-local img:hover {
  transform: scale(1.05);
}

footer {
  background-color: #ffcc00;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}
