#secciones {
    /* padding: 45px 75px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 180px;
    background: var(--main-dark-gray);
    width: 95%;
    margin: auto;
    margin-top: 30px;
    border-radius: 3px; */

    padding: 2rem 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 210px;
    background: #fff;
    width: 100%;
    margin: auto;
}

#secciones .caja {
    /* border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    height: 70px;
    width: 23%;
    cursor: pointer; */

    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E3DE00;
    height: 85px;
    width: 23%;
    cursor: pointer;
}

#secciones .caja:hover {
    cursor: pointer;
}

#secciones .caja img {
    width: 60px;
    height: 60px;
}

#secciones .caja .texto {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    padding: 0 10px;
}

#secciones .caja .texto span {
    font-weight: 600;
    color: #005490;
    font-size: 16px;
    text-align: center;
}

/* Tarjetas */
#tarjetas {
    padding-top: 15px;
    margin-top: 20px;
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

#tarjetas .tarjeta {
    width: 49%;
}

@media screen and (max-width: 900px) {
    #secciones {
        height: auto !important;
        flex-direction: column;
    }

    #secciones .caja {
        width: 100% !important;
        margin-bottom: 20px;
    }
}