.sobre{
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    margin-top: 100px;
}

.sobre .titulo_sobre{
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.sobre .titulo_sobre .title{
    font-family: 'man-normal';
    font-size: 3rem;
    display: flex;
    align-items: center;
}

.sobre_img{
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

.sobre .itens{
    display: grid;
    grid-template-columns: repeat(4, 22%);
    column-gap: 50px;
    justify-content: center;

}

.sobre .itens .img_principal{
    width: 100%;

}

.sobre .itens .text_item{
    padding-top: 25px;
    text-align: center;
}

.sobre .itens .text_item img{
    margin-bottom: 15px;
}

.sobre .itens .text_item p:first-of-type{
    font-family: 'm-semibold';
}

.sobre .itens .text_item p:nth-of-type(2){
    font-family: 'm-regular';
    margin-top: 15px;
}


.sobre_espaco{
    display: grid;
    grid-template-columns: 40% 60%;
    margin: 100px 0px;
}

.sobre_espaco img{
    width: 100%;
}

.sobre_espaco .texto{
    background-color: #FAF5EC;
    display: grid;
    grid-template-columns: 60%;
    align-items: center;
    color: black;
    padding-left: 15%;
}

.sobre_espaco .texto .subtitle{
    font-family: 'man-normal';
    font-size: 3rem;
    margin: 20px 0px;
}

.sobre_espaco .texto .subtitle span{
    color: #CFB174;
}

.sobre_espaco .texto .text_yellow{
    color: #CFB174;
    font-family: 'bold';
    margin-bottom: 20px;

}
 
.sobre_espaco .texto .title{
    font-family: 'm-regular';
}

.sobre_espaco .texto .descricao{
    font-family: 'm-medium';
    margin-bottom: 20px;
}

.sobre_espaco .texto button{
    font-family: 'm-regular';
    margin-bottom: 20px;
    color: #716B60;
    border: 1px solid #716B60;
    padding: 10px 20px;
}


@media only screen and (max-width: 813px) {

    .sobre_espaco {
        display: grid;
        grid-template-columns: 80%;
        justify-content: center;
        margin: 30px 0px;
    }

    .sobre_espaco .texto .subtitle {
        font-family: 'man-normal';
        font-size: 1.2rem;
        margin: 20px 0px;
    }

    .sobre_espaco .texto {
        background-color: #FAF5EC;
        display: grid;
        grid-template-columns: 80%;
        justify-content: center;
        align-items: center;
        color: black;
        padding-left: 15%;
        padding: 10px 0;
    }

    .sobre .titulo_sobre {
        display: grid;
        grid-template-columns: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sobre .sobre_img{
        display: none;
    }

    .sobre .titulo_sobre .title {
        font-family: 'man-normal';
        font-size: 1.5rem;
        display: flex
    ;
        align-items: center;
    }

    .sobre .itens {
        display: grid
    ;
        grid-template-columns: repeat(1, 90%);
        column-gap: 5%;
        justify-content: center;
    }

    .sobre .itens .text_item {
        padding-top: 10px;
        text-align: center;
    }

    .sobre {
        display: grid
    ;
        grid-template-columns: 80%;
        justify-content: center;
        margin-top: 50px;
    }

    .sobre .itens .text_item p:nth-of-type(2) {
        font-family: 'm-regular';
        margin-top: 15px;
        font-size: 1rem;
        margin-bottom: 25px;
    }

}