/*---------------------------------------------------------------------------------------------------------------
   AUTOR          : DIEGO BUSTOS PEÑA
   FECHA CREACIÓN : 09-06-2026
   DESCRIPCIÓN    : CSS DE LOS STEPS DEL FORMULARIO
----------------------------------------------------------------------------------------------------------------*/

/* STEP*/
.contenedor_pasos {
    display         : flex;
    justify-content : center;
    align-items     : center;
    gap             : 2rem;
    flex-wrap       : wrap;
    text-align      : center;
    width           : 100%;
}

/* ITEM STEP */
.div_pasos {
    display         : flex;
    flex-direction  : column;
    align-items     : center;
    justify-content : center;
    text-align      : center;
    flex            : 1;
    min-width       : 180px;
}

/* IMAGEN STEP */
.image_pasos {
    width         : 100px;
    margin-bottom : .8rem;
    display       : block;
}

/* TEXTOS STEP */
.div_pasos h5,
.div_pasos p,
.div_pasos span,
.div_pasos small {
    text-align : center;
}