/*parte 1*/
.apresentacao {
    display: flex;
    padding: 250px;
    justify-content: center;
    align-items: center;
    background-image: url(../img/fundo.png) ;
    background-position: center;
    background-size: 100%;
}

.texto-home {
    font-size: 22px;
    color: #fff;
    padding-right: 100px;

}

span{
    font-weight: bold;
}

.texto-home p{
    font-size: 25px;
}

/*parte 2*/
.apresentacao2 {
    display: flex;
    padding: 90px;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
}

.cards{
    padding: 20px;
    display: flex;

}

.espaco{
    padding: 40px;
}

.item{
    display: flex;
    flex-direction: column;
    padding: 50px;
    justify-content: center;
    align-items: center;
    height: 350px;
    width: 230px;
    border-radius: 7px;
    box-shadow: 1px 1px 6px #75847A;
}

.icons{
    width: 120px;
}

.item p{
    font-size: 18px;
    padding-top: 30px;
    text-align: justify;
    color:#009334;
}

/*parte 3*/
.apresentacao3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.texto{
    padding:70px;
    justify-content: center;
    align-items: center;
}

.img-apr {
    width: 400px;
}
.texto h1{
    font-size: 40px;
    color:#545956;
}

.texto p{
    font-size: 25px;
    color:#75847A;
}


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

    .apresentacao {
        display: flex;
        padding: 65px;
        padding-top: 120px;
        padding-bottom: 120px;
        flex-direction: column;
    }

    .img-apr {
        width: 160px;
        padding-bottom: 30px ;
    }

    .texto-home {
        font-size: 12px;
        padding: 10px;
    }

    /*parte 2*/
    .apresentacao2{
        display: flex;
        flex-direction: column;
    }

    .cards{
        display: flex;
        flex-direction: column;
    }
}