
    body {
        font-family: Arial, sans-serif;
        color: #333;
        margin: 0;
        padding: 0;
    }

    /* Encabezado tipo membrete */
    .header {
        width: 100%;
        margin-bottom: 30px;
    }

    .logos-container {
        width: 100%;
        height: 100px;
        position: relative;
        margin-bottom: 10px;
    }

    .logo-left {
        position: absolute;
        left: 0;
        height: 70px;
        width: auto;
    }

    .logo-right {
        position: absolute;
        right: 0;
        height: 70px;
        width: auto;
    }

    .logo-center {
        display: block;
        margin: 0 auto;
        height: 95px;
        width: auto;
    }

    .header-center {
        text-align: center;
        margin-top: 5px;
    }

    .header-center .titulo {
        font-size: 18px;
        font-weight: bold;
        color: #861542;
        margin-bottom: 5px;
    }

    .header-center .subtitulo {
        font-size: 14px;
        font-weight: bold;
        margin: 2px 0;
    }

    .divider {
        border-top: 3px solid #861542;
        margin: 10px 0 0 0;
    }

    h2 {
        text-align: center;
        font-size: 24px;
        color: #861542;
        margin: 0 0 15px 0;
    }

    table {
        width: 90%;
        margin: 0 auto;
        border-collapse: collapse;
        font-size: 12px;
        table-layout: fixed;
    }

    th, td {
        border: 1px solid #861542;
        padding: 6px;
        text-align: center;
        word-wrap: break-word;
    }

    th {
        background-color: #861542;
        color: #fff;
    }

    tbody tr:nth-child(even) {
        background-color: #fdf0f2;
    }

    .main-content {
        padding-bottom: 20px; /* separación del footer */
    }

    @page {
        margin: 40px 40px 80px 40px; /* 80px para footer */
    }
