@media print {
  /* Ocultar elementos no imprimibles */
  .cabecera, 
  .pie-pagina, 
  nav, 
  .boton, 
  .whatsapp-link, 
  .hero-tarjeta,
  .skip-link {
    display: none !important;
  }

  /* Resetear fondos y colores para ahorrar tinta */
  body {
    background-color: white !important;
    color: black !important;
  }

  /* Ajustar tipografías */
  h1, h2, h3, h4, h5, h6, p, a {
    color: black !important;
    text-shadow: none !important;
  }

  /* Mostrar URLs en enlaces */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  /* Ajustar imágenes */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}
