@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');

#presentation {
    margin-inline: 2rem;
    margin-top: 1rem;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#objetivos {
    margin: 2vw;
    text-align: justify;
    display: flex;
    flex-direction: column;
}

.objetivo {
    position: relative;
    width: 100%;
    height: fit-content;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: white;
    z-index: -10;
    padding-inline: 3rem;
    padding-block: 2rem;
    box-sizing: border-box;
}

.text {
    display: flex;
    flex-direction: column;
    line-height: normal;
}
.text > h3{
    margin-bottom: 1vw;
}

@media screen and (max-width: 600px) {
    * {
        text-align: center;
    }
}