.titulo-principal{
  font-size:clamp(2rem,1vw + 1.5rem,2.6rem);
  font-weight:600;
  line-height:1.2;
  letter-spacing:.02em;
  margin:0 0 10px;
  text-align:center;
}

.intro{
  font-size:1rem;
  color:var(--texto-secundario);
  text-align:center;
  max-width:760px;
  margin:0 auto 30px;
  line-height:1.4;
  font-weight:400;
}

.imagen-wrap{
  text-align:center;
  margin-bottom:24px;
}

/* 🔥 CORREGIDO: tamaño natural como antes */
.imagen-contenido{
  width:auto;
  max-width:440px; /* ajustado para que no se vean grandes */
  height:auto;
  display:inline-block;
  margin:0 auto;
  border-radius:16px;
  border:2px solid var(--borde-dorado);
  box-shadow:0 20px 32px rgba(0,0,0,0.18),0 2px 4px rgba(0,0,0,0.15);
}

.turismo-educativo-texto p{
  font-size:1rem;
  line-height:1.55;
  color:var(--texto-principal);
  margin:0 0 1rem 0;
  text-align:left;
  font-weight:400;
}

.turismo-educativo-texto strong{
  font-weight:600;
  color:#2a1c0c;
}

.contenido a{
  font-weight:500;
  border-bottom:1px dashed rgba(138,90,17,0.4);
}

.contenido a:hover{
  background-color:rgba(212,185,130,0.18);
  border-bottom-color:rgba(138,90,17,0.8);
  box-shadow:0 0 8px rgba(212,185,130,0.6);
  border-radius:4px;
  padding:0 2px;
}

/* Animaciones específicas de esta página */
.reveal-base{
  opacity:0;
  transform:translateY(60px);
  filter:blur(6px);
  transition:all .9s ease;
  will-change:transform,opacity,filter;
}

.reveal-visible{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:all .7s ease;
  will-change:transform,opacity;
}

.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:all .7s ease;
  will-change:transform,opacity;
}

.reveal-visible-left,
.reveal-visible-right{
  opacity:1;
  transform:translateX(0);
}