body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url("https://www.elviajeroexperto.com/wp-content/uploads/2020/05/nicolas-perez-eNWcXCbE5fI-unsplash-1536x1024.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.521);
  color: rgb(255, 255, 255);
  padding: 15px 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(3px);
}

.imagend {
  display: none;
  max-width: 40px;
  border-radius: 10px;
  justify-content: left;
  position: absolute;

}


.imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* para que si hay muchas, bajen a la siguiente línea */
  gap: 15px;
  margin: 20px auto;
  width: 100%;
}

.imagen img {
  width: 250px;
  /* tamaño uniforme */
  height: 250px;
  /* asegura proporción visual constante */
  object-fit: cover;
  /* recorta sin deformar */
  border-radius: 10px;
  /* bordes suaves */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 60px;
}

.navbar li a {
  justify-content: center;
  opacity: 1;
  text-decoration: none;
  color: rgb(70, 70, 70);
  font-weight: bold;
  transition: all 0.3s ease;
}

.navbar li a:hover {
  color: #ffffff;
  transform: scale(1.1);
  cursor: pointer;
  font-size: larger;
}

.titulo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.caja1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  padding: 20px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.808);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  border-radius: 15px;
  gap: 20px;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100ch;
}

.caja1 .imagen img {
  height: auto;
  border-radius: 10px;
}

.titler {
  display: flex;
  color: #c9b288;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}


/* === BARRA LATERAL === */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 17ch;
  max-width: fit-content;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 100;
  padding-top: 60px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #202020;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #794808;
  font-weight: bolder;
}

.sidebar h2 {
  color: rgb(0, 0, 0);
}

#informacion_contenida p {
  margin-bottom: 1em;
  /* separa los párrafos */
  text-indent: 1em;
  /* agrega sangría si querés */
  line-height: 1.6;
  /* mejora la lectura */
}