@media print {

  html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
  }

  /* --- Texto general --- */
  body {
    font-family: "Source Serif Pro", serif;
    font-size: 12.5pt;          /* 🟢 antes 11.5pt → +10% más grande */
    line-height: 1.55;
    color: #111;
    margin: 2.2cm;
  }

  /* --- Encabezados --- */
  h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans 3", sans-serif;
    color: #003366;
    margin-top: 1.6em;
    margin-bottom: 0.4em;
  }

  h1 { font-size: 22pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 15pt; }
  h4 { font-size: 13pt; }

  /* --- Listas --- */
  ul, ol { margin-left: 1.5em; margin-bottom: 0.8em; }

  /* --- Tablas --- */
  table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12pt;        /* 🟢 antes 11pt → un poco mayor */
    margin: 1em 0;
  }

  th, td {
    border: 1px solid #ccc;
    padding: 8px 10px;      /* más espacio visual */
  }

  th {
    background: #f0f4f9;
    color: #003366;
    font-weight: 600;
  }

  /* --- Bloques de código --- */
  pre, code {
    font-family: "Fira Code", monospace;
    font-size: 11.5pt;   /* 🟢 antes 10.5pt → más legible */
    background: #f8f9fb;
    border: 1px solid #ccd3db;
    border-radius: 5px;
    padding: 6px 8px;
    color: #222;
  }

  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 1em 0;
  }

  /* --- Numeración de páginas --- */
  @page {
    size: A4;
    margin: 2.2cm;
    @bottom-center {
      content: "Página " counter(page) " de " counter(pages);
      font-size: 9.5pt;
      color: #555;
      font-family: "Source Sans 3", sans-serif;
    }
  }

  h1 { page-break-before: always; }
  h2, h3, table, pre { page-break-inside: avoid; }
}
