.container {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 3% 5% 0% 5%;
}
.left-column, .right-column {
    width: 90%;
    padding: 5%;
    text-align: center;
}

.left-column {
    order: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 0;
    width: 90%;
    padding: 5% 5% 0% 5%;
}

.left-column h1 {
    font-size: 2em;
    color: #ffffff;
    line-height: 35px;
    text-align: left;
}

.left-column p {
    font-size: 1em;
    color: #98b1bd;
    text-align: left;
    font-weight: 500;
}

.left-column img {
    display: none;
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}
.right-column img {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.right-column {
    order: 2;
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
}

.right-column h2 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 20px;
}

.step {
    background: linear-gradient(58deg,#287395 12%, #17475f 100%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.step p {
    font-size: 1.2em;
    margin: 0;
    color: white;
}

.step span {
    font-size: 1em;
    color: #ffffff63;
    display: block;
    margin-top: 10px;
}
/* Media Query para telas maiores */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .left-column, .right-column {
        width: 50%;
        text-align: left;
    }

    .left-column {
        order: 1;
    }
    .left-column h1 {
        font-size: 2em;
        color: #ffffff;
    }
    .right-column {
        order: 2;
    }
    .right-column img {
        display: none;
    }
    .left-column img {
        display: block;
        width: 100%;
        max-width: 600px;
        margin-top: 40px;
    }
}
@media (min-width: 1024px) {
.left-column h1 {
    font-size: 3em;
    color: #ffffff;
    line-height: .9em;
}
.container {
        width: 80%;
    padding: 3% 10% 0% 10%;
}
}
@media (min-width: 1600px) {
.container {
        width: 60%;
    padding: 3% 20% 0% 20%;
}
}