.system_examples_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--cinza-escuro);
    padding: 5vh 2vw;
    position: relative;
}
.system_example {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 8em;
}
.system_text_box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 1.5em;
    width: 45%;
    line-height: 36px;
}

.system_text_box > h1, p {
    color: var(--white);
    font-family: 'Poppins';
    position: relative;
    z-index: 2;
}

.system_example > img {
    position: relative;
    z-index: 2;
    width: 40%;
}

@media (max-width: 1000px) {
    .system_examples_container {
        padding: 12vh 4vw;
    }
    .system_example  {
        flex-direction: column-reverse;
    }
    .system_text_box {
        width: 90%;
    }

    .system_text_box > h1 {
        font-size: 1.5em;
    }

    .system_text_box > p {
        font-size: .8em;
        margin-bottom: 1em;
    }

    .system_example > img {
        width: 90%;
    }

    .bastard > img {
        margin-bottom: 2em;
    }
}