/* =========================
ESTILOS GENERALES
========================= */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f9;
  color: #333;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

/* =========================
TITULOS
========================= */

#titulo {
  text-align: center;
  color: #ffffff;
  background-color: #1f3c88;
  padding: 20px;
  border-radius: 8px;
  letter-spacing: 2px;
}

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

h3 {
  color: #2e5cb8;
}

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

/* =========================
PÁRRAFOS Y TEXTO
========================= */

p {
  margin-bottom: 15px;
}

/* =========================
LÍNEAS SEPARADORAS
========================= */

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

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

img {
  border-radius: 8px;
  margin: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.03);
}

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

#lista {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

ul {
  margin-bottom: 15px;
}

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

a {
  color: #2e5cb8;
  text-decoration: none;
  font-weight: 500;
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #1f3c88;
  color: white;
}

tr:nth-child(even) {
  background-color: #f0f3f8;
}

tr:hover {
  background-color: #e2e8f5;
}

/* =========================
PIE DE PÁGINA
========================= */

footer, h6 + p {
  text-align: center;
  font-size: 14px;
  color: #777;
}

  
