body{
    font-family: 'Roboto', sans-serif;
    background-color: #000;
}
img {max-width: 100%}

h1, h2, h3, h4, h5, h6 {display: block}

h1, .title{
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin:20px auto 30px auto;
}

p{
    font-size: 14px;
    line-height: 1.8em;
}

.hide-form{
    display: none;
}
.show-form{
    display: contents;
}
label {
    margin-bottom: 0;
    font-size: 0.85em;
    font-weight: bold;
    color: #adadad;
    text-transform: uppercase;
}

.form-control{
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 10px;
    margin-bottom: 1em;
}
.form-control:focus {
    color: #1d1c5a;
    background-color: #fbfbfb;
    border-color: #1d1c5a;
    outline: 0;
    box-shadow: unset;
}

.btn-success {
    text-transform: uppercase;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #000;
    display: block;
    width: 100%;
}

section{
    background-color: #FFF;
    margin: 1rem;
    border-radius: 5px;
}

section div.header{
    background-image: url(../img/bg-body.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 150px;
    margin-bottom: 50px;
}

section .header .header-logo{
    position: absolute;
    width: 220px;
    background-color: #FFF;
    padding: 10px;
    right: 5%;
    height: 120px;
    text-align: center;
    bottom: -50px;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 5px 5px 0px rgba(204,204,204,1);
    box-shadow: 0px 5px 5px 0px rgba(204,204,204,1);
}
section .header .header-logo img{
    max-height: 100%;
}
section .container {
    padding: 0 90px;
    padding-top: 55px;
    padding-bottom: 65px;
}


/* AJUSTES DO RESPONSIVO*/
@media only screen and (min-width: 768px) {
    section {
        margin: 100px auto;
        width: 60%;
    }
}

@media only screen and (max-width: 768px) {
    p, h1, .title{
        text-align: justify;
    }

    section .container{
        padding: 35px 20px;
    }
    div.header{
        height: 100px !important;
        margin-bottom: 70px;
    }
    .header-logo{
        right: 50% !important;
        margin-right: -100px;
    }
}