/* ================================================================
   PHILOMANUS — Print Styles
   Oculta navegación, formularios y elementos interactivos.
   Muestra contenido principal con tipografía serif sobre blanco.
   ================================================================ */

@media print {

  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Ocultar elementos interactivos */
  .nav,
  .btn--primary,
  .contacto__form,
  .form__honeypot,
  .nav__mobile-menu,
  .footer {
    display: none !important;
  }

  /* Layout simplificado */
  .container {
    max-width: 100%;
    padding: 0;
  }

  section {
    min-height: auto;
    padding: 1cm 0;
    page-break-inside: avoid;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  /* URLs visibles junto a enlaces */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666 !important;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}
