.home__empresa {
    background-color: var(--cor-escura);
    padding: 3rem 0;
}

.home__empresa__container {
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    padding: 0 1rem;
}

.home__empresa__imagem {
    display: flex;
    justify-content: end;
    margin: 1rem 0;
}

.home__empresa__imagem img {
    width: 100%;
    align-self: center;
}

.home__empresa__texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
}

@media screen and (max-width: 768px) {
    .home__empresa__container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home__empresa__imagem img {
        max-width: 600px;
        align-self: center;
    }
}