/* =========================
   Estilos generales
========================= */
body {
  font-family: "Times New Roman", serif;
  font-size: 12pt;
  color: #000000;
  line-height: 1.5;
  margin: 20px;
}

/* =========================
   Títulos
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", serif;
  font-weight: bold;
  color: #000000;
}

h1 { font-size: 14pt; }
h2 { font-size: 13pt; }
h3 { font-size: 12.5pt; }

/* =========================
   Texto
========================= */
strong { font-weight: bold; }
em { font-style: italic; }

/* =========================
   Listas con viñetas
========================= */
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 10px;
}

/* =========================
   Tablas profesionales
========================= */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
  font-family: "Times New Roman", serif;
  font-size: 12pt;
}

th {
  background-color: #d2b48c; /* arena clarito */
  color: black;
  padding: 10px;
  text-align: left;
}

tr:nth-child(odd) { background-color: #f5f5dc; } /* fila arena clarito */
tr:nth-child(even) { background-color: #ffffff; } /* fila blanca */

td {
  padding: 8px;
  color: black;
  border: 1px solid #d2b48c;
}

/* =========================
   Botones tipo macros
========================= */
.boton {
  display: inline-block;
  background-color: #f5f5dc; /* arena clarito */
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  margin: 5px 0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #e6d8b4; /* más oscuro al pasar el mouse */
}

/* =========================
   Imágenes y figuras
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* =========================
   Secciones y contenedores
========================= */
.section {
  margin-bottom: 30px;
}
