@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display;=swap");

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display;=swap");
/*SELECTOR UNIVERSAL*/
*{
  margin: 7px;
  padding: 1px;
}

/*SELECTOR DE ELEMENTO*/
body {
  background: rgba(224, 172, 220, 0.36);
  text-align: justify;
  font-family: "Trebuchet MS", Arial,sans-serif;
}

p {
  color: black;
  font-family: "Poppins", sans-serif;
}
ol{
  padding-left: 10px;
  list-style-type: decimal;
  list-style-position:inside;
  margin:3px;
}
li{
  margin:3px
}

h2{
  font-size: clamp(2rem, 1vw,);
  font-weight: 700;
  color: #5987a7;
  margin: 10px;
}
/*SELECTOR POR IDENTIFICADOR*/
#titulo {
  text-align: center;
  color: black;
  font-family: "Merriweather", serif;
  font-style: italic;
  font-size:60px;
}

/*SELECTOR POR CLASE*/
.encabezadoTabla{
  background-color: rgba(207, 71, 188, 0.4);
  text-align: center;
  font-size: 20px;
}
/* =========================
ESTILO GENERAL
========================= */

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: #f4f6f9;
  margin: 0;
  padding: 40px 10%;
  color: #333;
  line-height: 1.6;
}

/* =========================
TÍTULO PRINCIPAL
========================= */

#titulo {
  text-align: center;
  font-size: 42px;
  color: #1f2f3f;
  margin-bottom: 5px;
}

h1 + p {
  text-align: center;
  font-size: 18px;
  color: #2e8b57;
  margin-bottom: 30px;
}

/* =========================
TÍTULOS DE SECCIÓN
========================= */

h2 {
  color: #1f2f3f;
  border-left: 5px solid #2e8b57;
  padding-left: 10px;
  margin-top: 40px;
}

h3 {
  color: #2e8b57;
  margin-top: 25px;
}

h6 {
  color: #1f2f3f;
  margin-top: 40px;
}

/* =========================
SEPARADORES
========================= */

hr {
  border: none;
  height: 1px;
  background-color: #dcdfe6;
  margin: 30px 0;
}

/* =========================
IMÁGENES
========================= */

img {
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  height: auto;
}

/* =========================
LISTAS
========================= */

ol {
  padding-left: 20px;
}

ul {
  margin-bottom: 15px;
}

li {
  margin-bottom: 6px;
}

/* =========================
ENLACES
========================= */

a {
  color: #2e8b57;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

a:hover {
  color: #1f2f3f;
  text-decoration: underline;
}

/* =========================
TABLA
========================= */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background-color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

th {
  padding: 12px;

