@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
body, html {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scrollbar-color: #ccc #eee;
    scrollbar-width: thin;
    background: #fff;
}

input:focus, select:focus, textarea:focus, input, select, textarea, button {
    box-shadow: none !important;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

.h-hidden {
    /*Esconder alguns h1, h2, .... , h6*/
    display: none;
}

.container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: flex-start;
    padding: 0;
}

.item {
    color: #333;
    padding: 50px 30px
}

.item1 {
    background: url('../imagens/bg-home-01.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    text-align: center;
}

.item1 .logo {
    width: 200px;
    margin-bottom: 20px;
}

.item1 h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
}

.item1 p {
    font-size: 22px;
    margin-top: 40px;
}

.item p a {
    color: #113255;
    font-weight: bold;
    text-decoration: none;
}

.item p a:hover {
    color: #7AA82F;
}

.item2 {
    width: 100%;
    color: #333;
    text-align: center;
}

.item2 h2 {
    font-size: 26px;
    line-height: 38px;
    color: #888;
}

.item2 p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
    font-weight: lighter; 
    text-align: justify;
}
.item2 img{
    border:1px solid #ddd;
    padding:2px;
    display: block;
    margin:0 auto;
    margin-top:20px;
}

.item2 .diferenciais{
    max-width: 100%;
    border:none;
    display: block;
    margin:0 auto;
}

@media screen and (min-width:991.2px) {
    .container {
        flex-direction: row;
        justify-content: left;
        padding: 0;
    }
    .item1 {
        width: 500px;
        height: 100vh;
        padding: 80px 40px;
        text-align: right;
        background-position: 20% 50%;
    }
    .item1 .logo {
        margin-bottom: 50px;
    }
    .item1 p {
        margin-top: 70px;
    }
    .item2 {
        padding: 80px 50px;
        text-align: left;
    }
    .item2 img{
        display: inline-block;
        max-width: 24%;
    }
}