body {
  background-color: #f5f0e8; /* papel antiguo */
  font-family: Georgia, serif;
  color: #2c2c2c;
  margin: 0;
}

.contenedor {
  max-width: 750px;
  margin: auto;
  padding: 40px;
}

/* 🟥 título burdeo */
h1 {
  text-align: center;
  color: #6b1f2b; /* burdeo */
  font-size: 42px;
}

/* subtítulos */
h2 {
  color: #6b1f2b;
  border-bottom: 1px solid #d8c7c0;
  padding-bottom: 5px;
}

/* texto de inicio */
.intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}

/* lista */
ul {
  line-height: 2;
  font-size: 18px;
}

/* links */
a {
  color: #6b1f2b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ficha {
  text-decoration: none;
  color: #6b1f2b;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.ficha:hover {
  transform: scale(1.05);
}

.ficha img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}