/* =========================================
   IMPRESIÓN — ESTABLE MULTI NAVEGADOR
   ========================================= */

/* ---------- PANTALLA ---------- */
@media screen {
  .print-only-title {
    display: none;
  }
}

/* ---------- IMPRESIÓN ---------- */
@media print {

  /* TÍTULO GENERADO */
  .print-only-title::before {
    content: attr(data-title);

    display: block;
    text-align: center;

    font-family: "Times New Roman", Georgia, serif;
    font-size: 26pt;
    font-weight: bold;

    margin: 0 0 14pt 0;
    padding: 0;

    color: #000;
  }

  /* OCULTAR TÍTULOS PNG */
  img[src*="pitag"],
  img[src*="motiv"],
  img[src*="present"],
  img[src*="filo"],
  img[src*="titulo"],
  img[src*="title"] {
    display: none !important;
  }

  /* OCULTAR TODO LO INTERACTIVO */
  a,
  .btn-flotante,
  .b1,
  img[alt*="Imprimir"],
  img[alt*="Volver"],
  img[alt*="Arriba"],
  img[alt*="Comunicate"] {
    display: none !important;
  }

  /* EVITAR PÁGINA EN BLANCO (CRÍTICO) */
  body {
    margin: 0;
  }

  table {
    page-break-inside: auto;
  }
}

/* Página */
@page {
  size: A4;
  margin: 2cm;
}
