
/* =========================================================
   CONTENEDOR PRINCIPAL
========================================================= */

.convocatorias-page {
    background: #fff;
    padding: 45px 0 70px;
}

.convocatorias-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   TÍTULO PRINCIPAL
========================================================= */

.convocatorias-header {
    text-align: center;
    margin-bottom: 40px;
}

.convocatorias-header h1 {
    color: #073b70;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.convocatorias-header .linea {
    width: 75px;
    height: 4px;
    background: #073b70;
    margin: 0 auto 18px;
    border-radius: 5px;
}

.convocatorias-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}


/* =========================================================
   FILTROS
========================================================= */

.filtros-convocatorias {
    background: #f5f7fa;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 35px;
}

.filtros-convocatorias h3 {
    color: #073b70;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
}

.filtro-input {
    height: 45px;
    border: 1px solid #d5dbe1;
    border-radius: 5px;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    background: #fff;
    margin-bottom: 10px;
}

.filtro-input:focus {
    outline: none;
    border-color: #073b70;
}


/* =========================================================
   TARJETAS DE CONVOCATORIAS
========================================================= */

.convocatoria-card {
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.convocatoria-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   CABECERA DE LA TARJETA
========================================================= */

.convocatoria-card-header {
    padding: 22px 25px 15px;
    border-bottom: 1px solid #eeeeee;
}

.convocatoria-card-header h2 {
    color: #073b70;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 12px;
}

.convocatoria-card-header h2 i {
    margin-right: 8px;
}

.fecha-convocatoria {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.fecha-convocatoria i {
    color: #073b70;
    font-size: 16px;
}


/* =========================================================
   CUERPO DE LA TARJETA
========================================================= */

.convocatoria-card-body {
    padding: 25px;
}

.convocatoria-imagen {
    text-align: center;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 22px;
}

.convocatoria-imagen img {
    max-width: 75%;
    width: auto;
    height: auto;
    max-height: 600px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
}


/* =========================================================
   BOTONES
========================================================= */

.documentos-convocatoria {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-convocatoria {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: #073b70;
    color: #fff !important;

    padding: 13px 18px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    text-decoration: none !important;

    transition: all 0.25s ease;

    border: none;
}

.btn-convocatoria:hover {
    background: #0b518f;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-convocatoria i {
    font-size: 15px;
}


/* =========================================================
   ESTADO VIGENTE
========================================================= */

.estado-vigente {
    display: inline-block;

    background: #e9f5ed;
    color: #22733d;

    padding: 6px 12px;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;

    margin-left: 10px;
}


/* =========================================================
   SIN RESULTADOS
========================================================= */

.sin-convocatorias {
    text-align: center;

    padding: 50px 20px;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    background: #fafafa;
}

.sin-convocatorias i {
    font-size: 45px;
    color: #aaa;
    margin-bottom: 15px;
}

.sin-convocatorias h3 {
    color: #555;
    font-size: 20px;
}


/* =========================================================
   RESPONSIVE - TABLETS
========================================================= */

@media (max-width: 991px) {

    .convocatorias-header h1 {
        font-size: 32px;
    }

    .convocatoria-card-header h2 {
        font-size: 20px;
    }

    .convocatoria-imagen img {
        max-width: 85%;
    }
}


/* =========================================================
   RESPONSIVE - CELULARES
========================================================= */

@media (max-width: 768px) {

    .convocatorias-page {
        padding: 30px 0 50px;
    }

    .convocatorias-container {
        padding: 0 15px;
    }

    .convocatorias-header {
        margin-bottom: 30px;
    }

    .convocatorias-header h1 {
        font-size: 27px;
    }

    .convocatorias-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .convocatoria-card-header {
        padding: 18px 15px 14px;
    }

    .convocatoria-card-header h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .convocatoria-card-body {
        padding: 15px;
    }

    .convocatoria-imagen {
        padding: 10px;
    }

    .convocatoria-imagen img {
        max-width: 100%;
    }

    .documentos-convocatoria {
        display: block;
    }

    .btn-convocatoria {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .estado-vigente {
        display: block;
        width: fit-content;
        margin-left: 0;
        margin-top: 10px;
    }
}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {

    .convocatorias-header h1 {
        font-size: 24px;
    }

    .convocatoria-card-header h2 {
        font-size: 16px;
    }

    .fecha-convocatoria {
        font-size: 13px;
    }

    .btn-convocatoria {
        font-size: 12px;
        padding: 12px 10px;
    }
}