@media print {

    /* ── Ocultar elementos no esenciales ── */
    .indice-alfabetico,
    nav,
    aside.consejo,
    .skip-link,
    iframe,
    map,
    .form-contenedor input[type="reset"],
    .form-contenedor button[type="reset"] {
        display: none !important;
    }

    /* ── Reset general ── */
    * {
        background: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* ── Página ── */
    @page {
        margin: 2cm;
        size: A4 portrait;
    }

    body {
        font-family: 'Georgia', 'Times New Roman', serif; /* Serif legible en papel */
        font-size: 11pt;
        line-height: 1.5;
        color: #000 !important;
        background: #fff !important;
        margin: 0;
        padding: 0;
    }

    /* ── Cabecera ── */
    header {
        display: block !important;
        background: none !important;
        border: none !important;
        border-bottom: 1pt solid #000 !important;
        padding: 0 0 0.5cm 0 !important;
        margin: 0 0 0.5cm 0 !important;
        text-align: left !important;
    }

    header img {
        max-width: 4cm !important;
        height: auto !important;
        display: block !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    header h1 {
        font-size: 16pt !important;
        color: #000 !important;
        margin: 0.3cm 0 0 0 !important;
    }

    header .descripcion-web {
        display: none !important; /* Quita descripción larga */
    }

    header p:last-child { /* "Estás en:" */
        font-size: 8pt !important;
        color: #444 !important;
        margin: 0 !important;
    }

    /* ── Main ── */
    main {
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
    }

    /* ── Artículos ── */
    article {
        margin: 0 0 0.5cm 0 !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
        page-break-inside: avoid;
    }

    /* ── Títulos ── */
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        font-family: 'Georgia', 'Times New Roman', serif;
        page-break-after: avoid;
    }

    h1 { font-size: 16pt; margin-top: 0.8cm; }
    h2 { font-size: 14pt; margin-top: 0.6cm; }
    h3 { font-size: 12pt; margin-top: 0.5cm; }

    /* ── Párrafos ── */
    p {
        orphans: 3;
        widows: 3;
        margin-bottom: 0.3cm;
    }

    /* ── Tablas ── */
    .tabla {
        width: 100% !important;
        border-collapse: collapse !important;
        font-size: 10pt !important;
        page-break-inside: avoid;
    }

    .tabla caption {
        font-size: 11pt !important;
        font-weight: bold !important;
        color: #000 !important;
        text-align: left !important;
        margin-bottom: 0.2cm !important;
    }

    .tabla thead th {
        background-color: #ddd !important;
        color: #000 !important;
        padding: 6pt 8pt !important;
        border: 1pt solid #000 !important;
        font-weight: bold !important;
    }

    .tabla th, .tabla td {
        padding: 5pt 8pt !important;
        border: 1pt solid #555 !important;
        color: #000 !important;
        text-align: left !important;
    }

    .tabla tbody tr:nth-child(even) {
        background-color: #f0f0f0 !important;
    }

    /* ── Enlaces: mostrar URL ── */
    a {
        color: #000 !important;
        text-decoration: underline !important;
        word-wrap: break-word;
    }

    /* Solo mostrar URL de enlaces externos */
    a[href^="http"]::after,
    a[href^="https://"]::after {
        content: " (" attr(href) ")";
        font-size: 8pt;
        color: #444;
        text-decoration: none !important;
        font-style: italic;
    }

    /* No mostrar URL para anclas internas */
    a[href^="#"]::after {
        content: "" !important;
    }

    /* ── Pie de página ── */
    footer {
        display: block !important;
        background: none !important;
        border: none !important;
        border-top: 1pt solid #000 !important;
        color: #000 !important;
        padding: 0.3cm 0 0 0 !important;
        margin-top: 0.5cm !important;
        font-size: 9pt !important;
    }

    footer a {
        color: #000 !important;
    }

    footer a::after {
        content: "" !important; /* No mostrar URL en footer */
    }
}
