.conv-page {
    width: 100%;
    background: #f5f8fc;
    font-family: "Open Sans", Arial, sans-serif;
}

.conv-container {
    width: calc(100% - 40px);
    max-width: 1450px;
    margin: 0 auto;
}

.conv-hero {
    padding: 52px 0 45px;
    background: linear-gradient(135deg, #082b58, #0b3d75);
    color: #fff;
}

.conv-eyebrow {
    display: block;
    margin-bottom: 7px;

    color: #72c2f2;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.conv-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.conv-hero p {
    max-width: 720px;
    margin: 12px 0 0;

    color: rgba(255,255,255,.82);

    font-size: 14px;
    line-height: 1.6;
}


.conv-section {
    padding: 45px 0 65px;
}


.conv-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
    padding: 15px;

    border: 1px solid #dce5ee;
    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 3px 13px
        rgba(11,50,100,.04);
}

.conv-search {
    position: relative;

    width: 100%;
    max-width: 600px;
}

.conv-search > i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #8190a1;

    font-size: 13px;

    pointer-events: none;
}

.conv-search input {
    width: 100%;
    height: 44px;

    padding: 8px 15px 8px 40px;

    border: 1px solid #d5e0ea;
    border-radius: 8px;

    outline: none;

    background: #fff;

    color: #34495e;

    font-size: 12.5px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.conv-search input::placeholder {
    color: #9ba8b5;
}

.conv-search input:focus {
    border-color: #0b3264;

    box-shadow:
        0 0 0 3px
        rgba(11,50,100,.08);
}


.conv-total {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 8px 13px;

    border: 1px solid #d5e0eb;
    border-radius: 20px;

    background: #f8fbfe;

    color: #65778b;

    font-size: 11px;

    white-space: nowrap;
}

.conv-total i,
.conv-total strong {
    color: #0b3264;
}


.conv-accordion {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.conv-year {
    overflow: hidden;

    border: 1px solid #dce5ee;
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 4px 16px
        rgba(11, 50, 100, .05);
}


.conv-year-header {
    width: 100%;
}


/* BOTÓN PRINCIPAL */

.conv-year-button {
    position: relative;

    width: 100%;
    min-height: 67px;

    display: flex;
    align-items: center;

    padding: 14px 58px 14px 18px;

    border: 0;

    outline: 0;

    background: #ffffff;

    color: #0b3264;

    font-family: "Open Sans", Arial, sans-serif;

    font-size: 14px;
    font-weight: 800;

    text-align: left;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.conv-year-button:hover {
    background: #f5f9fd;
}

.conv-year-button.is-open {
    background: #eef5fb;
}

.conv-year-button::after {
    content: "\f078";

    position: absolute;

    right: 20px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(0deg);

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: #0b3264;

    font-size: 13px;

    transition:
        transform .25s ease;
}

.conv-year-button.is-open::after {
    transform:
        translateY(-50%)
        rotate(180deg);
}

.conv-year-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 11px;

    border-radius: 8px;

    background: #0b3264;

    color: #fff;

    font-size: 14px;
}
.conv-year-title {
    font-size: 15px;
    font-weight: 800;
}

.conv-year-count {
    min-width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 12px;

    padding: 0 8px;

    border-radius: 20px;

    background: #dcebf8;

    color: #0b3264;

    font-size: 10px;
    font-weight: 800;
}

.conv-year-body {
    display: none;
}

.conv-year-body.is-open {
    display: block;
}

.conv-year-content {
    padding: 18px;

    border-top: 1px solid #dce5ee;

    background: #f8fafc;
}

.conv-card {
    margin-bottom: 15px;

    overflow: hidden;

    border: 1px solid #dce5ee;
    border-radius: 11px;

    background: #fff;

    box-shadow:
        0 3px 12px
        rgba(11,50,100,.04);
}

.conv-card:last-child {
    margin-bottom: 0;
}

.conv-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px;

    border-bottom: 1px solid #e7edf3;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fbfcfe
        );
}

.conv-title-wrap {
    min-width: 0;
    flex: 1;
}

.conv-card-label {
    display: block;

    margin-bottom: 5px;

    color: #0072bc;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.conv-title-wrap h3 {
    margin: 0;

    color: #0b3264;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.5;

    overflow-wrap: anywhere;
}

.conv-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 95px;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    white-space: nowrap;
}

.estado-concluida {
    background: #e7f6ed;
    color: #dc3545;
}

.estado-proceso {
    background: #e8f2ff;
    color: #075ca8;
}

.estado-suspendida {
    background: #fff4df;
    color: #9a6500;
}

.estado-cancelada {
    background: #fdebec;
    color: #b4232c;
}

.estado-otro {
    background: #edf0f3;
    color: #5f6d7b;
}

.conv-files-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;

    background: #fff;
}

.conv-file-group {
    min-width: 0;

    padding: 16px;

    border-right: 1px solid #e7edf3;
}

.conv-file-group:last-child {
    border-right: 0;
}

.conv-file-group-title {
    min-height: 38px;

    display: flex;
    align-items: flex-start;

    gap: 7px;

    margin-bottom: 10px;

    color: #0b3264;

    font-size: 10.5px;
    font-weight: 800;

    line-height: 1.35;
}

.conv-file-group-title i {
    margin-top: 2px;

    color: #0072bc;
}

.conv-file-list {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.conv-file {
    display: grid;

    grid-template-columns:
        28px minmax(0,1fr) auto;

    align-items: center;

    gap: 7px;

    min-height: 45px;

    padding: 7px;

    border: 1px solid #e0e7ee;
    border-radius: 7px;

    background: #fafcfe;

    color: #41576d;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.conv-file:hover {
    transform: translateY(-1px);

    border-color: #a9c2d9;

    background: #eef5fb;

    color: #0b3264;
}

.conv-file-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: #e8f1f9;

    color: #c62828;

    font-size: 14px;
}

.conv-file-name {
    min-width: 0;

    font-size: 9.5px;
    line-height: 1.35;

    overflow-wrap: anywhere;
}


.conv-open-icon {
    color: #8b9bad;

    font-size: 9px;
}

.conv-no-file {
    padding: 10px;

    border: 1px dashed #d7e0e9;
    border-radius: 7px;

    color: #9aa6b3;

    font-size: 9.5px;

    text-align: center;
}

.conv-empty {
    padding: 55px 25px;

    border: 1px solid #dce5ee;
    border-radius: 14px;

    background: #fff;

    text-align: center;
}

.conv-empty > i {
    margin-bottom: 14px;

    color: #0b3264;

    font-size: 45px;
}

.conv-empty h2 {
    margin: 0 0 8px;

    color: #0b3264;

    font-size: 20px;
}

.conv-empty p {
    margin: 0;

    color: #718195;

    font-size: 12px;
}

@media (max-width: 1100px) {

    .conv-files-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .conv-file-group {
        border-bottom: 1px solid #e7edf3;
    }

    .conv-file-group:nth-child(2n) {
        border-right: 0;
    }

}

@media (max-width: 768px) {

    .conv-container {
        width: calc(100% - 30px);
    }

    .conv-hero {
        padding: 38px 0;
    }

    .conv-hero h1 {
        font-size: 31px;
    }

    .conv-hero p {
        font-size: 13px;
    }

    .conv-section {
        padding: 35px 0 48px;
    }

    .conv-toolbar {
        gap: 12px;
    }

    .conv-year-button {
        min-height: 62px;

        padding:
            12px 54px 12px 14px;
    }

    .conv-year-title {
        font-size: 14px;
    }

    .conv-year-content {
        padding: 14px;
    }

}

@media (max-width: 575.98px) {

    .conv-container {
        width: calc(100% - 24px);
    }


    /* HERO */

    .conv-hero {
        padding: 32px 0;
    }

    .conv-hero h1 {
        font-size: 26px;
    }

    .conv-hero p {
        font-size: 12px;
    }


    /* SECCIÓN */

    .conv-section {
        padding: 27px 0 38px;
    }


    /* BUSCADOR */

    .conv-toolbar {
        flex-direction: column;
        align-items: stretch;

        gap: 10px;

        padding: 12px;
    }

    .conv-search {
        max-width: none;
    }

    .conv-total {
        align-self: flex-start;
    }


    /* ACORDEÓN */

    .conv-accordion {
        gap: 10px;
    }

    .conv-year {
        border-radius: 10px;
    }

    .conv-year-button {
        min-height: 58px;

        padding:
            11px 48px 11px 12px;
    }

    .conv-year-button::after {
        right: 15px;

        font-size: 12px;
    }


    /* AÑO */

    .conv-year-icon {
        width: 34px;
        height: 34px;

        min-width: 34px;

        margin-right: 9px;

        border-radius: 7px;

        font-size: 12px;
    }

    .conv-year-title {
        font-size: 12.5px;
    }

    .conv-year-count {
        min-width: 24px;
        height: 24px;

        margin-left: 8px;

        padding: 0 7px;

        font-size: 9px;
    }


    /* CUERPO */

    .conv-year-content {
        padding: 10px;
    }


    /* TARJETAS */

    .conv-card {
        border-radius: 9px;
    }

    .conv-card-header {
        flex-direction: column;

        gap: 10px;

        padding: 14px;
    }

    .conv-title-wrap h3 {
        font-size: 12px;
        line-height: 1.45;
    }

    .conv-status {
        min-width: 0;

        padding: 5px 9px;

        font-size: 8.5px;
    }


    /* DOCUMENTOS */

    .conv-files-grid {
        grid-template-columns: 1fr;
    }

    .conv-file-group {
        padding: 13px;

        border-right: 0;
        border-bottom: 1px solid #e7edf3;
    }

    .conv-file-group:last-child {
        border-bottom: 0;
    }

    .conv-file-group-title {
        min-height: auto;

        margin-bottom: 8px;

        font-size: 10px;
    }

    .conv-file-name {
        font-size: 10px;
    }

    .conv-file {
        min-height: 43px;
    }

}

@media (max-width: 390px) {

    .conv-container {
        width: calc(100% - 18px);
    }

    .conv-hero h1 {
        font-size: 23px;
    }

    .conv-year-button {
        padding-right: 42px;
    }

    .conv-year-title {
        font-size: 11.5px;
    }

    .conv-year-count {
        margin-left: 6px;
    }

    .conv-title-wrap h3 {
        font-size: 11.5px;
    }

}