/* =========================================================
   PRINT_MAPO.CSS
   Impresión filosófica – Mapoteca
   Compatible Cyberfractal – illex.ar
   ========================================================= */


/* =========================================================
   1. TÍTULO SOLO PARA IMPRESIÓN
   ========================================================= */

/* En pantalla: no existe */
@media screen {
  .print-only-title {
    display: none !important;
  }
}

/* En impresión / PDF */
@media print {
  .print-only-title::before {
    content: "Mathesis Universalis";
    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: #000000;
  }

  /* Ocultar imagen PNG del título */
  img[src*="mathesis.png"] {
    display: none !important;
  }
}


/* =========================================================
   2. FUERZA IMPRESIÓN A COLOR (CRÍTICO)
   ========================================================= */

@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}


/* =========================================================
   3. CONFIGURACIÓN DE PÁGINA
   ========================================================= */

@page {
  size: A4;
  margin: 2cm;
}


/* =========================================================
   4. TEXTO Y TIPOGRAFÍA
   ========================================================= */

@media print {

  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 12pt;
    line-height: 1.5;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  em {
    font-style: italic;
  }
}


/* =========================================================
   5. ANCHO CANÓNICO (600px)
   ========================================================= */

@media print {

  table {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  table[width="600"] {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  td {
    background: transparent !important;
  }
}


/* =========================================================
   6. IMÁGENES (COLOR PRESERVADO)
   ========================================================= */

@media print {

  img {
    max-width: 100% !important;
    height: auto !important;
    filter: none !important;
  }

  /* Marcos decorativos sin sombras pesadas */
  .imagen-marco {
    box-shadow: none !important;
    border-radius: 4px;
  }
}


/* =========================================================
   7. ENLACES EN IMPRESIÓN
   ========================================================= */

@media print {
  a {
    color: #000000 !important;
    text-decoration: none !important;
  }
}


/* =========================================================
   8. OCULTAR ELEMENTOS NO FILOSÓFICOS
   ========================================================= */

@media print {

  nav,
  footer,
  .btn-flotante,
  .nav,
  a[href^="mailto:"],
  a[href^="javascript:"] {
    display: none !important;
  }
}


/* =========================================================
   9. FIRMA Y CIERRE
   ========================================================= */

@media print {

  center {
    margin: 30px 0;
    font-weight: bold;
    letter-spacing: 1px;
  }

  div[align="right"] {
    font-size: 10pt;
  }
}
