/*---------------------------------------------------------------------------------------------------------------
   AUTOR          : DIEGO BUSTOS PEÑA
   FECHA CREACIÓN : 09-06-2026
   DESCRIPCIÓN    : CSS DE LAS PESTAÑAS DEL FORMULARIO GENERAL
----------------------------------------------------------------------------------------------------------------*/

/* TABS POSTULACIÓN */
#tab_postulacion {
    display         : flex;
    justify-content : center;
    align-items     : center;
    gap             : 1.2rem;
    padding         : 1.4rem 1.6rem;
    border-bottom   : 1px solid rgba(203,213,225,.75);
    background      : linear-gradient(
        to bottom,
        #ffffff 0%,
        #f8fbff 100%
    );
    border-radius   : 30px 30px 0 0;
    overflow        : visible;
}

#tab_postulacion .nav-item {
    flex : 1;
}

#tab_postulacion .nav-link {
    position         : relative;
    width            : 100%;
    display          : flex;
    align-items      : center;
    justify-content  : center;
    text-align       : center;
    padding          : 1.15rem 1.5rem;
    border           : none !important;
    border-radius    : 24px;
    background-color : rgba(226,232,240,.55);
    color            : #526581;
    font-size        : 1rem;
    font-weight      : 700;
    transition       : all .25s ease;
}

#tab_postulacion .nav-link.active {
    position      : relative;
    background    : linear-gradient(
        135deg,
        #234d96 0%,
        #3f67aa 100%
    );
    color         : #ffffff !important;
    font-weight   : 700;
    border-radius : 24px;
    box-shadow    : 
        0 10px 28px rgba(35,77,150,.22),
        inset 0 -4px 0 #d8a63c;
    transform     : translateY(-2px);
}

#tab_postulacion .nav-link.active::after {
    content       : '';
    position      : absolute;
    left          : 8%;
    bottom        : 10px;
    width         : 84%;
    height        : 4px;
    border-radius : 50px;
    background       : linear-gradient(
        90deg,
        #f3c55a 0%,
        #d89f2d 100%
    );
    opacity       : .95;
}