.quem_somos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg_quemsomos {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
}

.conteudo {
    width: 800px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: justify;
    color: var(--cor-primary-branca);
    padding: 2rem 0rem;
    gap: 2rem;


    h2 {
        margin-top: 5rem;
    }
}

@media screen and (max-width: 1024px) {
    .bg_quemsomos {
        height: 100vh;
    }
}

@media screen and (max-width: 990px) {
    .quem_somos {
        width: 100%;
    }

    .bg_quemsomos {
        width: 100%;
        height: 70vh;
    }

    .conteudo {
        width: 100%;
        padding: 0rem 2rem;

        h2 {
            margin-top: 0;
        }
    }
}


@media screen and (max-width: 510px) {
    .bg_quemsomos {
        height: 110vh;
    }

    .conteudo {
        gap: 0;
    }
}