.article-information {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 90%;
}

.article-picture img {
    width: 80%;
}

.texto {
    width: 70%;
    max-width: 1000px;
}

.texto .titulo-texto {
    text-align: center;
}

.naranja {
    background-color: #FFDFBD;
    padding: 1.5vw;
    margin-bottom: 1rem;
}

.azul {
    background-color: #D3EDF8;
    padding: 1.5vw;
    margin-bottom: 1rem;
}

.information {
    display: flex;
    justify-content: center;
}

.information .article-information {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin: 0 2rem;
}

.information .article-information ul {
    margin-bottom: 2vw;
    width: auto;
}

.information .article-information .button {
    margin: 0 auto;
    margin-top: 1rem;
}

.information .steps {
    width: 30%;
    height: auto;
    padding: 3rem;
    text-align: center;
    background-color: #D3EDF8;
    margin: 2vw;
    box-shadow: 0 0 8px #eaeaea;
    border-radius: 25px;
}

.information .steps a {
    position: relative;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.information .steps .cuadro {
    width: 35%;
    height: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 0;
    opacity: 0.7;
}

@media (max-width: 800px) {
    .texto {
        width: 90%;
        margin: 0 auto;
    }
    .texto h2 {
        font-size: 2rem;
    }
    .information {
        display: inline;
    }
    .article-picture {
        display: none;
    }
    .information .steps {
        width: 50%;
        margin: 2rem auto;
    }
}