/* --- Configuración Global y Fuentes --- */
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: #f0f2f5;
  color: #333;
  transition: background-color 0.4s, color 0.4s;
}

/* --- Encabezado y Pie de Página --- */
header, footer {
  background-color: #004080;
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 4px solid #002a53;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

footer {
  background: #333;
  color: #aaa;
  margin-top: 3rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Contenido Principal --- */
main {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 20px;
  display: grid;
  justify-items: center;
}

/* --- Títulos y Listas --- */
h2 {
  color: #0056b3;
  margin-top: 2rem;
}

ul, ol {
  margin-left: 1.5rem;
}

/* --- Botón de Volver --- */
.boton-volver {
  display: inline-block;
  margin-top: 2rem;
  padding: 10px 16px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-volver:hover {
  background-color: #0056b3;
}



/* --- Tarjeta de Unidad (si se usa) --- */
section.unidad-contenido {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  border-left: 6px solid #004080;
  width: 100%;
  box-sizing: border-box;
  animation: fadeIn 0.5s ease-out;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unidad-contenido h2 {
  font-family: 'Roboto', sans-serif;
  color: #004080;
  border-bottom: 2px solid #f0f2f5;
  padding-bottom: 15px;
  font-size: 2rem;
  margin-top: 0;
}

.unidad-contenido p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.unidad-contenido ul,
.unidad-contenido ol {
  padding-left: 30px;
  margin-bottom: 1.5rem;
}

.unidad-contenido li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.unidad-contenido strong,
.unidad-contenido b {
  color: #004080;
  font-weight: 700;
}

/* --- Modo Oscuro --- */
body.oscuro {
  background-color: #121212;
  color: #e0e0e0;
}

body.oscuro header {
  background-color: #1e3a5f;
  border-bottom-color: #0d243d;
}

body.oscuro footer {
  background: #1a1a1a;
  color: #888;
}

body.oscuro section.unidad-contenido {
  background: #1e1e1e;
  border-left-color: #80bfff;
  box-shadow: 0 8px 16px rgba(255,255,255,0.05);
}

body.oscuro .unidad-contenido h2 {
  color: #80bfff;
  border-bottom-color: #333;
}

.title{
    color:#cce0ff;
}