* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    ;
}

html,
body {
    height: 100%;
}

/* Divs gerais */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.clear {
    clear: both;
}

/* ******** */

header {
    background-color: rgb(220, 220, 220);
    padding: 10px 2% 40px 2%;
}

.logo-1 {
    float: left;
    width: 150px;
    height: 60px;
    background-image: url(../imagens/logo-dream_home.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-color: blueviolet; */
}

.logo-2 {
    float: right;
    width: 160px;
    height: 60px;
    background-image: url(../imagens/logo2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-color:chartreuse; */
}

section.cover-form {
    width: 100%;
    
}

.bg {
    position: relative;
    height: 560px;
    background-position: center;
    background-size: cover;
    background-image: url('../imagens/bg.png');
}

.form-container {
    position: absolute;
    right: 30px;
    top: -2.5%;
    width: 400px;
    height: 105%;

    box-shadow: 1px 1px 2px 1px rgb(180, 180, 180);
    background-color: white;
}

.form-container h2 {
    font-weight: normal;
    padding: 30px 15px;
    color: black;
    font-size: 18px;
    background-color: rgba(210, 210, 210);
}

.form-container form {
    margin-top: 20px;
    padding: 15px;
}

.form-container form p {
    font-size: 14px;
    color: #525252;
}

.form-wraper:not(:first-child) {
    margin-top: 40px;
}

.form-wraper:last-child {
    margin-top: 20px;
}

.form-container form input[type=text] {
    width: 100%;
    border: 1px solid #ccc;
    height: 45px;
    line-height: 45px;
    padding-left: 10px;
}

.form-container form input[type=submit] {
    background-color: #033c50;
    text-transform: uppercase;
    color: white;
    width: 100%;
    font-size: 20px;
    height: 50px;
    cursor: pointer;
    border: 0;
}

section.chamada {
    z-index: 1;
    width: 100%;
    text-align: center;
    position: relative;
}

.icone-seta {
    position: absolute;
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background-size: 100% 100%;
    background-image: url('../imagens/arrow.png');
}

section.chamada div.container {
    background-color: #29526d;
    padding: 70px 0 50px 0;
}



section.chamada h2 {
    width: 98%;
    max-width: 700px;
    display: inline-block;
    text-transform: uppercase;
    color: white;
    font-size: 24px;
    font-weight: normal;
}

section.chamada p {
    width: 98%;
    max-width: 700px;
    display: inline-block;
    color: white;
    font-size: 18px;
    font-weight: normal;
}

.flex-mosaico {
        display: flex;
    }

    .item-1-mosaico {
        background-position: center;
        background-size: cover;
        width: 60%;
    }

    .item-2-mosaico {
        background-color: #4683AB;
        width: 40%;
        padding: 85px 40px;
    }

    .item-2-mosaico p{
        color: white;
    }

    footer .container {
        background-color: rgb(220, 220, 220);
        text-align: center;
        padding: 20px 0;
    }

    footer img {
        width: 130px;
    }

    footer p{
        margin-top: 8px;
    }

@media screen and (max-width: 960px) {

    .bg{
        height: auto;
        padding: 40px 0;
        text-align: center;
    }

    .form-container {
        height: auto;
        width: 96%;
        max-width: 400px;
        position: static;
        display: inline-block;
    }

}

@media screen and (max-width: 768px) {

    .flex-mosaico{
        display: block;
    }

    .item-1-mosaico{
        padding-top: 80%;
        width: 100%;
    }

    .item-2-mosaico{
        text-align: justify;
        width: 100%;
    }
}

@media screen and (max-width: 510px) {

    header {
        text-align: center;
    }

    [class^="logo"] {
        margin-top: 10px;
        display: inline-block;
        float: none;
    }
}