/* =========================================================
   PRINT_PATRON.CSS — PATRÓN DEFINITIVO
   Reutilizable para TODO el sitio
   ========================================================= */


/* =========================================================
   PANTALLA
   ========================================================= */

@media screen {

  .print-only-title,
  .print-video-placeholder {
    display: none !important;
  }
}


/* =========================================================
   IMPRESIÓN
   ========================================================= */

@media print {

  /* ---------- TÍTULOS SOLO PAPEL ---------- */

  .print-only-title {
    display: block !important;
    text-align: center;
    margin: 20px 0 30px 0;

    font-family: "Times New Roman", Georgia, serif;
    font-size: 28pt;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
  }

  .print-only-title::before {
    content: attr(data-title);
  }

  /* Ocultar imagen gráfica del título */
  img[src*="patron.png"] {
    display: none !important;
  }


  /* ---------- MULTIMEDIA ---------- */

  /* Ocultar videos reales */
  .screen-only-video {
    display: none !important;
  }

  /* Marcador semántico para papel */
  .print-video-placeholder {
    display: block;
    margin: 20px auto;
    padding: 12px;
    max-width: 390px;

    border: 1px solid #000;
    text-align: center;

    font-family: "Times New Roman", Georgia, serif;
    font-size: 10pt;
    font-style: italic;
    color: #000;
  }


  /* ---------- COLOR ---------- */

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }


  /* ---------- PÁGINA ---------- */

  @page {
    size: A4;
    margin: 2cm;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 12pt;
    line-height: 1.55;
  }


  /* ---------- ANCHO CANÓNICO ---------- */

  table,
  table[width="600"] {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }


  /* ---------- LIMPIEZA ---------- */

  nav,
  footer,
  .nav,
  .btn-flotante,
  a[href^="mailto:"],
  a[href^="javascript:"] {
    display: none !important;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }
}
