﻿/* ===== Documento base ===== */

.informe-acciones {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    max-width: 210mm;
    margin: 20px auto 12px;
}

.informe-documento {
    width: 210mm;
    min-height: 297mm;
    margin: 0 auto 30px;
    padding: 18mm 16mm;
    background: #fff;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

/* ===== Cabecera ===== */

.cabecera-informe {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 3px solid #245f8f;
}

.cabecera-empresa {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cabecera-logo {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cabecera-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
.nombre-empresa {
    font-size: 15px;
    font-weight: 700;
    color: #245f8f;
}

.cabecera-linea-pequena {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.badge-fecha {
    background: #edf4f8;
    color: #245f8f;
    border: 1px solid #c7dbe8;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.titulo-informe-barra {
    background: #245f8f;
    margin: 0 -16mm 18px;
    padding: 12px 16mm;
}

    .titulo-informe-barra h1 {
        margin: 0;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-align: center;
    }

/* ===== Secciones ===== */

.informe-seccion {
    margin-top: 22px;
    page-break-inside: avoid;
}

    .informe-seccion h2 {
        display: flex;
        align-items: center;
        margin: 0 0 14px;
        padding: 8px 12px;
        border-left: 5px solid #245f8f;
        background: #edf4f8;
        color: #245f8f;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.3px;
    }

.informe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

/* ===== Campos ===== */

.campo-informe {
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #fafbfc;
    border: 1px solid #e5e9ed;
    border-left: 3px solid #245f8f;
    border-radius: 4px;
}

.campo-informe-etiqueta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #245f8f;
    margin-bottom: 3px;
}

.campo-informe-valor {
    white-space: pre-wrap;
    color: #222;
}

/* ===== Sesiones de seguimiento ===== */

.informe-sesion {
    margin-bottom: 16px;
    border: 1px solid #b9c8d2;
    border-radius: 6px;
    overflow: hidden;
    break-inside: avoid;
    page-break-inside: avoid;
}

.informe-sesion-cabecera {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    background: #edf4f8;
    border-bottom: 1px solid #b9c8d2;
    font-size: 13px;
    color: #245f8f;
}

.informe-sesion-contenido {
    padding: 12px 14px;
}

.informe-etiqueta {
    margin-bottom: 6px;
    color: #245f8f;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.informe-texto {
    white-space: pre-wrap;
    line-height: 1.55;
}

.informe-sin-datos {
    padding: 24px;
    border: 1px dashed #b9c8d2;
    border-radius: 6px;
    text-align: center;
    color: #888;
}

/* ===== Impresión ===== */

@media print {
    .no-imprimir {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .informe-documento {
        width: auto;
        min-height: auto;
        margin: 0;
        padding: 8mm 10mm;
        box-shadow: none;
    }

    .titulo-informe-barra {
        margin: 0 -10mm 20px;
        padding: 10px 10mm;
    }

    .informe-sesion {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    @page {
        size: A4;
        margin: 12mm;
    }
}

/* ===== Responsive pantalla ===== */

@media (max-width: 900px) {
    .informe-documento {
        width: auto;
        min-height: auto;
        margin: 10px;
        padding: 20px;
    }

    .cabecera-informe {
        flex-direction: column;
        gap: 12px;
    }

    .titulo-informe-barra {
        margin: 0 -20px 20px;
    }

    .informe-grid,
    .informe-sesion-cabecera {
        grid-template-columns: 1fr;
    }

    .informe-acciones {
        margin: 10px;
    }
}
.linea-datos-trabajador {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    padding: 10px 14px;
    background: #f7f9fb;
    border: 1px solid #e5e9ed;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
}

    .linea-datos-trabajador span strong {
        color: #245f8f;
    }