.banner{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 80px 0 0 0;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}
.banner_titulo{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 54px;
    color: #2D2D2D;
}
.banner_caminho{
    display: flex;
    align-items: baseline;
}
.home{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #2D2D2D;
}
.pagina{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
}
.banner_txt{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #2D2D2D;
    width: 600px;
}
.cards_valores{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.card_valores{
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icone_valores{
    text-align: center;
    background: #3C3C3C;
    border-radius: 30px 0px;
    width: 200px;
    height: 170px;
}
.titulo_valores{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    padding: 5px 0;
}
.texto_valores{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #000000;
}
.display_none{
    display: none;
}
@media screen and (orientation: portrait), (max-width: 1000px) {
    .banner {
        background-repeat: no-repeat;
        background-position: center;
        height: 400px;
    }
    .banner_txt p{
        font-size: 16px;
        padding: 0 50px;
    }
    .banner_txt {
        margin: 0;
        width: 90vw;
    }
    .card_valores{
        margin: 20px 0;
    }
}

@media screen and (_), (max-width: 700px) {
    .cards_valores{
        flex-direction: column;
        align-items: center;
    }
}

