body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  background-color: #f3f3f3;
  color: #333;
}

header {
  background-color: #5e4b3c;
  color: white;
  padding: 20px;
  text-align: center;
}

.menu-horizontal {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu-horizontal li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-horizontal li a:hover {
  text-decoration: underline;
}

section {
  padding: 20px;
}

.galeria {
  text-align: center;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 10px;
}

.grid-galeria img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ccc;
}

.destacado {
  color: #7a3e2f;
  font-weight: bold;
}

footer {
  background-color: #5e4b3c;
  color: white;
  text-align: center;
  padding: 10px;
}
