#topo {
    position: relative;
    /*min-height: 100vh;*/
    height: calc(100vw * 0.5625);
    background: url('../img/slider/ilustrativa.jpg') no-repeat left top;
    background-size: cover;
}

#topo > .item {
    position: absolute;
    /*background-color: rgba(255,255,0, .1);*/
    top: 0;
    left: 0;
    z-index: 1;
    width:100%;
}

#topo > .itemText {
    margin-top: 17%;
}

#topo > .itemLogo {
    margin-top: 1.3%;
}



/* BARRA */
#barra {
    color: #807c71;
    padding: 6% 0 3%;
    text-align: center;
    /*background-color: #000;*/
}

#barra .destaque1 {
    font-size: 2.8vw;
    font-weight: 300;
    /*background-color: #000;*/
}

#barra .texto1 {
    padding: 2% 20px 20%;
    /*background: #000;*/
}

#barra .texto1 > div {
    font-size: 2vw;
    font-weight: 200;
    display: inline-block;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    #barra .destaque1 {
        font-size: 38px;
    }

    #barra .texto1 > div {
        font-size: 24px;
    }
}

/**/

#barra .destaque2 {
    font-size: 2.8vw;
    font-weight: 600;
    padding-top:3%;
    letter-spacing: 0.20em;
    /*background-color: #000;*/
}

#barra .texto2 {
    padding: 0% 20px 0;
    /*background: #000;*/
}

#barra .texto2 > div {
    font-size: 1.9vw;
    font-weight: 200;
    display: inline-block;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    #barra .destaque2 {
        font-size: 34px;
    }

    #barra .texto2 > div {
        font-size: 25px;
    }
}

@media (min-width: 768px) {

    #barra .texto2 {
        padding: 1% 20px 0;
    }

}




/* GALERIAS */

#galerias {
    position: relative;
    padding-top:0%;
}
/*
#galerias > a > .item{
    width: 100%;
}

#galerias > a > .item.itemHover{
    position: absolute;
    top: 0%;
    left: 0;
    z-index: 100;
}

#galerias > a > .openGal{
    position: absolute;
    top: 17%;
    right: 5%;
    z-index: 101;
    width:14%;
}*/



/* VIDEO */
#video {
    background-color: #ecc73f;
    padding-bottom: 5%;
}

#video .titulo {
    color: #FFF;
    font-weight: 700;
    font-size: 2.4vw;
    
    padding: 5% 10px 2%;
    text-align: center;
}

@media (min-width: 1200px) {
    #video .titulo {
        font-size: 29px;
    }
}



/* lotes */
#lotes {
    background-color: #FFF;
    color: #807c71;
    padding-top: 4%;
}

#lotes .titulo {
    font-weight: 700;
    font-size: 2.4vw;
    
    padding: 3% 10px;
    text-align: center;
}

@media (min-width: 1200px) {
    #lotes .titulo {
        font-size: 29.3px;
    }
}

#lotes .subtexto {
    font-family: 'mosk';
    font-size: 15px;
    padding-bottom: 3%;
}

#lotes .subtexto strong, #lotes .subtexto b {
    font-weight: 700;
}

@media (min-width: 992px) {
    #lotes .subtexto {
        font-size: 1.7vw;
    }
}



.mapa {
    position: relative;
    display: inline-block;
}

.points {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.points > div {
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    position: absolute;
    z-index: 1;
    background: #007FD8;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.points > div.sale {
    background: #D20000;
}

.legenda {
    color: #000;
    font-size: 18px;
    padding-top: 60px;
    padding-right: 15px;
}
.legenda .point{
    background: #007FD8;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    /* transform: translate(0, 0%); */
    margin-left: 14px;
}
.legenda .point.sale{
    background: #D20000;
}

@media (min-width: 1200px) {
    .points:hover > div {
        opacity: .3;
    }

    .mapa .points > div:hover {
        opacity: .95;
    }
}

@media (max-width: 1200px) {
    .points > div {
        height: 8px;
        width: 8px;
        -webkit-transition: all 0ms ease-out;
        -moz-transition: all 0ms ease-out;
        transition: all 0ms ease-out;
    }

    .points:hover > div {
        opacity: 0.6;
    }

    .points > div:hover {
        -webkit-animation-name: flash;
        animation-name: flash;
        -webkit-animation-duration: 5s;
        animation-duration: 5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
    }

    @-webkit-keyframes flash {
        0%, 30% {
            opacity: 1;
        }

        15%, 45% {
            opacity: 0;
        }

        60%, 100% {
            opacity: 0.95;
        }
    }

    @keyframes flash {
        0%, 30% {
            opacity: 1;
        }

        15%, 45% {
            opacity: 0;
        }

        60%, 100% {
            opacity: 0.95;
        }
    }
}

@media (max-width: 767.98px) {
    .points > div {
        height: 3px;
        width: 3px;
        -webkit-transition: all 0ms ease-out;
        -moz-transition: all 0ms ease-out;
        transition: all 0ms ease-out;
    }
}




/* CONTATO */
#contato .titulo {
    font-size: 2.1vw;
    font-weight: 700;
    text-align: justify;
    text-align-last: justify;
    margin: 5% auto 1%;
}

#contato label {
    font-size : 26px;
    color: #727277;
    padding-right: 10px;
    margin-top: 18px;
}

#contato label.st {
    width: 135px;
    text-align: right;
}

#contato label.nd {
    display: inline-block;
    text-align: right;
}

#contato input {
    width: calc(100% - 145px);
    border: 2px solid #508db4;
    font-size: 30px;
    padding: 5px;
    color: #727277;
    margin-top: 15px;
}

#contato input.nd {
    width: calc(100% - 260px);
}

#contato button {
    background: #508db4;
    color: #fff;
    font-weight: 500;
    font-size: 25px;
    padding: 17px 0px;
    cursor: pointer;
    border: none;
    margin: 70px auto;
    width: 310px;
    max-width: 100%
}



@media (min-width: 992px) {

    #divCidade {
        width: calc(100% - 80px);
    }

    #divUF {
        width: 80px;
    }
}

@media (max-width: 991.98px) {
    #contato .titulo {
        font-size: 20px !important;
        text-align: center ;
        text-align-last: auto;
        margin: 50px auto 30px;
    }

    #contato label.st {
        width: 135px;
        text-align: right;
        font-size: 17px;
    }

    #contato label.nd {
        display: inline-block;
        text-align: right;
        font-size: 17px;
        width: 70px;
    }

    #contato input {
        width: calc(100% - 145px);
        border: 2px solid #508db4;
        font-size: 30px;
        padding: 5px;
        color: #727277;
        margin-top: 15px;
    }

    #contato input.nd {
        width: calc(100% - 238px);
    }
}


@media (max-width: 767px) {
    #contato label.st, #contato label.nd {
        width: 100%;
        text-align: left;
        font-size: 17px;
    }
}







/* RODAPE */
#rodape {
    background: #508db4;
}

#rodape .textos {
    font-size: 19px;
    color: #fff;
    font-weight: 400;
    padding: 35px 0;
}

#rodape .textos a {
    color: #fff !important;
}

#rodape .textos div {
    padding: 1px 0;
}

#rodape .t2 {
    font-size: 18px;
}

#rodape .t2 i.fa {
    font-size: 13px;
    display: inline-block;
    background: #fff;
    padding: 4px 6px 2px;
    color: #508db4;
    border-radius: 50%;
}

#rodape .t3 {
    font-size: 24px;
    font-weight: 800;
    font-family: 'mosk';
}

#rodape .t5 b, #rodape .t5 strong {
    /*font-weight: 700;*/
}

#rodape .t6 {
    font-weight: 100;
    font-size: 12px;
}

#rodape .t6 span {
    font-weight: 300;
}

#rodape .t6 i.fa {
    display: inline-block;
    padding: 0 5px;
}

@media (max-width: 991px) {
    #rodape .textos div {
        padding: 2px 0;
    }

    #rodape .t1 {
        font-size: 15px;
    }

    #rodape .t2 {
        font-size: 14px;
    }

    #rodape .t2 i.fa {
        font-size: 11px;
        display: inline-block;
        background: #fff;
        padding: 4px 6px 2px;
        color: #508db4;
        border-radius: 50%;
    }

    #rodape .t3 {
        font-size: 18px;
        font-weight: 800;
    }

    #rodape .t4 {
        font-size: 17px;
    }

    #rodape .t5 {
        font-size: 18px;
    }

    #rodape .t5 b, #rodape .t5 strong {
        font-weight: 700;
    }

    #rodape .t6 {
        /*font-weight: 100;*/
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    #rodape img {
        /* max-width: 400px; */
    }

   
}



@media (max-width: 767px) {
    #rodape .textos a {
        padding:4px 0;
        display:inline-block;
    }
    #rodape .t6 span:after {
        content:'';
        display:block;
    }


    #contato input {
        width: 100%;
        border: 2px solid #508db4;
        font-size: 30px;
        padding: 5px;
        color: #727277;
        margin-top: 0px;
    }

    #contato input.nd {
        width: 100% !important;
    }

    #contato button {
        margin: 25px auto 50px;
    }
}
