.banner{
    background-color: #FFFFFF;
    min-height: 300px;
    background-image: url(../img_banner/bmw.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center -150px;
    transition: all ease 1s;
    position: relative;
    text-align: center;
}

.banner h1{
    font-family: titulo;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color:#FFFFFF;
    text-shadow: 0px 0px 6px rgba(0,0,0,.8), 0px 0px 8px rgba(0,0,0,.7);
    text-transform: uppercase;
    position: absolute;
    bottom: 32px;
    width: 100%;
    padding: 0px;
    margin: 0px;
}


/*inputs*/

.section-site .conteiner label{
    display:block;
    margin-bottom: 8px;
    font-size: 18px;
}

.section-site .conteiner input{
    background: rgba(214, 223, 246, 0.3);
    width: 95%;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid #D6DFF6;
    border-radius: 4px;
    font-size: 16px;
    font-size: 18px;
    line-height: 27px;
}

.section-site .conteiner input:focus{
    border: 2px solid #0040BF;
}


.section-site .conteiner button{
    text-transform: uppercase;
}

.section-site .conteiner input[type="checkbox"]{
    display: none;
}

.section-site .conteiner input[type="checkbox"] + label{
    display: block;
    margin-bottom:16px; 
    cursor:pointer;
    background-image: url(../img/checkbox_false.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 24px; 
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.section-site .conteiner input[type="checkbox"]:checked + label{
    background-image: url(../img/checkbox_true.png);
}
/*fim inputs*/

.form-login{
    max-width: 400px;
    margin: auto;
    margin-bottom: 48px;
    padding: 10px 16px;
}

.section-site .conteiner button.btn.btn-facebook{
    margin-right: 16px;
}

.section-site .conteiner div.div-links{
    margin: 16px 0px;
}
.section-site .conteiner div.div-links a{
    display: inline-block;
    margin-right: 16px;
    color:#0040BF;
    position: relative;
}

.section-site .conteiner div.div-links a::after{
    content: "";
    background: #BF2600;
    height: 4px;
    width: 0px;
    position: absolute;
    bottom: -4px;
    left: 0px;
    transition: all ease 1s;
}

.section-site .conteiner div.div-links a:hover::after{
    width: 100%;
}

.section-site .conteiner div.div-links a:nth-child(2){
    margin-left: 16px;
}

.div-img{
    text-align: center;
    margin: 16px 0px;  
}

.div-img img{
    width:80%;
    max-width: 200px;
}

@media screen and (max-width:45em){
    .banner{
        background-position: center center;
    }
}

@media screen and (max-width:363px){
    .btn{
        font-size:16px  !important;
    }
    .section-site .conteiner div.div-links a:nth-child(2),
    .section-site .conteiner div.div-links a{
        margin: 0px;
    }
}

.section-site .conteiner #divNotificacao > a{
    color:#0040BF;
    text-decoration: underline;
}