/* =========================================================
   TÍTULO SOLO PARA IMPRESIÓN — NIVEL NUCLEAR
   ========================================================= */

/* EN PANTALLA: NO EXISTE VISUALMENTE */
@media screen {
  .print-only-title {
    display: none !important;
  }
}

/* EN IMPRESIÓN / PDF: SE GENERA EL TEXTO */
@media print {
  .print-only-title::before {
    content: "Lo infinito";

    display: block;
    text-align: center;

    font-family: "Times New Roman", Georgia, serif;
    font-size: 28pt;
    font-weight: bold;
    letter-spacing: 1px;

    margin: 20px 0 30px 0;
    color: #000;
  }

  /* Ocultar el PNG solo al imprimir */
  img[src*="lo_infi.png"] {
    display: none !important;
  }
}

/* Página */
@page {
  size: A4;
  margin: 2cm;
}
