/* Estilo general */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.contenedor {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Títulos */
.titulo {
  font-size: 2em;
  text-align: center;
  color: #752a7f;
  margin-bottom: 20px;
}

.subtitulo {
  color: #84498b;
  font-size: 1.6em;
  margin-top: 40px;
  border-bottom: 2px solid rgb(151, 191, 231);
  padding-bottom: 8px;
}

/* Tabla de contenido */
.tabla-contenido {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  background-color: #eef7f4;
  border-left: 4px solid #752a7f;
  padding: 15px 20px;
  border-radius: 8px;
}

.tabla-contenido li {
  margin: 10px 0;
}

.tabla-contenido a {
  text-decoration: none;
  color: #752a7f;
  font-weight: bold;
  transition: color 0.3s ease;
}

.tabla-contenido a:hover {
  color: #752a7f;
}

/* Secciones */
.seccion {
  margin-bottom: 50px;
  background-color: #f8fdfb;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Listas */
.lista-pasos {
  padding-left: 20px;
  margin-top: 10px;
}

.lista-pasos li {
  margin-bottom: 10px;
}

.lista-secundaria {
  padding-left: 20px;
  list-style: circle;
  margin-top: 10px;
}

p, a {
  text-align: justify;
  text-align-last: justify;
  hyphens: auto;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lista{
  text-align: justify;
  text-align-last: justify;
  hyphens: auto;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.lista-secundaria li {
  margin-left: 1.5em;
  margin-bottom: 0.6em;
}

