/*RESET*/
*, *:before, *:after {
    margin: 0;
    padding: 0;
    outline: 0;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: oem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, p, span, a, button, input, optgroup, select, textarea {
    font-family: 'Roboto', sans-serif;
}

body {
    top: 0 !important;
}

textarea, select, input.text, input[type="text"], input[type="button"], input[type="submit"], .input-checkbox {
    -webkit-appearance: none;
    border-radius: 0;
}

a {
    outline: 0;
    text-decoration: none;
    cursor: pointer;
}
/*MARCADORES*/
.container {
    max-width: 1170px;
    margin: 0px auto;
}

.clear {
    clear: both;
}

.display_none {
    display: none;
}
/*HEADER*/
header {
    display: flex;
    position: relative;
    z-index: 100;
    height: 68px;
}

    header.internas {
        background: #003762;
    }

    header .filtro {
        width: calc(50% - 125px);
        float: left;
        height: 68px;
        padding: 17px 0 0 40px;
    }

        header .filtro a {
            color: #003762;
            font-size: 13px;
            background: #FDD037;
            display: inline-flex;
            border-radius: 2px;
            padding: 8px 15px;
            text-transform: uppercase;
            font-weight: 500;
        }

        header .filtro img {
            margin-right: 12px;
        }

    header .logo {
        width: 250px;
        float: left;
        height: 68px;
        text-align: center;
        padding: 15px 0;
    }

    header .menu {
        width: calc(50% - 125px);
        float: left;
        height: 68px;
        padding: 0 40px 0 0;
        text-align: right;
    }

        header .menu ul {
            padding: 24px 0 0;
            width: calc(100% - 115px);
            float: right;
        }

        header .menu li {
            list-style: none;
            display: inline-block;
        }

            header .menu li a {
                color: #FFF;
                font-size: 13px;
                font-weight: 500;
                text-transform: uppercase;
            }

            header .menu li.acesso a {
                margin-left: 30px;
                border: 1px solid #FDD037;
                padding: 7px 19px;
                border-radius: 2px;
            }

                header .menu li.acesso a:hover {
                    background: #E4B71E;
                    border: 1px solid #E4B71E;
                }

        header .menu .burger {
            width: 115px;
            float: right;
            padding: 21px 0 0;
        }

.sidenav {
    display: none;
    height: 100%;
    width: 400px;
    position: fixed;
    z-index: 400;
    top: 0px;
    right: 0;
    background: #11294D;
    overflow-x: hidden;
    text-align: left;
    padding: 21px 15px 0 50px;
    opacity: 0.97;
}

    .sidenav .fechar {
        width: 100%;
        text-align: right;
    }

        .sidenav .fechar a {
            cursor: pointer;
        }

    .sidenav ul {
        margin: 0;
        padding: 0 15px;
    }

    .sidenav li {
        list-style: none;
        padding: 15px 0 20px;
    }

        .sidenav li a {
            color: #FDD037;
            font-size: 21px;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.2px;
            outline: 0;
        }

            .sidenav li a img {
                margin-left: 15px;
            }

    .sidenav .submenu {
        margin: 40px 0 0;
    }

        .sidenav .submenu a {
            color: #FFF;
            font-size: 14px;
            display: block;
            margin: 16px 0;
            font-weight: 400;
            outline: 0;
            border-bottom: 1px solid #243D64;
            padding-bottom: 16px;
        }
/*HOME CAPA*/
section.home_capa {
    margin-top: -68px;
}

    section.home_capa img.capa {
        height: 750px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(85%);
        -webkit-filter: brightness(85%);
    }

    section.home_capa .conteudo {
        margin-top: -430px;
        height: 430px;
        position: relative;
    }

        section.home_capa .conteudo h1 {
            color: #FFF;
            font-size: 30px;
            font-weight: 700;
            margin: 0 0 50px;
        }

            section.home_capa .conteudo h1 span {
                color: #FDD037;
                font-weight: 700;
            }

    section.home_capa .aba a {
        color: #CCC;
        font-size: 18px;
        font-weight: 700;
        margin: 0 30px 0 0;
        padding-bottom: 10px;
        border-bottom: 7px solid transparent;
        display: inline-block;
        text-transform: uppercase;
    }

        section.home_capa .aba a:hover,
        section.home_capa .aba a.active {
            color: #FFF;
            border-bottom: 7px solid #FDD037;
        }

    section.home_capa .tabcontent {
        display: none;
        padding: 35px 0 0;
        border-top: 0;
        opacity: 1;
        -webkit-animation-name: fadeabas;
        -webkit-animation-duration: 1s;
        animation-name: fadeabas;
        animation-duration: 1s;
    }

@-webkit-keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section.home_capa .conteudo .popup_bairros {
    display: none;
    background: #0C3D7C;
    position: fixed;
    z-index: 1000;
    left: 20%;
    top: 200px;
    width: 60%;
    padding: 43px 40px;
}

    section.home_capa .conteudo .popup_bairros h2 {
        color: #FFF;
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 30px;
    }

    section.home_capa .conteudo .popup_bairros table {
        width: 100%;
        margin: 0 0 35px;
    }

    section.home_capa .conteudo .popup_bairros td {
        width: 25%;
        padding: 0 0 7px;
    }

    section.home_capa .conteudo .popup_bairros label {
        position: relative;
        cursor: pointer;
        color: #FFF;
        font-size: 13px;
    }

    section.home_capa .conteudo .popup_bairros input[type="checkbox"] {
        position: absolute;
        right: 9000px;
    }

        section.home_capa .conteudo .popup_bairros input[type="checkbox"] + .label-text:before {
            content: "\f096";
            font-family: "FontAwesome";
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            width: 1em;
            display: inline-block;
            margin-right: 5px;
        }

        section.home_capa .conteudo .popup_bairros input[type="checkbox"]:checked + .label-text:before {
            content: "\f14a";
            animation: effect 250ms ease-in;
        }

        section.home_capa .conteudo .popup_bairros input[type="checkbox"]:disabled + .label-text {
            color: #AAA;
        }

            section.home_capa .conteudo .popup_bairros input[type="checkbox"]:disabled + .label-text:before {
                content: "\f0c8";
                color: #CCC;
            }

    section.home_capa .conteudo .popup_bairros input[type="button"] {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 600;
        background: #FDD037;
        border-radius: 2px;
        border: 0;
        padding: 10px 35px;
        float: right;
        cursor: pointer;
    }

section.home_capa #pesquisa_venda .tipo {
    float: left;
    width: 15%;
}

    section.home_capa #pesquisa_venda .tipo a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_venda .tipo a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_venda .tipo .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_venda .tipo select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

section.home_capa #pesquisa_venda .cidade {
    float: left;
    width: 15%;
}

    section.home_capa #pesquisa_venda .cidade a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_venda .cidade a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_venda .cidade .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_venda .cidade select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

section.home_capa #pesquisa_venda .bairro {
    float: left;
    width: 20%;
    height: 54px;
    background: #FFF;
    border: 0;
    border-right: 1px solid #F0F0F0;
    padding: 16px 10px;
}

section.home_capa #pesquisa_venda .bairros {
    float: left;
    width: 50%;
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 400;
}

section.home_capa #pesquisa_venda .selecionar {
    float: left;
    width: 50%;
    text-align: center;
}

    section.home_capa #pesquisa_venda .selecionar input {
        color: #434343;
        background: #F0F0F0;
        font-size: 12px;
        font-weight: 400;
        padding: 5px 20px;
        border-radius: 5px;
        cursor: pointer;
        border: 0;
    }

section.home_capa #pesquisa_venda .dormitorios {
    float: left;
    width: 15%;
}

    section.home_capa #pesquisa_venda .dormitorios a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_venda .dormitorios a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_venda .dormitorios .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_venda .dormitorios select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

section.home_capa #pesquisa_venda .buscar {
    color: #1F3F6D;
    float: left;
    width: 20%;
    background: #FDD037;
    border: 0;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

    section.home_capa #pesquisa_venda .buscar:hover {
        background: #E4B71E;
    }

section.home_capa #pesquisa_venda .codigo h3 {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin: 45px 0 15px;
}

section.home_capa #pesquisa_venda .codigo input[type="text"] {
    float: left;
    width: 160px;
    height: 40px;
    border: 0;
    padding: 15px 10px;
    color: #5F5F5F;
    font-size: 14px;
    font-weight: 300;
}

.btnvenda {
    float: left;
    background: #FDD037 url('../img/codigo_lupa.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}

    .btnvenda:hover {
        background: #E4B71E url('../img/codigo_lupa.png');
        background-repeat: no-repeat;
        background-position: center;
    }

section.home_capa #pesquisa_aluguel .tipo {
    float: left;
    width: 20%;
}

    section.home_capa #pesquisa_aluguel .tipo a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_aluguel .tipo a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_aluguel .tipo .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_aluguel .tipo select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

section.home_capa #pesquisa_aluguel .dormitorios {
    float: left;
    width: 20%;
}

    section.home_capa #pesquisa_aluguel .dormitorios a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_aluguel .dormitorios a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_aluguel .dormitorios .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_aluguel .dormitorios select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

section.home_capa #pesquisa_aluguel .buscar {
    color: #1F3F6D;
    float: left;
    width: 20%;
    background: #FDD037;
    border: 0;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

    section.home_capa #pesquisa_aluguel .buscar:hover {
        background: #E4B71E;
    }

section.home_capa #pesquisa_aluguel .codigo h3 {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin: 45px 0 15px;
}

section.home_capa #pesquisa_aluguel .codigo input[type="text"] {
    float: left;
    width: 160px;
    height: 40px;
    border: 0;
    padding: 15px 10px;
    color: #5F5F5F;
    font-size: 14px;
    font-weight: 300;
}

.btnAluguel {
    float: left;
    background: #FDD037 url('../img/codigo_lupa.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}

    .btnAluguel:hover {
        background: #E4B71E url('../img/codigo_lupa.png');
        background-repeat: no-repeat;
        background-position: center;
    }

section.home_capa #pesquisa_temporada .tipo {
    float: left;
    width: 20%;
}

    section.home_capa #pesquisa_temporada .tipo a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_temporada .tipo a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_temporada .tipo .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_temporada .tipo select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

section.home_capa #pesquisa_temporada .hospedes {
    float: left;
    width: 20%;
}

    section.home_capa #pesquisa_temporada .hospedes a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        section.home_capa #pesquisa_temporada .hospedes a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    section.home_capa #pesquisa_temporada .hospedes .chosen-single div b {
        background-position: 0px 15px;
    }

    section.home_capa #pesquisa_temporada .hospedes select.chosen-select {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 400;
        background: #FFF;
        border: 0;
        height: 54px;
        width: 100%;
        padding: 16px 10px;
    }

.valor {
    font-weight: 400;
    padding: 16px 10px;
}

section.home_capa #pesquisa_temporada .buscar {
    color: #ffffff;
    float: left;
    width: 20%;
    background: #1d406e;
    border: 0;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

    section.home_capa #pesquisa_temporada .buscar:hover {
        background: #FDD037;
    }

section.home_capa #pesquisa_temporada .codigo h3 {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin: 45px 0 15px;
}

section.home_capa #pesquisa_temporada .codigo input[type="text"] {
    float: left;
    width: 160px;
    height: 40px;
    border: 0;
    padding: 15px 10px;
    color: #5F5F5F;
    font-size: 14px;
    font-weight: 300;
}

.btnTemporada {
    float: left;
    background: #1d406e url('../img/codigo_lupa.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}

    .btnTemporada:hover {
        background: #FDD037 url('../img/codigo_lupa.png');
        background-repeat: no-repeat;
        background-position: center;
    }


.btnTemporada2 {
    float: left;
    background: #FDD037 url('../img/codigo_lupa_azul.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}

    .btnTemporada2:hover {
        background: #f1c633 url('../img/codigo_lupa_azul.png');
        background-repeat: no-repeat;
        background-position: center;
    }

/*HOME - CAROUSEL DE IMÓVEIS*/
section.home_carousel {
    padding: 60px 0;
}

    section.home_carousel .aba a {
        color: #CCC;
        font-size: 18px;
        font-weight: 700;
        margin: 0 30px 0 0;
        padding-bottom: 10px;
        border-bottom: 7px solid #FFF;
        display: inline-block;
    }

        section.home_carousel .aba a:hover,
        section.home_carousel .aba a.active {
            color: #1F3F6D;
            border-bottom: 7px solid #FDD037;
        }

    section.home_carousel .tabcontent_b {
        display: none;
        padding: 35px 0 0;
        border-top: 0;
        opacity: 1;
        -webkit-animation-name: fadeabas;
        -webkit-animation-duration: 1s;
        animation-name: fadeabas;
        animation-duration: 1s;
    }

@-webkit-keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/*section.home_carousel .slick-slider{margin:0 -8px;}*/
section.home_carousel .slick-slider {
    margin: 0;
}

section.home_carousel .slick-prev {
    float: left;
    margin: 100px -16px 0 -20px;
    position: relative;
    z-index: 10;
    font-size: 0;
    border: 0 none;
    cursor: pointer;
    background: transparent;
}

    section.home_carousel .slick-prev:before {
        content: url(../img/prev.png);
    }

section.home_carousel .slick-next {
    float: left;
    margin: 112px -29px 0 -20px;
    position: relative;
    z-index: 10;
    font-size: 0;
    border: 0 none;
    cursor: pointer;
    background: transparent;
}

    section.home_carousel .slick-next:before {
        content: url(../img/next.png);
    }

section.home_carousel .slick-list {
    float: left;
    width: calc(1207px - 24px);
}

section.home_carousel .box {
    width: 33.33%;
    float: left;
    padding: 0 8px;
    height: 400px;
}

    section.home_carousel .box img.capa {
        width: 100%;
        height: 235px;
        object-fit: cover;
        object-position: center;
    }

    section.home_carousel .box .codigo {
        color: #1F3F6D;
        font-size: 12px;
        font-weight: 700;
        float: right;
        margin: -15px 25px 25px;
        background: #FDD037;
        position: relative;
        padding: 7px 15px;
        display: inline-flex;
    }

        section.home_carousel .box .codigo img {
            margin-right: 10px;
        }

    section.home_carousel .box h2 {
        color: #000;
        font-size: 18px;
        font-weight: 700;
        margin: 15px 0 20px;
    }

    section.home_carousel .box h3 {
        color: #5F5F5F;
        font-size: 14px;
        line-height: 18px;
        margin: 15px 0 30px;
    }

    section.home_carousel .box h4 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        border-left: 7px solid #FDD037;
        padding-left: 13px;
        line-height: 30px;
    }
/*HOME - CLASSIFICADOS*/
section.home_classificados {
    padding: 150px 0;
    background: #F0F6FF;
}

    section.home_classificados .coluna {
        width: 50%;
        float: left;
    }

    section.home_classificados .imagem {
        padding: 0 110px;
    }

        section.home_classificados .imagem img {
            max-width: 100%;
            height: auto;
            -webkit-box-shadow: 10px 10px 21px -7px rgba(122,135,153,1);
            -moz-box-shadow: 10px 10px 21px -7px rgba(122,135,153,1);
            box-shadow: 10px 10px 21px -7px rgba(122,135,153,1);
        }

        section.home_classificados .imagem .box {
            width: 95px;
            height: 95px;
            background: #1F3F6D;
            color: #FFF;
            font-size: 16px;
            text-align: center;
            border-radius: 50px;
            font-weight: 600;
            padding: 30px 0;
            margin: -250px -37px 0 0;
            float: right;
            position: relative;
        }

    section.home_classificados .formulario {
        padding: 0 215px 0 0;
    }

    section.home_classificados hr {
        border: 0;
        width: 37px;
        height: 7px;
        background: #FDD037;
        margin: 20px 0 35px;
    }

    section.home_classificados h2 {
        color: #1F3F6D;
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 30px;
    }

    section.home_classificados p {
        color: #1F3F6D;
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        margin: 20px 0 30px;
    }

        section.home_classificados p span {
            font-size: 14px;
            font-weight: 300;
        }

    section.home_classificados input[type=text] {
        width: 100%;
        margin: 0 0 7px;
        color: #5F5F5F;
        font-size: 14px;
        height: 48px;
        background: #FFF;
        border: 0;
        padding: 5px 25px;
        text-align: center;
    }

    section.home_classificados input[type=submit] {
        width: 100%;
        color: #003762;
        font-size: 18px;
        font-weight: 700;
        height: 48px;
        background: #FDD037;
        border: 1px solid #FDD037;
        cursor: pointer;
    }

        section.home_classificados input[type=submit]:hover {
            background: #E4B71E;
        }
/*HOME - BLOG*/
section.home_blog {
    padding: 85px 0;
    background: #F6F6F6;
}

    section.home_blog h1 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    section.home_blog hr {
        border: 0;
        width: 37px;
        height: 7px;
        background: #FDD037;
        margin: 20px 0 35px;
    }

    section.home_blog .capa {
        width: 50%;
        height: 490px;
        float: left;
    }

        section.home_blog .capa img {
            width: 100%;
            height: 490px;
            object-fit: cover;
            object-position: center;
        }

    section.home_blog .conteudo {
        background: #FFF;
        width: 50%;
        height: 490px;
        float: left;
        padding: 30px 120px 0 55px;
    }

        section.home_blog .conteudo h2 {
            color: #1F3F6D;
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 30px;
        }

        section.home_blog .conteudo li {
            display: inline-block;
        }

            section.home_blog .conteudo li a {
                color: #9DA8B7;
                font-size: 13px;
                font-weight: 700;
                border: 1px solid #9DA8B7;
                padding: 3px 7px;
                text-transform: capitalize;
                display: inline-block;
                margin: 0 1px 6px;
            }

        section.home_blog .conteudo p {
            color: #746F6F;
            font-size: 14px;
            font-weight: 300;
            line-height: 22px;
            margin: 30px 0 0;
        }
/*HOME - FUNCIONALIDADES*/
section.home_funcionalidades {
    padding: 110px 0 130px;
}

    section.home_funcionalidades h1 {
        display: none;
    }

    section.home_funcionalidades .coluna {
        float: left;
        width: 33.33%;
        text-align: center;
        padding: 0 50px;
    }

    section.home_funcionalidades img {
        margin: 0 auto 25px;
    }

    section.home_funcionalidades h2 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 20px;
        line-height: 22px;
    }

    section.home_funcionalidades p {
        color: #5F5F5F;
        font-size: 16px;
        font-weight: 300;
        margin: 0;
        line-height: 20px;
    }
/*HOME - CADASTRAR IMÓVEL*/
section.home_cadastrar {
    padding: 70px 0;
    background: #F0F6FF;
    text-align: center;
}

    section.home_cadastrar h1 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        line-height: 28px;
    }

    section.home_cadastrar h2 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 400;
        margin: 0;
        line-height: 28px;
    }

    section.home_cadastrar a.btn {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        background: #FDD037;
        padding: 18px 60px;
        display: inline-block;
        margin: 30px auto 0;
    }

        section.home_cadastrar a.btn:hover {
            background: #E4B71E;
        }
/*HOME - BUSCAS POPULARES*/
section.home_populares {
    padding: 140px 0 190px;
}

    section.home_populares h1 {
        color: #1F3F6D;
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        text-align: center;
    }

    section.home_populares hr {
        margin: 40px 0 50px;
        border: 0;
        height: 1px;
        background: #B8C7D3;
    }

    section.home_populares .coluna {
        float: left;
        width: 25%;
    }

        section.home_populares .coluna h2 {
            color: #1F3F6D;
            font-size: 13px;
            margin: 0;
            line-height: 34px;
            font-weight: 400;
            padding-bottom: 20px;
        }

            section.home_populares .coluna h2 a {
                color: #1F3F6D;
            }
/*CADASTRE SEU IMÓVEL*/
section.cadastre_imovel {
    margin-top: -68px;
    background: url('../img/home_capa_a.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 140px 0;
}

    section.cadastre_imovel h1 {
        color: #FFF;
        font-size: 30px;
        font-weight: 700;
        margin: 0 0 40px;
        text-align: center;
    }

        section.cadastre_imovel h1 span {
            color: #FDD037;
            font-weight: 700;
        }

    section.cadastre_imovel .box {
        background: #FFF;
        margin: 0 auto;
        padding: 0 55px 32px;
        width: 700px;
    }

        section.cadastre_imovel .box img.topo {
            display: block;
            margin: 0 auto 25px;
        }

        section.cadastre_imovel .box p {
            color: #161616;
            font-size: 14px;
            margin: 0 0 30px;
            text-align: center;
        }

        section.cadastre_imovel .box input {
            width: 100%;
            height: 54px;
            border: 1px solid #979797;
            margin: 0 0 7px;
            font-size: 14px;
            padding: 15px;
        }

            section.cadastre_imovel .box input.celular {
                float: left;
                width: 49%;
                margin-right: 2%;
            }

            section.cadastre_imovel .box input.telefone {
                float: left;
                width: 49%;
            }

        section.cadastre_imovel .box textarea {
            width: 100%;
            height: 150px;
            border: 1px solid #979797;
            font-size: 14px;
            padding: 15px;
            margin: 0 0 7px;
        }

        section.cadastre_imovel .box input[type=submit] {
            color: #1F3F6D;
            float: right;
            width: 290px;
            background: #FDD037;
            border: 0;
            height: 54px;
            font-size: 18px;
            font-weight: 700;
        }

        section.cadastre_imovel .box .select {
            width: 100%;
            height: 54px;
            border: 1px solid #979797;
            margin: 0 0 7px;
            font-size: 14px;
            padding: 15px;
        }

/*FALE COM A SC IMÓVEIS*/
section.falecom {
    margin-top: -68px;
    background: url('../img/home_capa_a.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 140px 0;
}

    section.falecom h1 {
        color: #FFF;
        font-size: 30px;
        font-weight: 700;
        margin: 0 0 40px;
        text-align: center;
    }

        section.falecom h1 span {
            color: #FDD037;
            font-weight: 700;
        }

    section.falecom .box {
        background: #FFF;
        margin: 0 auto;
        padding: 0 55px 32px;
        width: 700px;
    }

        section.falecom .box img.topo {
            display: block;
            margin: 0 auto 25px;
        }

        section.falecom .box p {
            color: #161616;
            font-size: 14px;
            margin: 0 0 30px;
            text-align: center;
        }

        section.falecom .box input {
            width: 100%;
            height: 54px;
            border: 1px solid #979797;
            margin: 0 0 7px;
            font-size: 14px;
            padding: 15px;
        }

            section.falecom .box input.celular {
                float: left;
                width: 49%;
                margin-right: 2%;
            }

            section.falecom .box input.telefone {
                float: left;
                width: 49%;
            }

            section.falecom .box input.estado {
                float: left;
                width: 32.33%;
                margin-right: 2%;
            }

            section.falecom .box input.cidade {
                float: left;
                width: 31.33%;
                margin-right: 2%;
            }

            section.falecom .box input.bairro {
                float: left;
                width: 32.33%;
            }

        section.falecom .box textarea {
            width: 100%;
            height: 150px;
            border: 1px solid #979797;
            font-size: 14px;
            padding: 15px;
            margin: 0 0 7px;
        }

        section.falecom .box input[type=submit] {
            color: #1F3F6D;
            float: right;
            width: 290px;
            background: #FDD037;
            border: 0;
            height: 54px;
            font-size: 18px;
            font-weight: 700;
        }

section.falecom_mapa {
    background: #091F36;
    padding: 100px 0;
}

    section.falecom_mapa .container {
        margin-bottom: 25px;
    }

    section.falecom_mapa .mapa {
        float: left;
        width: 325px;
        height: 425px;
        margin-left: 90px;
    }

    section.falecom_mapa .gmap_canvas {
        overflow: hidden;
        background: none !important;
        height: 425px;
        width: 325px;
    }

    section.falecom_mapa .imagem {
        float: left;
        width: 420px;
        height: 425px;
        margin-right: 50px;
    }

        section.falecom_mapa .imagem img {
            width: 100%;
            height: 425px;
            object-fit: cover;
            object-position: center;
        }

    section.falecom_mapa .info {
        float: left;
        width: calc(100% - 885px);
    }

        section.falecom_mapa .info hr {
            border: 0;
            height: 1px;
            background: #556C7E;
            margin: 25px 0;
            width: 200px;
        }

        section.falecom_mapa .info h2 {
            color: #FDD037;
            font-size: 16px;
            margin: 25px 0 30px;
            font-weight: 500;
            text-transform: uppercase;
        }

        section.falecom_mapa .info h3 {
            color: #FFF;
            font-size: 16px;
            font-weight: 300;
        }

            section.falecom_mapa .info h3 span {
                font-weight: 400;
            }

        section.falecom_mapa .info p {
            color: #A1A1A1;
            font-size: 16px;
            line-height: 24px;
            font-weight: 300;
        }
/*ACESSO CLIENTE*/
section.acesso_cliente {
    margin-top: -68px;
    background: url('../img/home_capa_a.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 140px 0;
}

    section.acesso_cliente .box {
        background: #FFF;
        margin: 0 auto;
        padding: 45px 30px 30px;
        width: 350px;
        border-bottom: 1px solid #D5D5D5;
    }

        section.acesso_cliente .box .titulo {
            float: left;
            width: 60%;
        }

            section.acesso_cliente .box .titulo h1 {
                color: #2E3A46;
                font-size: 22px;
                font-weight: 500;
            }

            section.acesso_cliente .box .titulo hr {
                border: 0;
                background: #FDD037;
                height: 3px;
                width: 90%;
                margin: 7px 0 0;
            }

        section.acesso_cliente .box .subtitulo {
            float: left;
            width: 40%;
            text-align: right;
        }

            section.acesso_cliente .box .subtitulo p {
                color: #727272;
                font-size: 16px;
                font-weight: 300;
                line-height: 21px;
            }

    section.acesso_cliente .box_b {
        background: #FFF;
        margin: 0 auto;
        padding: 30px 0;
        width: 350px;
    }

        section.acesso_cliente .box_b p {
            color: #343434;
            font-size: 16px;
            font-weight: 300;
            margin: 0;
            text-align: center;
        }

            section.acesso_cliente .box_b p a {
                color: #1F3F6D;
                font-size: 16px;
                font-weight: 400;
                text-decoration: underline;
            }

    section.acesso_cliente .box p {
        color: #161616;
        font-size: 14px;
        margin: 0 0 30px;
        text-align: center;
    }

    section.acesso_cliente .box input {
        width: 100%;
        height: 54px;
        border: 1px solid #979797;
        margin: 0 0 7px;
        font-size: 14px;
        padding: 15px;
    }

        section.acesso_cliente .box input[type=submit] {
            color: #1F3F6D;
            float: right;
            width: 100%;
            background: #FDD037;
            border: 0;
            height: 54px;
            font-size: 18px;
            font-weight: 700;
        }
/*POPUO FILTROS*/
div.popup_filtros {
    display: none;
    background: #0C3D7C;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 40px 40px;
    min-height: 100vh;
}

    div.popup_filtros .logo {
        float: left;
        width: calc(100% - 84px);
        height: 90px;
        margin-left: 42px;
        text-align: center;
        padding: 15px 0;
    }

    div.popup_filtros .fechar {
        float: left;
        width: 42px;
        height: 90px;
        padding: 40px 0 0;
    }

    div.popup_filtros .conteudo {
        margin-top: 100px;
    }

        div.popup_filtros .conteudo h1 {
            color: #FFF;
            font-size: 30px;
            font-weight: 700;
            margin: 0 0 50px;
        }

            div.popup_filtros .conteudo h1 span {
                color: #FDD037;
                font-weight: 700;
            }

    div.popup_filtros .aba a {
        color: #CCC;
        font-size: 18px;
        font-weight: 700;
        margin: 0 30px 0 0;
        padding-bottom: 10px;
        border-bottom: 7px solid transparent;
        display: inline-block;
        text-transform: uppercase;
    }

        div.popup_filtros .aba a:hover,
        div.popup_filtros .aba a.active {
            color: #FFF;
            border-bottom: 7px solid #FDD037;
        }

    div.popup_filtros .tabcontent {
        display: none;
        padding: 35px 0 0;
        border-top: 0;
        opacity: 1;
        -webkit-animation-name: fadeabas;
        -webkit-animation-duration: 1s;
        animation-name: fadeabas;
        animation-duration: 1s;
    }

@-webkit-keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

div.popup_filtros .popup_bairros {
    display: none;
    background: #737373;
    position: fixed;
    z-index: 1000;
    left: 20%;
    top: 200px;
    width: 60%;
    padding: 43px 40px;
}

    div.popup_filtros .popup_bairros h2 {
        color: #FFF;
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 30px;
    }

    div.popup_filtros .popup_bairros table {
        width: 100%;
        margin: 0 0 35px;
    }

    div.popup_filtros .popup_bairros td {
        width: 25%;
        padding: 0 0 7px;
    }

    div.popup_filtros .popup_bairros label {
        position: relative;
        cursor: pointer;
        color: #FFF;
        font-size: 13px;
    }


/*CHECKBOX*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    color: #000000;
}

    [type="checkbox"]:not(:checked) + label,
    [type="checkbox"]:checked + label {
        position: relative;
        padding-left: 25px;
        cursor: pointer;
        color: #000000;
    }

        /* checkbox aspect */
        [type="checkbox"]:not(:checked) + label:before,
        [type="checkbox"]:checked + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 17px;
            height: 17px;
            border: 1px solid #aaa;
            background: #f8f8f8;
            border-radius: 3px;
            box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
            color: #000000;
        }
        /* checked mark aspect */
        [type="checkbox"]:not(:checked) + label:after,
        [type="checkbox"]:checked + label:after {
            content: '✔';
            position: absolute;
            top: 2px;
            left: 4px;
            font-size: 14px;
            color: #000000;
            transition: all .2s;
        }
        /* checked mark aspect changes */
        [type="checkbox"]:not(:checked) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"]:checked + label:after {
            opacity: 1;
            transform: scale(1);
        }
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    border: 1px dotted blue;
    color: #000000;
}


/*input[type="checkbox"]{position:absolute;right:9000px;}
    input[type="checkbox"] + .label-text:before {
        content:"\f096";font-family:"FontAwesome";speak:none;font-style:normal;
    font-weight:normal;font-variant:normal;text-transform:none;
    line-height:1;-webkit-font-smoothing:antialiased;width:1em;
    display:inline-block;margin-right:5px;      
    }
input[type="checkbox"]:checked + .label-text:before{content:"\f14a";animation:effect 250ms ease-in;}
input[type="checkbox"]:disabled + .label-text{color:#AAA;}
input[type="checkbox"]:disabled + .label-text:before{content:"\f0c8";color:#CCC;}*/

div.popup_filtros .popup_bairros input[type="button"] {
    color: #1F3F6D;
    font-size: 18px;
    font-weight: 600;
    background: #FDD037;
    border-radius: 2px;
    border: 0;
    padding: 10px 35px;
    float: right;
    cursor: pointer;
}

div.popup_filtros #pesquisa_venda .tipo {
    float: left;
    width: 15%;
}

    div.popup_filtros #pesquisa_venda .tipo a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_venda .tipo a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_venda .tipo .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_venda .cidade {
    float: left;
    width: 15%;
}

    div.popup_filtros #pesquisa_venda .cidade a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_venda .cidade a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_venda .cidade .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_venda .bairro {
    float: left;
    width: 20%;
    height: 54px;
    background: #FFF;
    border: 0;
    border-right: 1px solid #F0F0F0;
    padding: 16px 10px;
}

div.popup_filtros #pesquisa_venda .bairros {
    float: left;
    width: 50%;
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 400;
}

div.popup_filtros #pesquisa_venda .selecionar {
    float: left;
    width: 50%;
    text-align: center;
}

    div.popup_filtros #pesquisa_venda .selecionar input {
        color: #434343;
        background: #F0F0F0;
        font-size: 12px;
        font-weight: 400;
        padding: 5px 20px;
        border-radius: 5px;
        cursor: pointer;
        border: 0;
    }

div.popup_filtros #pesquisa_venda .dormitorios {
    float: left;
    width: 15%;
}

    div.popup_filtros #pesquisa_venda .dormitorios a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_venda .dormitorios a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_venda .dormitorios .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_venda .buscar {
    color: #1F3F6D;
    float: left;
    width: 20%;
    background: #FDD037;
    border: 0;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
}

div.popup_filtros #pesquisa_venda .codigo h3 {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin: 45px 0 15px;
}

div.popup_filtros #pesquisa_venda .codigo input[type="text"] {
    float: left;
    width: 160px;
    height: 40px;
    border: 0;
    padding: 15px 10px;
    color: #5F5F5F;
    font-size: 14px;
    font-weight: 300;
}

div.popup_filtros #pesquisa_venda .codigo input[type="button"] {
    float: left;
    background: #FDD037 url('../img/codigo_lupa.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}

div.popup_filtros #pesquisa_aluguel .tipo {
    float: left;
    width: 20%;
}

    div.popup_filtros #pesquisa_aluguel .tipo a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_aluguel .tipo a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_aluguel .tipo .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_aluguel .dormitorios {
    float: left;
    width: 20%;
}

    div.popup_filtros #pesquisa_aluguel .dormitorios a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_aluguel .dormitorios a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_aluguel .dormitorios .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_aluguel .buscar {
    color: #1F3F6D;
    float: left;
    width: 20%;
    background: #FDD037;
    border: 0;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
}

div.popup_filtros #pesquisa_aluguel .codigo h3 {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin: 45px 0 15px;
}

div.popup_filtros #pesquisa_aluguel .codigo input[type="text"] {
    float: left;
    width: 160px;
    height: 40px;
    border: 0;
    padding: 15px 10px;
    color: #5F5F5F;
    font-size: 14px;
    font-weight: 300;
}

div.popup_filtros #pesquisa_aluguel .codigo input[type="button"] {
    float: left;
    background: #FDD037 url('../img/codigo_lupa.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}

div.popup_filtros #pesquisa_temporada .tipo {
    float: left;
    width: 20%;
}

    div.popup_filtros #pesquisa_temporada .tipo a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_temporada .tipo a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_temporada .tipo .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_temporada .hospedes {
    float: left;
    width: 20%;
}

    div.popup_filtros #pesquisa_temporada .hospedes a.chosen-single {
        height: 54px;
        border-radius: 0 !important;
        padding: 16px 10px;
        border-right: 1px solid #F0F0F0;
    }

        div.popup_filtros #pesquisa_temporada .hospedes a.chosen-single span {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 400;
        }

    div.popup_filtros #pesquisa_temporada .hospedes .chosen-single div b {
        background-position: 0px 15px;
    }

div.popup_filtros #pesquisa_temporada .buscar {
    color: #1F3F6D;
    float: left;
    width: 20%;
    background: #FDD037;
    border: 0;
    height: 54px;
    font-size: 18px;
    font-weight: 700;
}

div.popup_filtros #pesquisa_temporada .codigo h3 {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    margin: 45px 0 15px;
}

div.popup_filtros #pesquisa_temporada .codigo input[type="text"] {
    float: left;
    width: 160px;
    height: 40px;
    border: 0;
    padding: 15px 10px;
    color: #5F5F5F;
    font-size: 14px;
    font-weight: 300;
}

div.popup_filtros #pesquisa_temporada .codigo input[type="button"] {
    float: left;
    background: #FDD037 url('../img/codigo_lupa.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 45px;
    height: 40px;
    border: 0;
    cursor: pointer;
}
/*SINGLE IMÓVEL*/
section.imovel_topo .aba a {
    color: #CCC;
    font-size: 18px;
    font-weight: 700;
    margin: 0 30px 0 0;
    padding-bottom: 10px;
    border-bottom: 7px solid transparent;
    display: inline-block;
    text-transform: uppercase;
}

    section.imovel_topo .aba a:hover,
    section.imovel_topo .aba a.active {
        color: #FFF;
        border-bottom: 7px solid #FDD037;
    }

section.imovel_topo .tabcontent {
    display: none;
    padding: 0;
    border-top: 0;
    opacity: 1;
    -webkit-animation-name: fadeabas;
    -webkit-animation-duration: 1s;
    animation-name: fadeabas;
    animation-duration: 1s;
}

@-webkit-keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeabas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section.imovel_topo #imovel_fotos {
    height: 425px;
}

    section.imovel_topo #imovel_fotos img {
        float: left;
        height: 425px;
        object-fit: cover;
        object-position: center;
        width: 99.9%;
        margin: 0 0.1% 0 0;
    }

section.imovel_topo .slick-prev {
    font-size: 0;
    border: 0 none;
    cursor: pointer;
    background: transparent;
    position: absolute;
    z-index: 10;
    margin-top: 195px;
    margin-left: 5px;
}

    section.imovel_topo .slick-prev:before {
        content: url(../img/prev.png);
    }

section.imovel_topo .slick-next {
    font-size: 0;
    border: 0 none;
    cursor: pointer;
    background: transparent;
    right: 0;
    position: absolute;
    margin-top: -230px;
    margin-right: 5px;
}

    section.imovel_topo .slick-next:before {
        content: url(../img/next.png);
    }


section.imovel_topo .ver_fotos {
    color: #0C3D7C;
    font-size: 13px;
    font-weight: 500;
    background: #FDD037;
    width: 110px;
    height: 36px;
    margin: -60px 0 0;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

    section.imovel_topo .ver_fotos img {
        width: 15px;
        height: 19px;
        object-fit: inherit;
        float: none;
        margin-left: 7px;
    }

    section.imovel_topo .ver_fotos:hover {
        background: #E4B71E;
    }

section.imovel_topo #imovel_video {
    height: 425px;
    background: #000;
}

section.imovel_topo .embed-container {
    position: relative;
    height: 425px;
    overflow: hidden;
    max-width: 756px;
    margin: 0 auto;
}

    section.imovel_topo .embed-container iframe,
    section.imovel_topo .embed-container object,
    section.imovel_topo .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 425px;
    }

section.imovel_topo #imovel_mapa {
    height: 425px;
}

    section.imovel_topo #imovel_mapa #map {
        height: 425px;
    }

section.imovel_conteudo .coluna_a {
    float: left;
    width: 64%;
    margin-right: 12px;
}

    section.imovel_conteudo .coluna_a .info {
        padding: 30px 40px;
        background: #F6F6F6;
        margin: 12px 0 0;
    }

        section.imovel_conteudo .coluna_a .info .aba {
            margin: 0 0 50px;
        }

            section.imovel_conteudo .coluna_a .info .aba a {
                color: #0C3D7C;
                font-size: 14px;
                font-weight: 500;
                height: 40px;
                border: 1px solid #0C3D7C;
                display: inline-flex;
                padding: 10px 20px 10px 10px;
                border-radius: 2px;
                margin-right: 5px;
            }

                section.imovel_conteudo .coluna_a .info .aba a:hover,
                section.imovel_conteudo .coluna_a .info .aba a.active {
                    color: #FFF;
                    background: #0C3D7C;
                }

                section.imovel_conteudo .coluna_a .info .aba a img {
                    margin-right: 7px;
                }

                    section.imovel_conteudo .coluna_a .info .aba a img.ativo {
                        display: none;
                    }

                section.imovel_conteudo .coluna_a .info .aba a:hover img.ativo,
                section.imovel_conteudo .coluna_a .info .aba a.active img.ativo {
                    display: block;
                }

                section.imovel_conteudo .coluna_a .info .aba a:hover img.inativo,
                section.imovel_conteudo .coluna_a .info .aba a.active img.inativo {
                    display: none;
                }

        section.imovel_conteudo .coluna_a .info .titulo {
            float: left;
            width: calc(100% - 200px);
        }

            section.imovel_conteudo .coluna_a .info .titulo h1 {
                color: #1F3F6D;
                font-size: 30px;
                font-weight: 600;
                margin: 0 0 15px;
            }

            section.imovel_conteudo .coluna_a .info .titulo h2 {
                color: #8B8B8B;
                font-size: 16px;
                font-weight: 400;
                margin: 0 0 30px;
            }

        section.imovel_conteudo .coluna_a .info hr {
            border: 0;
            height: 1px;
            background: #D3D3D3;
            margin: 30px 0;
        }

        section.imovel_conteudo .coluna_a .info .codigo {
            color: #1F3F6D;
            font-size: 12px;
            font-weight: 700;
            float: right;
            background: #FDD037;
            position: relative;
            padding: 10px 20px;
            display: flex;
        }

            section.imovel_conteudo .coluna_a .info .codigo img {
                margin-right: 7px;
            }

        section.imovel_conteudo .coluna_a .info .item {
            width: 50%;
            float: left;
            height: 35px;
        }

        section.imovel_conteudo .coluna_a .info .icone {
            float: left;
            width: 43px;
            height: 35px;
            display: flex;
        }

        section.imovel_conteudo .coluna_a .info .texto {
            color: #1F3F6D;
            font-size: 14px;
            font-weight: 600;
            float: left;
            width: calc(100% - 43px);
            height: 35px;
            display: flex;
            align-items: center;
        }

    section.imovel_conteudo .coluna_a .datas {
        padding: 12px 20px;
        margin: 5px 0 0;
        display: none;
    }

        section.imovel_conteudo .coluna_a .datas .a {
            float: left;
            width: 145px;
        }

        section.imovel_conteudo .coluna_a .datas .titulo {
            color: #1F3F6D;
            font-size: 11px;
            font-weight: 500;
            height: 20px;
            width: 125px;
            text-transform: uppercase;
            text-align: center;
            padding: 5px 0 0;
        }

            section.imovel_conteudo .coluna_a .datas .titulo:before {
                width: 0;
                height: 0;
                border: 6px solid transparent;
                border-top-color: transparent;
                content: "";
                position: absolute;
                z-index: 3;
                margin: 15px 0 0;
            }

        section.imovel_conteudo .coluna_a .datas .valor {
            color: #1F3F6D;
            font-size: 22px;
            font-weight: 500;
            width: 100%;
            height: 50px;
            display: inline-flex;
            align-items: center;
        }

        section.imovel_conteudo .coluna_a .datas .b {
            color: #1F3F6D;
            font-size: 12px;
            font-weight: 500;
            float: left;
            width: calc(100% - 145px);
            height: 70px;
            display: inline-flex;
            align-items: center;
            padding-left: 30px;
        }

    section.imovel_conteudo .coluna_a .especiais {
        background: #D6E9FF;
    }

        section.imovel_conteudo .coluna_a .especiais .titulo {
            background: #FFF;
        }

            section.imovel_conteudo .coluna_a .especiais .titulo:before {
                border-top-color: #FFF;
            }

    section.imovel_conteudo .coluna_a .altatemp .titulo {
        background: #FDD037;
    }

        section.imovel_conteudo .coluna_a .altatemp .titulo:before {
            border-top-color: #FDD037;
        }

    section.imovel_conteudo .coluna_a .baixatemp .titulo {
        background: #849EBC;
    }

        section.imovel_conteudo .coluna_a .baixatemp .titulo:before {
            border-top-color: #849EBC;
        }

    section.imovel_conteudo .coluna_a .altatemp {
        background: #C0D7F2;
    }

    section.imovel_conteudo .coluna_a .baixatemp {
        background: #A3C1E4;
    }

    section.imovel_conteudo .coluna_a .consulte {
        background: #0C3D7C;
        padding: 30px 32px;
        margin: 12px 0 0;
        display: none;
    }

        section.imovel_conteudo .coluna_a .consulte p {
            color: #628DC5;
            font-size: 16px;
            font-weight: 300;
            margin: 0;
        }

            section.imovel_conteudo .coluna_a .consulte p.titulo {
                color: #FFF;
            }

            section.imovel_conteudo .coluna_a .consulte p.desc span {
                color: #FFF;
            }

        section.imovel_conteudo .coluna_a .consulte h3 {
            color: #FFF;
            font-size: 16px;
            font-weight: 400;
            margin: 25px 0 20px;
        }

        section.imovel_conteudo .coluna_a .consulte h4 {
            color: #FFF;
            font-size: 24px;
            font-weight: 700;
            border-left: 7px solid #FDD037;
            padding-left: 15px;
            margin: 30px 0;
        }

        section.imovel_conteudo .coluna_a .consulte hr {
            background: #305586;
            border: 0;
            height: 1px;
            margin: 15px 0;
        }

        section.imovel_conteudo .coluna_a .consulte a.btn {
            color: #1F3F6D;
            font-size: 18px;
            font-weight: 600;
            background: #FDD037;
            height: 56px;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 7px 0;
        }

            section.imovel_conteudo .coluna_a .consulte a.btn:hover {
                background: #E4B71E;
            }

            section.imovel_conteudo .coluna_a .consulte a.btn img {
                margin-right: 5px;
            }

    section.imovel_conteudo .coluna_a .descricao,
    section.imovel_conteudo .coluna_a .observacao,
    section.imovel_conteudo .coluna_a .itens {
        padding: 30px 40px;
        background: #F6F6F6;
        margin: 12px 0 0;
    }

        section.imovel_conteudo .coluna_a .descricao h3,
        section.imovel_conteudo .coluna_a .observacao h3,
        section.imovel_conteudo .coluna_a .itens h3 {
            color: #1F3F6D;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 30px;
        }

        section.imovel_conteudo .coluna_a .descricao p,
        section.imovel_conteudo .coluna_a .observacao p,
        section.imovel_conteudo .coluna_a .itens p {
            color: #535252;
            font-size: 16px;
            font-weight: 300;
            line-height: 27px;
            margin: 0 0 20px;
        }

        section.imovel_conteudo .coluna_a .descricao ul,
        section.imovel_conteudo .coluna_a .observacao ul,
        section.imovel_conteudo .coluna_a .itens ul {
            -webkit-columns: 2 100px;
            -moz-columns: 2 100px;
            columns: 2 100px;
            -webkit-column-gap: 10px;
            -moz-column-gap: 10px;
            column-gap: 10px;
        }

        section.imovel_conteudo .coluna_a .descricao li,
        section.imovel_conteudo .coluna_a .observacao li,
        section.imovel_conteudo .coluna_a .itens li {
            color: #535252;
            font-size: 16px;
            font-weight: 300;
            line-height: 27px;
            margin: 0 0 5px 14px;
        }

    section.imovel_conteudo .coluna_a .compartilhe {
        padding: 30px 40px;
        background: #F0F6FF;
        margin: 12px 0 50px;
    }

        section.imovel_conteudo .coluna_a .compartilhe h3 {
            color: #1F3F6D;
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            width: 150px;
            float: left;
        }

        section.imovel_conteudo .coluna_a .compartilhe a {
            padding: 10px 15px;
            border-right: 1px solid #DDE1E9;
        }

section.imovel_conteudo .coluna_b {
    float: left;
    width: calc(36% - 12px);
}

    section.imovel_conteudo .coluna_b .datas {
        padding: 12px 20px;
        margin: 5px 0 0;
    }

        section.imovel_conteudo .coluna_b .datas .a {
            float: left;
            width: 145px;
        }

        section.imovel_conteudo .coluna_b .datas .titulo {
            color: #1F3F6D;
            font-size: 11px;
            font-weight: 500;
            height: 20px;
            width: 125px;
            text-transform: uppercase;
            text-align: center;
            padding: 5px 0 0;
        }

            section.imovel_conteudo .coluna_b .datas .titulo:before {
                width: 0;
                height: 0;
                border: 6px solid transparent;
                border-top-color: transparent;
                content: "";
                position: absolute;
                z-index: 3;
                margin: 15px 0 0;
            }

        section.imovel_conteudo .coluna_b .datas .valor {
            color: #1F3F6D;
            font-size: 18px;
            font-weight: 500;
            width: 100%;
            height: 50px;
            display: inline-flex;
            align-items: center;
        }

        section.imovel_conteudo .coluna_b .datas .b {
            color: #1F3F6D;
            font-size: 12px;
            font-weight: 500;
            float: left;
            width: calc(100% - 145px);
            height: 70px;
            display: inline-flex;
            align-items: center;
            padding-left: 30px;
        }

    section.imovel_conteudo .coluna_b .especiais {
        background: #D6E9FF;
    }

        section.imovel_conteudo .coluna_b .especiais .titulo {
            background: #FFF;
        }

            section.imovel_conteudo .coluna_b .especiais .titulo:before {
                border-top-color: #FFF;
            }

    section.imovel_conteudo .coluna_b .altatemp .titulo {
        background: #FDD037;
    }

        section.imovel_conteudo .coluna_b .altatemp .titulo:before {
            border-top-color: #FDD037;
        }

    section.imovel_conteudo .coluna_b .baixatemp .titulo {
        background: #849EBC;
    }

        section.imovel_conteudo .coluna_b .baixatemp .titulo:before {
            border-top-color: #849EBC;
        }

    section.imovel_conteudo .coluna_b .altatemp {
        background: #C0D7F2;
    }

    section.imovel_conteudo .coluna_b .baixatemp {
        background: #A3C1E4;
    }

    section.imovel_conteudo .coluna_b .consulte {
        background: #0C3D7C;
        padding: 30px 32px;
        margin: 12px 0 0;
    }

        section.imovel_conteudo .coluna_b .consulte p {
            color: #628DC5;
            font-size: 16px;
            font-weight: 300;
            margin: 0;
        }

            section.imovel_conteudo .coluna_b .consulte p.titulo {
                color: #FFF;
            }

            section.imovel_conteudo .coluna_b .consulte p.desc span {
                color: #FFF;
            }

        section.imovel_conteudo .coluna_b .consulte h3 {
            color: #FFF;
            font-size: 16px;
            font-weight: 400;
            margin: 25px 0 20px;
        }

        section.imovel_conteudo .coluna_b .consulte h4 {
            color: #FFF;
            font-size: 24px;
            font-weight: 700;
            border-left: 7px solid #FDD037;
            padding-left: 15px;
            margin: 30px 0;
        }

        section.imovel_conteudo .coluna_b .consulte hr {
            background: #305586;
            border: 0;
            height: 1px;
            margin: 15px 0;
        }

        section.imovel_conteudo .coluna_b .consulte a.btn {
            color: #1F3F6D;
            font-size: 18px;
            font-weight: 600;
            background: #FDD037;
            height: 56px;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 7px 0;
        }

            section.imovel_conteudo .coluna_b .consulte a.btn:hover {
                background: #E4B71E;
            }

            section.imovel_conteudo .coluna_b .consulte a.btn img {
                margin-right: 5px;
            }

    section.imovel_conteudo .coluna_b .calendario {
        background: #F0F6FF;
        padding: 30px 25px;
        margin: 12px 0 0;
    }

        section.imovel_conteudo .coluna_b .calendario h5 {
            color: #1F3F6D;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 20px;
        }

        section.imovel_conteudo .coluna_b .calendario #datepicker {
            margin: 0 0 15px;
        }

        section.imovel_conteudo .coluna_b .calendario .legenda a {
            font-size: 12px;
            padding-left: 5px;
        }

            section.imovel_conteudo .coluna_b .calendario .legenda a.disponivel {
                color: #eed245;
                border-left: 15px solid #eed245;
            }

            section.imovel_conteudo .coluna_b .calendario .legenda a.reservado {
                color: #ff0000;
                border-left: 15px solid #ff0000;
                margin-left: 25px;
            }

    section.imovel_conteudo .coluna_b .falecom {
        background: #F6F6F6;
        padding: 30px 32px;
        margin: 12px 0 0;
    }

        section.imovel_conteudo .coluna_b .falecom h3 {
            color: #9D9D9D;
            font-size: 18px;
            font-weight: 400;
            margin: 0 0 30px;
        }

            section.imovel_conteudo .coluna_b .falecom h3 span {
                color: #0C3D7C;
                font-weight: 400;
            }

        section.imovel_conteudo .coluna_b .falecom h4 {
            color: #0C3D7C;
            font-size: 18px;
            font-weight: 500;
            border-left: 12px solid #FDD037;
            padding-left: 10px;
            margin: 0;
        }

            section.imovel_conteudo .coluna_b .falecom h4 span {
                font-size: 11px;
                font-weight: 300;
                margin-right: 5px
            }

            section.imovel_conteudo .coluna_b .falecom h4 img {
                margin-left: 5px;
            }

        section.imovel_conteudo .coluna_b .falecom hr {
            border: 0;
            height: 1px;
            background: #D3D3D3;
            margin: 20px 0;
        }
/*IMOVEL CONSULTE*/
section.imovel_consulte {
    background: #EAEAEA;
    padding: 90px 0;
}

    section.imovel_consulte h1 {
        color: #003762;
        font-size: 30px;
        font-weight: 700;
        margin: 0 0 40px;
        text-align: center;
    }

    section.imovel_consulte .box {
        background: #FFF;
        margin: 0 auto;
        padding: 0 55px 32px;
        width: 700px;
    }

        section.imovel_consulte .box img.topo {
            display: block;
            margin: 0 auto 25px;
        }

        section.imovel_consulte .box p {
            color: #161616;
            font-size: 14px;
            margin: 0 0 30px;
            text-align: center;
        }

        section.imovel_consulte .box input {
            width: 100%;
            height: 54px;
            border: 1px solid #979797;
            margin: 0 0 7px;
            font-size: 14px;
            padding: 15px;
        }

            section.imovel_consulte .box input.celular {
                float: left;
                width: 49%;
                margin-right: 2%;
            }

            section.imovel_consulte .box input.telefone {
                float: left;
                width: 49%;
            }

            section.imovel_consulte .box input.estado {
                float: left;
                width: 32.33%;
                margin-right: 2%;
            }

            section.imovel_consulte .box input.cidade {
                float: left;
                width: 31.33%;
                margin-right: 2%;
            }

            section.imovel_consulte .box input.bairro {
                float: left;
                width: 32.33%;
            }

        section.imovel_consulte .box textarea {
            width: 100%;
            height: 150px;
            border: 1px solid #979797;
            font-size: 14px;
            padding: 15px;
            margin: 0 0 7px;
        }

        section.imovel_consulte .box input[type=submit] {
            color: #1F3F6D;
            float: right;
            width: 290px;
            background: #FDD037;
            border: 0;
            height: 54px;
            font-size: 18px;
            font-weight: 700;
        }

    section.imovel_consulte p.desc {
        color: #4B4B4B;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        width: 500px;
        text-align: center;
        margin: 30px auto;
    }
/*RESULTADOS PESQUISA*/
section.resultados_total {
    background: #F4F4F4;
    padding: 65px 0;
}

    section.resultados_total h1 {
        color: #003762;
        font-size: 15px;
        text-align: center;
        font-weight: 600;
    }
/*RESULTADOS PESQUISA VENDA*/
section.filtros_venda {
    padding: 60px 0 40px;
    border-bottom: 1px solid #D3D3D3;
}

    section.filtros_venda .coluna {
        float: left;
    }

        section.filtros_venda .coluna.a {
            width: 20%;
            padding-right: 15px;
        }

        section.filtros_venda .coluna.b {
            width: 20%;
            padding-right: 15px;
        }

            section.filtros_venda .coluna.b .irs--flat .irs-bar {
                top: 30px;
                height: 2px;
                background: #0C3D7C;
            }

            section.filtros_venda .coluna.b .irs--flat .irs-line {
                top: 30px;
                height: 2px;
            }

            section.filtros_venda .coluna.b .irs--flat .irs-handle > i:first-child {
                background: #0C3D7C;
            }

            section.filtros_venda .coluna.b .irs--flat .irs-handle {
                background: #0C3D7C;
                border-radius: 10px;
                width: 20px;
                height: 20px;
            }

            section.filtros_venda .coluna.b .irs--flat .irs-from,
            section.filtros_venda .coluna.b .irs--flat .irs-to,
            section.filtros_venda .coluna.b .irs--flat .irs-single {
                background: #0C3D7C;
            }

                section.filtros_venda .coluna.b .irs--flat .irs-from::before,
                section.filtros_venda .coluna.b .irs--flat .irs-to::before,
                section.filtros_venda .coluna.b .irs--flat .irs-single::before {
                    border-top-color: #0C3D7C;
                }

        section.filtros_venda .coluna.c {
            width: 26%;
        }

        section.filtros_venda .coluna.d {
            width: 28%;
        }

        section.filtros_venda .coluna h2 {
            color: #737373;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 400;
            margin: 0 0 20px;
        }

        section.filtros_venda .coluna .chosen-container {
            border: 1px solid #C8C8C8;
        }

        section.filtros_venda .coluna .chosen-container-single .chosen-single {
            padding: 12px 10px;
            height: 40px;
        }

            section.filtros_venda .coluna .chosen-container-single .chosen-single span {
                color: #1F3F6D;
                font-size: 12px;
                text-transform: uppercase;
            }

        section.filtros_venda .coluna.c .radio-group,
        section.filtros_venda .coluna.d .radio-group {
            display: inline-block;
            border-radius: 2px;
            overflow: hidden;
        }

        section.filtros_venda .coluna.c input[type=radio],
        section.filtros_venda .coluna.d input[type=radio] {
            position: absolute;
            visibility: hidden;
            display: none;
        }

        section.filtros_venda .coluna.c label,
        section.filtros_venda .coluna.d label {
            color: #0C3D7C;
            font-size: 12px;
            display: inline-block;
            cursor: pointer;
            padding: 12px 0;
            border: 1px solid #0C3D7C;
            width: 93px;
            text-align: center;
            border-radius: 2px;
        }

        section.filtros_venda .coluna.c input[type=radio]:checked + label,
        section.filtros_venda .coluna.d input[type=radio]:checked + label {
            color: #FFF;
            background: #0C3D7C;
        }

section.filtros_venda_mob {
    display: none;
}

    section.filtros_venda_mob .box_filtrar {
        background: #FDD037;
        padding: 8px 20px;
        border-radius: 2px;
        cursor: pointer;
    }

    section.filtros_venda_mob .texto {
        float: left;
        color: #003762;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 0 0;
        line-height: 14px;
    }

    section.filtros_venda_mob .icone {
        float: right;
    }

    section.filtros_venda_mob .box {
        padding: 5px 30px 25px;
        background: #0C3D7C;
    }

        section.filtros_venda_mob .box.box_filtro {
            display: none;
        }

        section.filtros_venda_mob .box h2 {
            color: #FDD037;
            font-size: 14px;
            margin: 30px 0 10px;
        }

        section.filtros_venda_mob .box .radio-group {
            display: inline-block;
            border-radius: 2px;
            overflow: hidden;
        }

        section.filtros_venda_mob .box input[type=radio] {
            position: absolute;
            visibility: hidden;
            display: none;
        }

        section.filtros_venda_mob .box label {
            color: #FFF;
            font-size: 12px;
            background: #0C2D57;
            display: inline-block;
            cursor: pointer;
            padding: 12px 0;
            border: 1px solid #0C2D57;
            width: 70px;
            text-align: center;
            border-radius: 2px;
        }

        section.filtros_venda_mob .box input[type=radio]:checked + label {
            color: #0C3D7C;
            background: #FFF;
        }

        section.filtros_venda_mob .box .irs--flat .irs-bar {
            top: 30px;
            height: 2px;
            background: #FFF;
        }

        section.filtros_venda_mob .box .irs--flat .irs-line {
            top: 30px;
            height: 2px;
        }

        section.filtros_venda_mob .box .irs--flat .irs-handle > i:first-child {
            background: #FFF;
        }

        section.filtros_venda_mob .box .irs--flat .irs-handle {
            background: #FFF;
            border-radius: 10px;
            width: 20px;
            height: 20px;
        }

        section.filtros_venda_mob .box .irs--flat .irs-from,
        section.filtros_venda_mob .box .irs--flat .irs-to,
        section.filtros_venda_mob .box .irs--flat .irs-single {
            background: #0C3D7C;
        }

            section.filtros_venda_mob .box .irs--flat .irs-from::before,
            section.filtros_venda_mob .box .irs--flat .irs-to::before,
            section.filtros_venda_mob .box .irs--flat .irs-single::before {
                border-top-color: #0C3D7C;
            }

        section.filtros_venda_mob .box .chosen-container {
            border: 0;
        }

        section.filtros_venda_mob .box .chosen-container-single .chosen-single {
            padding: 12px 10px;
            height: 40px;
            background: transparent;
        }

            section.filtros_venda_mob .box .chosen-container-single .chosen-single span {
                color: #FFF;
                font-size: 12px;
                text-transform: uppercase;
            }

        section.filtros_venda_mob .box select.chosen-select {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 300;
            background: #FFF;
            border: 0;
            height: 54px;
            width: 100%;
            padding: 16px 10px;
        }

        section.filtros_venda_mob .box input[type=submit] {
            color: #1F3F6D;
            font-size: 18px;
            font-weight: 700;
            background: #FDD037;
            cursor: pointer;
            margin: 30px 0 0;
            border: 0;
            height: 48px;
            width: 100%;
        }

section.resultados_venda {
    padding: 40px 0 60px;
}

    section.resultados_venda .box {
        width: 33.33%;
        float: left;
        padding: 0 8px;
        height: 620px;
    }

        section.resultados_venda .box .slick-prev {
            float: left;
            margin: 100px -21px 0 0;
            position: relative;
            z-index: 10;
            font-size: 0;
            border: 0 none;
            cursor: pointer;
            background: transparent;
            padding-left: 10px;
        }

            section.resultados_venda .box .slick-prev:before {
                content: url(../img/carousel_prev.png);
            }

        section.resultados_venda .box .slick-next {
            float: right;
            margin: -135px 0px 0 0;
            position: relative;
            z-index: 10;
            font-size: 0;
            border: 0 none;
            cursor: pointer;
            background: transparent;
            padding-right: 10px;
        }

            section.resultados_venda .box .slick-next:before {
                content: url(../img/carousel_next.png);
            }

        section.resultados_venda .box ul.slick-dots {
            text-align: center;
            height: 35px;
            margin-top: -35px;
            position: relative;
        }

            section.resultados_venda .box ul.slick-dots li {
                display: inline-block;
            }

                section.resultados_venda .box ul.slick-dots li button {
                    font-size: 0;
                    width: 9px;
                    height: 9px;
                    border-radius: 9px;
                    border: 1px solid #FFF;
                    background: transparent;
                    margin: 0 3px;
                    cursor: pointer;
                    outline: 0;
                }

                section.resultados_venda .box ul.slick-dots li.slick-active button {
                    background: #FFF;
                }

        section.resultados_venda .box .imagem-carousel img {
            width: 100%;
            height: 235px;
            object-fit: cover;
            object-position: center;
            filter: brightness(75%);
            -webkit-filter: brightness(75%);
        }

        section.resultados_venda .box .codigo {
            color: #1F3F6D;
            font-size: 12px;
            font-weight: 700;
            float: right;
            margin: -15px 25px 0;
            background: #FDD037;
            position: relative;
            padding: 7px 15px;
            display: inline-flex;
        }

            section.resultados_venda .box .codigo img {
                margin-right: 10px;
            }

    section.resultados_venda .box_b {
        background: #F6F6F6;
        margin: -20px 0 0;
        padding: 33px 25px 20px;
        min-height: 380px;
    }

    section.resultados_venda .box h2 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0 10px;
    }

    section.resultados_venda .box h3 {
        color: #5F5F5F;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        margin: 10px 0 15px;
    }

    section.resultados_venda .box h4 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        border-left: 11px solid #FDD037;
        padding-left: 13px;
        line-height: 30px;
    }

    section.resultados_venda .box p {
        color: #252525;
        font-size: 10px;
        line-height: 18px;
        margin: 0 0 20px;
    }

    section.resultados_venda .box hr {
        margin: 20px 0;
        border: 0;
        height: 1px;
        background: #D3D3D3;
    }

    section.resultados_venda .box .item {
        float: left;
        height: 35px;
        width: 100%;
    }

    section.resultados_venda .box .icone {
        float: left;
        width: 28px;
        height: 22px;
        display: flex;
    }

        section.resultados_venda .box .icone img {
            max-width: 21px;
        }

    section.resultados_venda .box .texto {
        color: #1F3F6D;
        font-size: 13px;
        font-weight: 600;
        float: left;
        height: 22px;
        display: flex;
        align-items: center;
        padding-right: 15px;
    }

    section.resultados_venda .paginacao {
        margin: 50px 0 35px;
        width: 100%;
        text-align: center;
    }

        section.resultados_venda .paginacao li {
            display: inline-block;
        }

        section.resultados_venda .paginacao a,
        section.resultados_venda .paginacao .dots,
        section.resultados_venda .paginacao .next,
        section.resultados_venda .paginacao .prev {
            color: #1F3F6D;
            padding: 10px 5px;
            background: #FFF;
            text-decoration: none;
            display: inline-block;
            width: 40px !important;
            height: 40px;
            font-size: 15px;
            border: 1px solid #E9EFF6;
        }

            section.resultados_venda .paginacao a:hover,
            section.resultados_venda .paginacao .next:hover,
            section.resultados_venda .paginacao .prev:hover {
                background: #FDD037;
                color: #1F3F6D;
                border: 1px solid #FDD037;
            }


        section.resultados_venda .paginacao .current {
            padding: 10px 5px;
            background: #FDD037;
            color: #1F3F6D;
            display: inline-block;
            width: 40px;
            height: 40px;
            font-size: 15px;
            border: 1px solid #FDD037;
        }

/*RESULTADOS PESQUISA ALUGUEL*/
section.filtros_aluguel {
    padding: 60px 0 40px;
    border-bottom: 1px solid #D3D3D3;
}

    section.filtros_aluguel .coluna {
        float: left;
    }

        section.filtros_aluguel .coluna.d {
            width: 20%;
            padding-right: 35px;
        }

        section.filtros_aluguel .coluna.c {
            width: 20%;
            padding-right: 35px;
        }

            section.filtros_aluguel .coluna.c .irs--flat .irs-bar {
                top: 30px;
                height: 2px;
                background: #0C3D7C;
            }

            section.filtros_aluguel .coluna.c .irs--flat .irs-line {
                top: 30px;
                height: 2px;
            }

            section.filtros_aluguel .coluna.c .irs--flat .irs-handle > i:first-child {
                background: #0C3D7C;
            }

            section.filtros_aluguel .coluna.c .irs--flat .irs-handle {
                background: #0C3D7C;
                border-radius: 10px;
                width: 20px;
                height: 20px;
            }

            section.filtros_aluguel .coluna.c .irs--flat .irs-from,
            section.filtros_aluguel .coluna.c .irs--flat .irs-to,
            section.filtros_aluguel .coluna.c .irs--flat .irs-single {
                background: #0C3D7C;
            }

                section.filtros_aluguel .coluna.c .irs--flat .irs-from::before,
                section.filtros_aluguel .coluna.c .irs--flat .irs-to::before,
                section.filtros_aluguel .coluna.c .irs--flat .irs-single::before {
                    border-top-color: #0C3D7C;
                }

        section.filtros_aluguel .coluna.b {
            width: 30%;
        }

        section.filtros_aluguel .coluna.a {
            width: 30%;
        }

        section.filtros_aluguel .coluna h2 {
            color: #737373;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 400;
            margin: 0 0 20px;
        }

        section.filtros_aluguel .coluna .chosen-container {
            border: 1px solid #C8C8C8;
        }

        section.filtros_aluguel .coluna .chosen-container-single .chosen-single {
            padding: 12px 10px;
            height: 40px;
        }

            section.filtros_aluguel .coluna .chosen-container-single .chosen-single span {
                color: #1F3F6D;
                font-size: 12px;
                text-transform: uppercase;
            }

        section.filtros_aluguel .coluna.b .radio-group,
        section.filtros_aluguel .coluna.a .radio-group {
            display: inline-block;
            border-radius: 2px;
            overflow: hidden;
        }

        section.filtros_aluguel .coluna.b input[type=radio],
        section.filtros_aluguel .coluna.a input[type=radio] {
            position: absolute;
            visibility: hidden;
            display: none;
        }


        section.filtros_aluguel .coluna.a label {
            color: #0C3D7C;
            font-size: 12px;
            display: inline-block;
            cursor: pointer;
            padding: 12px 0;
            border: 1px solid #0C3D7C;
            width: 93px;
            text-align: center;
            border-radius: 2px;
        }

        section.filtros_aluguel .coluna.b label {
            color: #0C3D7C;
            font-size: 12px;
            display: inline-block;
            cursor: pointer;
            padding: 12px 0;
            border: 1px solid #0C3D7C;
            width: 55px;
            text-align: center;
            border-radius: 2px;
        }

        section.filtros_aluguel .coluna.b input[type=radio]:checked + label,
        section.filtros_aluguel .coluna.a input[type=radio]:checked + label {
            color: #FFF;
            background: #0C3D7C;
        }

        section.filtros_aluguel .coluna h2 {
            color: #737373;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 400;
            margin: 0 0 20px;
        }

        section.filtros_aluguel .coluna .chosen-container {
            border: 1px solid #C8C8C8;
        }

        section.filtros_aluguel .coluna .chosen-container-single .chosen-single {
            padding: 12px 10px;
            height: 40px;
        }

            section.filtros_aluguel .coluna .chosen-container-single .chosen-single span {
                color: #1F3F6D;
                font-size: 12px;
                text-transform: uppercase;
            }

section.filtros_aluguel_mob {
    display: none;
}

    section.filtros_aluguel_mob .box_filtrar {
        background: #FDD037;
        padding: 8px 20px;
        border-radius: 2px;
        cursor: pointer;
    }

    section.filtros_aluguel_mob .texto {
        float: left;
        color: #003762;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 0 0;
        line-height: 14px;
    }

    section.filtros_aluguel_mob .icone {
        float: right;
    }

    section.filtros_aluguel_mob .box {
        padding: 5px 30px 25px;
        background: #0C3D7C;
    }

        section.filtros_aluguel_mob .box.box_filtro {
            display: none;
        }

        section.filtros_aluguel_mob .box h2 {
            color: #FDD037;
            font-size: 14px;
            margin: 30px 0 10px;
        }

        section.filtros_aluguel_mob .box .radio-group {
            display: inline-block;
            border-radius: 2px;
            overflow: hidden;
        }

        section.filtros_aluguel_mob .box input[type=radio] {
            position: absolute;
            visibility: hidden;
            display: none;
        }

        section.filtros_aluguel_mob .box label {
            color: #FFF;
            font-size: 12px;
            background: #0C2D57;
            display: inline-block;
            cursor: pointer;
            padding: 12px 0;
            border: 1px solid #0C2D57;
            width: 93px;
            text-align: center;
            border-radius: 2px;
        }

        section.filtros_aluguel_mob .box input[type=radio]:checked + label {
            color: #0C3D7C;
            background: #FFF;
        }

        section.filtros_aluguel_mob .box .irs--flat .irs-bar {
            top: 30px;
            height: 2px;
            background: #FFF;
        }

        section.filtros_aluguel_mob .box .irs--flat .irs-line {
            top: 30px;
            height: 2px;
        }

        section.filtros_aluguel_mob .box .irs--flat .irs-handle > i:first-child {
            background: #FFF;
        }

        section.filtros_aluguel_mob .box .irs--flat .irs-handle {
            background: #FFF;
            border-radius: 10px;
            width: 20px;
            height: 20px;
        }

        section.filtros_aluguel_mob .box .irs--flat .irs-from,
        section.filtros_aluguel_mob .box .irs--flat .irs-to,
        section.filtros_aluguel_mob .box .irs--flat .irs-single {
            background: #0C3D7C;
        }

            section.filtros_aluguel_mob .box .irs--flat .irs-from::before,
            section.filtros_aluguel_mob .box .irs--flat .irs-to::before,
            section.filtros_aluguel_mob .box .irs--flat .irs-single::before {
                border-top-color: #0C3D7C;
            }

        section.filtros_aluguel_mob .box .chosen-container {
            border: 0;
        }

        section.filtros_aluguel_mob .box .chosen-container-single .chosen-single {
            padding: 12px 10px;
            height: 40px;
            background: transparent;
        }

            section.filtros_aluguel_mob .box .chosen-container-single .chosen-single span {
                color: #FFF;
                font-size: 12px;
                text-transform: uppercase;
            }

        section.filtros_aluguel_mob .box select.chosen-select {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 300;
            background: #FFF;
            border: 0;
            height: 54px;
            width: 100%;
            padding: 16px 10px;
        }

        section.filtros_aluguel_mob .box input[type=submit] {
            color: #1F3F6D;
            font-size: 18px;
            font-weight: 700;
            background: #FDD037;
            cursor: pointer;
            margin: 30px 0 0;
            border: 0;
            height: 48px;
            width: 100%;
        }

section.resultados_aluguel {
    padding: 40px 0 60px;
}

    section.resultados_aluguel .box {
        width: 33.33%;
        float: left;
        padding: 0 8px;
        height: 620px;
    }

        section.resultados_aluguel .box .slick-prev {
            float: left;
            margin: 100px -21px 0 0;
            position: relative;
            z-index: 10;
            font-size: 0;
            border: 0 none;
            cursor: pointer;
            background: transparent;
            padding-left: 10px;
        }

            section.resultados_aluguel .box .slick-prev:before {
                content: url(../img/carousel_prev.png);
            }

        section.resultados_aluguel .box .slick-next {
            float: right;
            margin: -135px 0px 0 0;
            position: relative;
            z-index: 10;
            font-size: 0;
            border: 0 none;
            cursor: pointer;
            background: transparent;
            padding-right: 10px;
        }

            section.resultados_aluguel .box .slick-next:before {
                content: url(../img/carousel_next.png);
            }

        section.resultados_aluguel .box ul.slick-dots {
            text-align: center;
            height: 35px;
            margin-top: -35px;
            position: relative;
        }

            section.resultados_aluguel .box ul.slick-dots li {
                display: inline-block;
            }

                section.resultados_aluguel .box ul.slick-dots li button {
                    font-size: 0;
                    width: 9px;
                    height: 9px;
                    border-radius: 9px;
                    border: 1px solid #FFF;
                    background: transparent;
                    margin: 0 3px;
                    cursor: pointer;
                    outline: 0;
                }

                section.resultados_aluguel .box ul.slick-dots li.slick-active button {
                    background: #FFF;
                }

        section.resultados_aluguel .box .imagem-carousel img {
            width: 100%;
            height: 235px;
            object-fit: cover;
            object-position: center;
            filter: brightness(75%);
            -webkit-filter: brightness(75%);
        }

        section.resultados_aluguel .box .codigo {
            color: #1F3F6D;
            font-size: 12px;
            font-weight: 700;
            float: right;
            margin: -15px 25px 0;
            background: #FDD037;
            position: relative;
            padding: 7px 15px;
            display: inline-flex;
        }

            section.resultados_aluguel .box .codigo img {
                margin-right: 10px;
            }

    section.resultados_aluguel .box_b {
        background: #F6F6F6;
        margin: -20px 0 0;
        padding: 33px 25px 20px;
        min-height: 380px;
    }

    section.resultados_aluguel .box h2 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0 10px;
    }

    section.resultados_aluguel .box h3 {
        color: #5F5F5F;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        margin: 10px 0 15px;
    }

    section.resultados_aluguel .box h4 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        border-left: 11px solid #FDD037;
        padding-left: 13px;
        line-height: 30px;
    }

    section.resultados_aluguel .box p {
        color: #252525;
        font-size: 10px;
        line-height: 18px;
        margin: 0 0 20px;
    }

    section.resultados_aluguel .box hr {
        margin: 20px 0;
        border: 0;
        height: 1px;
        background: #D3D3D3;
    }

    section.resultados_aluguel .box .item {
        float: left;
        height: 35px;
        width: 100%;
    }

    section.resultados_aluguel .box .icone {
        float: left;
        width: 28px;
        height: 22px;
        display: flex;
    }

        section.resultados_aluguel .box .icone img {
            max-width: 21px;
        }

    section.resultados_aluguel .box .texto {
        color: #1F3F6D;
        font-size: 13px;
        font-weight: 600;
        float: left;
        height: 22px;
        display: flex;
        align-items: center;
        padding-right: 15px;
    }

    section.resultados_aluguel .paginacao {
        margin: 50px 0 35px;
        width: 100%;
        text-align: center;
    }

        section.resultados_aluguel .paginacao li {
            display: inline-block;
        }

        section.resultados_aluguel .paginacao a,
        section.resultados_aluguel .paginacao .dots,
        section.resultados_aluguel .paginacao .next,
        section.resultados_aluguel .paginacao .prev {
            color: #1F3F6D;
            padding: 10px 5px;
            background: #FFF;
            text-decoration: none;
            display: inline-block;
            width: 40px !important;
            height: 40px;
            font-size: 15px;
            border: 1px solid #E9EFF6;
        }

            section.resultados_aluguel .paginacao a:hover,
            section.resultados_aluguel .paginacao .next:hover,
            section.resultados_aluguel .paginacao .prev:hover {
                background: #FDD037;
                color: #1F3F6D;
                border: 1px solid #FDD037;
            }

        section.resultados_aluguel .paginacao .current {
            color: #1F3F6D;
            padding: 10px 5px;
            background: #FDD037;
            text-decoration: none;
            display: inline-block;
            width: 40px !important;
            height: 40px;
            font-size: 15px;
            border: none;
            margin-left: -6px;
            margin-top: -10px;
        }

/*RESULTADOS PESQUISA TEMPORADA*/
section.filtros_temporada {
    padding: 60px 0 40px;
    border-bottom: 1px solid #D3D3D3;
}

    section.filtros_temporada .coluna {
        float: left;
    }

        section.filtros_temporada .coluna.d {
            width: 15%;
            padding-right: 10px;
        }

        section.filtros_temporada .coluna.c {
            width: 15%;
            padding-right: 10px;
        }

            section.filtros_temporada .coluna.c .irs--flat .irs-bar {
                top: 30px;
                height: 2px;
                background: #0C3D7C;
            }

            section.filtros_temporada .coluna.c .irs--flat .irs-line {
                top: 30px;
                height: 2px;
            }

            section.filtros_temporada .coluna.c .irs--flat .irs-handle > i:first-child {
                background: #0C3D7C;
            }

section.filtros_aluguel .coluna.c .irs--flat .irs-handle {
    background: #0C3D7C;
    border-radius: 10px;
    width: 20px;
    height: 20px;
}

section.filtros_temporada .coluna.c .irs--flat .irs-from,
section.filtros_temporada .coluna.c .irs--flat .irs-to,
section.filtros_temporada .coluna.c .irs--flat .irs-single {
    background: #0C3D7C;
}

    section.filtros_temporada .coluna.c .irs--flat .irs-from::before,
    section.filtros_temporada .coluna.c .irs--flat .irs-to::before,
    section.filtros_temporada .coluna.c .irs--flat .irs-single::before {
        border-top-color: #0C3D7C;
    }

section.filtros_temporada .coluna.b {
    width: 26%;
}

section.filtros_temporada .coluna.a {
    width: 26%;
}

section.filtros_temporada .coluna h2 {
    color: #737373;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 20px;
}

section.filtros_temporada .coluna .chosen-container {
    border: 1px solid #C8C8C8;
}

section.filtros_temporada .coluna .chosen-container-single .chosen-single {
    padding: 12px 10px;
    height: 40px;
}

    section.filtros_temporada .coluna .chosen-container-single .chosen-single span {
        color: #1F3F6D;
        font-size: 12px;
        text-transform: uppercase;
    }

section.filtros_temporada .coluna.b .radio-group,
section.filtros_temporada .coluna.a .radio-group {
    display: inline-block;
    border-radius: 2px;
    overflow: hidden;
}

section.filtros_temporada .coluna.b input[type=radio],
section.filtros_temporada .coluna.a input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}


section.filtros_temporada .coluna.a label {
    color: #0C3D7C;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    padding: 12px 0;
    border: 1px solid #0C3D7C;
    width: 93px;
    text-align: center;
    border-radius: 2px;
}

section.filtros_temporada .coluna.b label {
    color: #0C3D7C;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    padding: 12px 0;
    border: 1px solid #0C3D7C;
    width: 55px;
    text-align: center;
    border-radius: 2px;
}

section.filtros_temporada .coluna.b input[type=radio]:checked + label,
section.filtros_temporada .coluna.a input[type=radio]:checked + label {
    color: #FFF;
    background: #0C3D7C;
}

section.filtros_temporada .coluna h2 {
    color: #737373;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 20px;
}

section.filtros_temporada .coluna .chosen-container {
    border: 1px solid #C8C8C8;
}

section.filtros_temporada .coluna .chosen-container-single .chosen-single {
    padding: 12px 10px;
    height: 40px;
}

    section.filtros_temporada .coluna .chosen-container-single .chosen-single span {
        color: #1F3F6D;
        font-size: 12px;
        text-transform: uppercase;
    }

section.filtros_temporada_mob {
    display: none;
}

    section.filtros_temporada_mob .box_filtrar {
        background: #FDD037;
        padding: 8px 20px;
        border-radius: 2px;
        cursor: pointer;
    }

    section.filtros_temporada_mob .texto {
        float: left;
        color: #003762;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 0 0;
        line-height: 14px;
    }

    section.filtros_temporada_mob .icone {
        float: right;
    }

    section.filtros_temporada_mob .box {
        padding: 5px 30px 25px;
        background: #0C3D7C;
    }

        section.filtros_temporada_mob .box.box_filtro {
            display: none;
        }

        section.filtros_temporada_mob .box h2 {
            color: #FDD037;
            font-size: 14px;
            margin: 30px 0 10px;
        }

        section.filtros_temporada_mob .box .radio-group {
            display: inline-block;
            border-radius: 2px;
            overflow: hidden;
        }

        section.filtros_temporada_mob .box input[type=radio] {
            position: absolute;
            visibility: hidden;
            display: none;
        }

        section.filtros_temporada_mob .box label {
            color: #FFF;
            font-size: 12px;
            background: #0C2D57;
            display: inline-block;
            cursor: pointer;
            padding: 12px 0;
            border: 1px solid #0C2D57;
            width: 70px;
            text-align: center;
            border-radius: 2px;
        }

        section.filtros_temporada_mob .box input[type=radio]:checked + label {
            color: #0C3D7C;
            background: #FFF;
        }

        section.filtros_temporada_mob .box .irs--flat .irs-bar {
            top: 30px;
            height: 2px;
            background: #FFF;
        }

        section.filtros_temporada_mob .box .irs--flat .irs-line {
            top: 30px;
            height: 2px;
        }

        section.filtros_temporada_mob .box .irs--flat .irs-handle > i:first-child {
            background: #FFF;
        }

        section.filtros_temporada_mob .box .irs--flat .irs-handle {
            background: #FFF;
            border-radius: 10px;
            width: 20px;
            height: 20px;
        }

        section.filtros_temporada_mob .box .irs--flat .irs-from,
        section.filtros_temporada_mob .box .irs--flat .irs-to,
        section.filtros_temporada_mob .box .irs--flat .irs-single {
            background: #0C3D7C;
        }

            section.filtros_temporada_mob .box .irs--flat .irs-from::before,
            section.filtros_temporada_mob .box .irs--flat .irs-to::before,
            section.filtros_temporada_mob .box .irs--flat .irs-single::before {
                border-top-color: #0C3D7C;
            }

        section.filtros_temporada_mob .box .chosen-container {
            border: 0;
        }

        section.filtros_temporada_mob .box .chosen-container-single .chosen-single {
            padding: 12px 10px;
            height: 40px;
            background: transparent;
        }

            section.filtros_temporada_mob .box .chosen-container-single .chosen-single span {
                color: #FFF;
                font-size: 12px;
                text-transform: uppercase;
            }

        section.filtros_temporada_mob .box select.chosen-select {
            color: #5F5F5F;
            font-size: 16px;
            font-weight: 300;
            background: #FFF;
            border: 0;
            height: 54px;
            width: 100%;
            padding: 16px 10px;
        }

        section.filtros_temporada_mob .box input[type=submit] {
            color: #1F3F6D;
            font-size: 18px;
            font-weight: 700;
            background: #FDD037;
            cursor: pointer;
            margin: 30px 0 0;
            border: 0;
            height: 48px;
            width: 100%;
        }

section.resultados_temporada {
    padding: 40px 0 60px;
}

    section.resultados_temporada .box {
        width: 33.33%;
        float: left;
        padding: 0 8px;
        height: 670px;
    }

        section.resultados_temporada .box .slick-prev {
            float: left;
            margin: 100px -21px 0 0;
            position: relative;
            z-index: 10;
            font-size: 0;
            border: 0 none;
            cursor: pointer;
            background: transparent;
            padding-left: 10px;
        }

            section.resultados_temporada .box .slick-prev:before {
                content: url(../img/carousel_prev.png);
            }

        section.resultados_temporada .box .slick-next {
            float: right;
            margin: -135px 0px 0 0;
            position: relative;
            z-index: 10;
            font-size: 0;
            border: 0 none;
            cursor: pointer;
            background: transparent;
            padding-right: 10px;
        }

            section.resultados_temporada .box .slick-next:before {
                content: url(../img/carousel_next.png);
            }

        section.resultados_temporada .box ul.slick-dots {
            text-align: center;
            height: 35px;
            margin-top: -35px;
            position: relative;
        }

            section.resultados_temporada .box ul.slick-dots li {
                display: inline-block;
            }

                section.resultados_temporada .box ul.slick-dots li button {
                    font-size: 0;
                    width: 9px;
                    height: 9px;
                    border-radius: 9px;
                    border: 1px solid #FFF;
                    background: transparent;
                    margin: 0 3px;
                    cursor: pointer;
                    outline: 0;
                }

                section.resultados_temporada .box ul.slick-dots li.slick-active button {
                    background: #FFF;
                }

        section.resultados_temporada .box .imagem-carousel img {
            width: 100%;
            height: 235px;
            object-fit: cover;
            object-position: center;
            filter: brightness(75%);
            -webkit-filter: brightness(75%);
        }

        section.resultados_temporada .box .codigo {
            color: #1F3F6D;
            font-size: 12px;
            font-weight: 700;
            float: right;
            margin: -15px 25px 0;
            background: #FDD037;
            position: relative;
            padding: 7px 15px;
            display: inline-flex;
        }

            section.resultados_temporada .box .codigo img {
                margin-right: 10px;
            }

    section.resultados_temporada .box_b {
        background: #F6F6F6;
        margin: -20px 0 0;
        padding: 33px 25px 20px;
        min-height: 420px;
    }

    section.resultados_temporada .box h2 {
        color: #1F3F6D;
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0 10px;
    }

    section.resultados_temporada .box h3 {
        color: #5F5F5F;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        margin: 10px 0 15px;
    }

    section.resultados_temporada .box p {
        color: #252525;
        font-size: 10px;
        line-height: 18px;
        margin: 0 0 20px;
    }

    section.resultados_temporada .box hr {
        margin: 20px 0;
        border: 0;
        height: 1px;
        background: #D3D3D3;
    }

    section.resultados_temporada .box .item {
        float: left;
        height: 35px;
        width: 100%;
    }

    section.resultados_temporada .box .icone {
        float: left;
        width: 28px;
        height: 22px;
        display: flex;
    }

        section.resultados_temporada .box .icone img {
            max-width: 21px;
        }

    section.resultados_temporada .box .texto {
        color: #1F3F6D;
        font-size: 13px;
        font-weight: 600;
        float: left;
        height: 22px;
        display: flex;
        align-items: center;
        padding-right: 15px;
    }

    section.resultados_temporada .box .coluna {
        float: left;
        width: 33.33%;
    }

        section.resultados_temporada .box .coluna .titulo {
            color: #1F3F6D;
            font-size: 9px;
            font-weight: 600;
            height: 20px;
            width: 100%;
            text-transform: uppercase;
            text-align: center;
            padding: 5px 0 0;
        }

            section.resultados_temporada .box .coluna .titulo:before {
                width: 0;
                height: 0;
                border: 6px solid transparent;
                border-top-color: transparent;
                content: "";
                position: absolute;
                z-index: 3;
                margin: 15px 0 0;
            }

        section.resultados_temporada .box .coluna.especiais .titulo {
            background: #FFF;
        }

            section.resultados_temporada .box .coluna.especiais .titulo:before {
                border-top-color: #FFF;
            }

        section.resultados_temporada .box .coluna.altatemp .titulo {
            background: #FDD037;
        }

            section.resultados_temporada .box .coluna.altatemp .titulo:before {
                border-top-color: #FDD037;
            }

        section.resultados_temporada .box .coluna.baixatemp .titulo {
            background: #849EBC;
        }

            section.resultados_temporada .box .coluna.baixatemp .titulo:before {
                border-top-color: #849EBC;
            }

        section.resultados_temporada .box .coluna .valor {
            color: #1F3F6D;
            font-size: 16px;
            font-weight: 400;
            width: 100%;
            height: 35px;
            margin: 0;
            padding: 9px 0 0;
            text-align: center;
        }

        section.resultados_temporada .box .coluna.especiais .valor {
            background: #D6E9FF;
        }

        section.resultados_temporada .box .coluna.altatemp .valor {
            background: #C0D7F2;
        }

        section.resultados_temporada .box .coluna.baixatemp .valor {
            background: #A3C1E4;
        }

        section.resultados_temporada .box .coluna .obs {
            color: #808080;
            font-size: 8px;
            height: 20px;
            text-decoration: underline;
            display: inline-flex;
        }

    section.resultados_temporada .paginacao {
        margin: 50px 0 35px;
        width: 100%;
        text-align: center;
    }

        section.resultados_temporada .paginacao li {
            display: inline-block;
        }

        section.resultados_temporada .paginacao a,
        section.resultados_temporada .paginacao .dots,
        section.resultados_temporada .paginacao .next,
        section.resultados_temporada .paginacao .prev {
            color: #1F3F6D;
            padding: 10px 5px;
            background: #FFF;
            text-decoration: none;
            display: inline-block;
            width: 40px !important;
            height: 40px;
            font-size: 15px;
            border: 1px solid #E9EFF6;
        }

            section.resultados_temporada .paginacao a:hover,
            section.resultados_temporada .paginacao .next:hover,
            section.resultados_temporada .paginacao .prev:hover {
                background: #FDD037;
                color: #1F3F6D;
                border: 1px solid #FDD037;
            }

        section.resultados_temporada .paginacao .current {
            color: #1F3F6D;
            padding: 10px 5px;
            background: #FDD037;
            text-decoration: none;
            display: inline-block;
            width: 40px !important;
            height: 40px;
            font-size: 15px;
            border: none;
            margin-left: -6px;
            margin-top: -10px;
        }

/*FOOTER*/
footer {
    background: #003762;
    padding: 50px 0 30px;
}

    footer .newsletter {
        margin: 0 0 110px;
        padding: 0 150px;
    }

        footer .newsletter h2 {
            color: #FFF;
            text-align: center;
            margin: 0 0 50px;
            font-size: 17px;
            font-weight: 700;
        }

            footer .newsletter h2 span {
                color: #FDD037;
                font-weight: 700;
            }

        footer .newsletter input[type=text] {
            float: left;
            width: 32.33%;
            margin-right: 1%;
            color: #FFF;
            font-size: 16px;
            height: 48px;
            background: transparent;
            border: 1px solid #979797;
            padding: 5px 25px;
        }

        footer .newsletter input[type=submit] {
            float: left;
            width: 33.33%;
            color: #003762;
            font-size: 18px;
            font-weight: 700;
            height: 48px;
            background: #FDD037;
            border: 1px solid #FDD037;
            cursor: pointer;
        }

            footer .newsletter input[type=submit]:hover {
                background: #E4B71E;
            }

    footer .logo {
        text-align: center;
    }

    footer h2 {
        color: #FFF;
        font-size: 14px;
        margin: 20px 0 30px;
        font-weight: 400;
    }

    footer hr {
        border: 0;
        height: 1px;
        background: #556C7E;
        margin: 30px 0 35px;
    }

    footer h3 {
        color: #FDD037;
        font-size: 16px;
        margin: 0 0 20px;
        font-weight: 500;
        text-transform: uppercase;
    }

    footer h4 {
        color: #FFF;
        font-size: 16px;
        font-weight: 300;
    }

        footer h4 span {
            font-weight: 400;
            margin-right: 5px;
        }

    footer p {
        color: #A1A1A1;
        font-size: 16px;
        line-height: 24px;
        font-weight: 300;
    }

    footer .colunas {
        text-align: center;
    }

    footer .coluna {
        display: inline-grid;
        text-align: left;
    }

        footer .coluna li {
            list-style: none;
        }

        footer .coluna a {
            color: #A1A1A1;
            font-size: 16px;
            line-height: 30px;
            font-weight: 300;
        }

            footer .coluna a.titulo {
                color: #FFF;
                font-weight: 400;
            }

        footer .coluna.a {
            width: 200px;
        }

            footer .coluna.a .social {
                margin-top: 70px;
            }

                footer .coluna.a .social p {
                    color: #FFF;
                    font-size: 16px;
                    font-weight: 400;
                    margin: 0 0 15px;
                }

        footer .coluna.b {
            width: 300px;
        }

            footer .coluna.b hr {
                margin: 25px 0;
                width: 60%;
            }

        footer .coluna.c {
            width: 200px;
        }

            footer .coluna.c hr {
                width: 200px;
                margin: 15px 0;
            }
/*RWD*/
@media (min-width:1599px) {
    section.home_capa img.capa {
        height: 830px;
    }
}

@media (max-width:1199px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    header .menu ul {
        display: none;
    }

    section.home_capa img.capa {
        height: 630px;
    }

    section.home_capa .conteudo .popup_bairros {
        left: 10%;
        top: 150px;
        width: 80%;
    }

    section.home_carousel {
        padding: 60px 0;
    }

        section.home_carousel .slick-list {
            width: 100%;
        }

    section.home_classificados {
        padding: 60px 0;
    }

    section.home_blog .capa {
        width: 40%;
    }

    section.home_blog .conteudo {
        width: 60%;
    }

    section.home_populares {
        padding: 60px 0;
    }

    section.resultados_total {
        padding: 45px 0;
    }

    section.filtros_aluguel .coluna.a {
        padding: 0 10px;
    }
    /*section.filtros_aluguel .coluna.c{padding:0 10px 0 50px;}*/
    section.resultados_aluguel .box {
        height: 620px;
    }

        section.resultados_aluguel .box .item {
            width: 100%;
        }

    section.resultados_temporada .box {
        height: 670px;
    }

    section.resultados_venda .box {
        height: 615px;
    }

        section.resultados_venda .box .item {
            width: 100%;
        }

    section.falecom_mapa .mapa {
        margin-left: 0;
    }

    section.falecom_mapa .imagem {
        width: 320px;
        margin-right: 45px;
    }

    section.falecom_mapa .info {
        width: calc(100% - 695px);
    }
}

@media (max-width:991px) {
    header .filtro a {
        display: none;
    }

    section.home_capa .conteudo .popup_bairros {
        left: 5%;
        width: 90%;
    }

    section.imovel_topo #imovel_fotos {
        height: 325px;
    }

        section.imovel_topo #imovel_fotos img {
            height: 325px;
        }

    section.imovel_topo #imovel_video {
        height: 325px;
    }

    section.imovel_topo .slick-prev {
        margin-top: 145px;
    }

    section.imovel_topo .slick-next {
        margin-top: -180px;
    }

    section.imovel_topo .embed-container {
        height: 325px;
    }

        section.imovel_topo .embed-container iframe,
        section.imovel_topo .embed-container object,
        section.imovel_topo .embed-container embed {
            height: 325px;
        }

    section.imovel_topo #imovel_mapa {
        height: 325px;
    }

        section.imovel_topo #imovel_mapa #map {
            height: 325px;
        }

    section.imovel_conteudo .coluna_a {
        width: 100%;
        margin-right: 0;
    }

        section.imovel_conteudo .coluna_a .compartilhe {
            margin: 12px 0 0;
        }

    section.imovel_conteudo .coluna_b {
        width: 100%;
    }

        section.imovel_conteudo .coluna_b .falecom {
            margin: 12px 0;
        }

    section.home_carousel .aba a {
        font-size: 16px;
    }

    section.home_classificados .coluna {
        width: 70%;
    }

    section.home_classificados .formulario {
        padding: 0 150px;
        width: 100%;
        margin: 25px 0 0;
    }

    section.resultados_aluguel .box {
        width: 50%;
    }

    section.filtros_aluguel .coluna.a,
    section.filtros_aluguel .coluna.b,
    section.filtros_aluguel .coluna.c {
        width: 100%;
        padding: 0 0 25px;
    }

    section.resultados_temporada .box {
        width: 50%;
        height: 670px;
    }

    section.filtros_temporada .coluna.a,
    section.filtros_temporada .coluna.b,
    section.filtros_temporada .coluna.c {
        width: 100%;
        padding: 0 10px 25px 0;
    }

    section.resultados_venda .box {
        width: 50%;
    }

    section.filtros_venda .coluna.a,
    section.filtros_venda .coluna.b,
    section.filtros_venda .coluna.c,
    section.filtros_venda .coluna.d {
        width: 100%;
        padding: 0 0 25px;
    }

    section.falecom_mapa {
        padding: 60px 0;
    }

        section.falecom_mapa .mapa {
            width: 50%;
            height: 300px;
        }

        section.falecom_mapa .gmap_canvas {
            height: 300px;
            width: 100%;
        }

            section.falecom_mapa .gmap_canvas iframe {
                width: 100%;
            }

        section.falecom_mapa .imagem {
            width: 50%;
            height: 300px;
            margin: 0;
        }

            section.falecom_mapa .imagem img {
                height: 300px;
            }

        section.falecom_mapa .info {
            width: 100%;
        }
}

@media (max-width:767px) {
    header .filtro {
        display: none;
        width: 0;
    }

    header .menu {
        width: calc(100% - 250px);
    }

    section.home_capa img.capa {
        height: 750px;
    }

    section.home_capa .conteudo .popup_bairros {
        left: 2%;
        top: 80px;
        width: 96%;
        padding: 20px 30px;
    }

    section.home_capa .conteudo {
        margin-top: -640px;
        height: 640px;
    }

        section.home_capa .conteudo h1 {
            font-size: 25px;
        }

    section.home_capa #pesquisa_venda .tipo,
    section.home_capa #pesquisa_venda .cidade,
    section.home_capa #pesquisa_venda .bairro,
    section.home_capa #pesquisa_venda .dormitorios {
        width: 100%;
        margin: 0 0 5px;
    }

    section.home_capa #pesquisa_venda .buscar {
        width: 100%;
    }

    section.home_capa #pesquisa_aluguel .tipo,
    section.home_capa #pesquisa_aluguel .dormitorios {
        width: 100%;
        margin: 0 0 5px;
    }

    section.home_capa #pesquisa_aluguel .buscar {
        width: 100%;
    }

    section.home_capa #pesquisa_temporada .tipo,
    section.home_capa #pesquisa_temporada .hospedes {
        width: 100%;
        margin: 0 0 5px;
    }

    section.home_capa #pesquisa_temporada .buscar {
        width: 100%;
    }

    section.cadastre_imovel .box {
        width: 100%;
        padding: 0 30px 30px;
    }

    section.falecom .box {
        width: 100%;
        padding: 0 30px 30px;
    }

        section.falecom .box input.celular {
            width: 100%;
            margin-right: 0;
        }

        section.falecom .box input.telefone {
            width: 100%;
        }

        section.falecom .box input.estado {
            width: 100%;
            margin-right: 0;
        }

        section.falecom .box input.cidade {
            width: 100%;
            margin-right: 0;
        }

        section.falecom .box input.bairro {
            width: 100%;
        }

        section.falecom .box input[type="submit"] {
            width: 100%;
        }

    section.cadastre_imovel .box input.celular {
        width: 100%;
        margin-right: 0;
    }

    section.cadastre_imovel .box input.telefone {
        width: 100%;
    }

    section.cadastre_imovel .box input[type="submit"] {
        width: 100%;
    }

    section.imovel_consulte .box {
        width: 100%;
        padding: 0 30px 30px;
    }

        section.imovel_consulte .box input.celular {
            width: 100%;
            margin-right: 0;
        }

        section.imovel_consulte .box input.telefone {
            width: 100%;
        }

        section.imovel_consulte .box input.estado {
            width: 100%;
            margin-right: 0;
        }

        section.imovel_consulte .box input.cidade {
            width: 100%;
            margin-right: 0;
        }

        section.imovel_consulte .box input.bairro {
            width: 100%;
        }

        section.imovel_consulte .box input[type="submit"] {
            width: 100%;
        }

    section.imovel_consulte p.desc {
        width: 100%;
    }

    section.imovel_conteudo .coluna_a .datas {
        display: block;
    }

    section.imovel_conteudo .coluna_a .consulte {
        display: block;
    }

    section.imovel_conteudo .coluna_a .info,
    section.imovel_conteudo .coluna_a .descricao,
    section.imovel_conteudo .coluna_a .observacao,
    section.imovel_conteudo .coluna_a .itens {
        padding: 30px;
    }

        section.imovel_conteudo .coluna_a .info .item {
            width: 100%;
        }

    section.home_carousel .aba a {
        margin: 0 10px 0 0;
        font-size: 15px;
    }

    section.home_classificados .coluna {
        width: 85%;
    }

    section.home_classificados .imagem {
        padding: 0 50px;
    }

    section.home_classificados .coluna {
        width: 100%;
    }

    section.home_classificados .formulario {
        padding: 0 50px;
    }

    section.home_funcionalidades {
        padding: 60px 0;
    }

        section.home_funcionalidades .coluna {
            width: 100%;
            padding: 0 50px 50px;
        }

    section.home_blog {
        padding: 60px 0;
    }

        section.home_blog .capa {
            width: 100%;
            height: 200px;
        }

            section.home_blog .capa img {
                height: 200px;
            }

        section.home_blog .conteudo {
            width: 100%;
            padding: 25px;
        }

    section.home_populares .coluna {
        width: 100%;
        text-align: center;
    }

    section.resultados_aluguel .box {
        width: 100%;
    }

    section.resultados_temporada .box {
        width: 100%;
        height: auto;
        margin: 0 0 15px;
    }

    section.resultados_venda .box {
        width: 100%;
    }

    footer .newsletter {
        padding: 0 15px;
    }

    footer .coluna {
        text-align: center;
    }

        footer .coluna.b {
            margin: 50px 0 0;
        }

            footer .coluna.b hr {
                margin: 25px auto;
            }

        footer .coluna.c {
            margin: 50px 0 0;
        }
}

@media (max-width:479px) {
    header .logo {
        text-align: left;
        padding: 15px 0 0 15px;
    }

    header .menu {
        padding: 0 15px 0 0;
    }

    section.home_capa .conteudo h1 {
        display: none;
    }

    section.imovel_topo .slick-prev {
        margin-top: 95px;
    }

    section.imovel_topo .slick-next {
        margin-top: -130px;
    }

    section .imovel_topo #imovel_fotos {
        height: 225px;
    }


        section.imovel_topo #imovel_fotos .ver_fotos img {
            width: 15px;
            height: 19px;
        }

    section.imovel_topo #imovel_video {
        height: 225px;
    }

    section.imovel_topo .embed-container {
        height: 225px;
    }

        section.imovel_topo .embed-container iframe,
        section.imovel_topo .embed-container object,
        section.imovel_topo .embed-container embed {
            height: 225px;
        }

    section.imovel_topo #imovel_mapa {
        height: 225px;
    }

        section.imovel_topo #imovel_mapa #map {
            height: 225px;
        }

    section.imovel_conteudo .coluna_a .info .titulo {
        width: 100%;
    }

        section.imovel_conteudo .coluna_a .info .titulo h2 {
            font-weight: 500;
            margin: 0 0 15px;
        }

    section.imovel_conteudo .coluna_a .info .aba a {
        font-size: 13px;
        padding: 11px 10px;
        margin-right: 2px;
    }

    section.imovel_conteudo .coluna_a .info .codigo {
        font-size: 12px;
        float: left;
        margin: 0 0 15px;
    }

    section.imovel_conteudo .coluna_a .info,
    section.imovel_conteudo .coluna_a .descricao,
    section.imovel_conteudo .coluna_a .observacao,
    section.imovel_conteudo .coluna_a .itens {
        padding: 20px;
        margin: 12px -15px 0;
    }

        section.imovel_conteudo .coluna_a .descricao ul,
        section.imovel_conteudo .coluna_a .observacao ul,
        section.imovel_conteudo .coluna_a .itens ul {
            -webkit-columns: 1 100px;
            -moz-columns: 1 100px;
            columns: 1 100px;
        }

        section.imovel_conteudo .coluna_a .descricao p,
        section.imovel_conteudo .coluna_a .observacao p,
        section.imovel_conteudo .coluna_a .itens p {
            color: #252525;
        }

    section.imovel_conteudo .coluna_a .compartilhe {
        margin: 12px -15px 0;
        padding: 20px;
    }

        section.imovel_conteudo .coluna_a .compartilhe h3 {
            width: 100px;
        }

        section.imovel_conteudo .coluna_a .compartilhe a {
            padding: 10px;
        }

    section.imovel_conteudo .coluna_b .consulte {
        padding: 20px;
        margin: 12px -15px 0;
    }

    section.imovel_conteudo .coluna_b .falecom {
        margin: 12px -15px;
        padding: 20px;
    }

    section.imovel_conteudo .coluna_b .datas {
        padding: 10px;
        margin: 5px -15px 0;
    }

        section.imovel_conteudo .coluna_b .datas .b {
            padding-left: 20px;
        }

    section.home_capa .aba a {
        margin: 0 15px 0 0;
    }

    section.home_carousel .slick-list {
        width: 99%;
    }

    section.home_classificados .coluna {
        width: 100%;
    }

    section.home_classificados .imagem {
        padding: 0 20px;
    }

        section.home_classificados .imagem img {
            width: 70%;
            margin: 0 auto;
            display: block;
        }

        section.home_classificados .imagem .box {
            width: 80px;
            height: 80px;
            font-size: 13px;
            padding: 27px 0;
            margin: -50px auto 0;
            float: unset;
        }

    section.home_classificados .formulario {
        text-align: center;
        padding: 0 20px;
    }

    section.home_classificados hr {
        margin: 20px auto 35px;
    }

    section.home_carousel .box {
        width: 100%;
    }

    section.home_blog .conteudo {
        height: auto;
    }

        section.home_blog .conteudo li a {
            font-size: 11px;
        }

    section.filtros_aluguel {
        display: none;
    }

    section.filtros_aluguel_mob {
        display: block;
    }

        section.filtros_aluguel_mob .box {
            padding: 5px 20px 20px;
            margin: 0 -15px;
        }

            section.filtros_aluguel_mob .box label {
                padding: 12px 10px;
                width: auto;
            }

        section.filtros_aluguel_mob .box_filtrar {
            padding: 10px 20px 7px;
            margin: 0 -15px;
        }

    section.resultados_aluguel .box {
        margin: 0 -15px 15px;
        padding: 0;
        width: calc(100% + 30px);
        height: auto;
    }

        section.resultados_aluguel .box .slick-prev {
            margin: 100px -26px 0 0;
            padding-left: 15px;
        }

        section.resultados_aluguel .box .slick-next {
            padding-right: 15px;
        }

    section.filtros_temporada {
        display: none;
    }

    section.filtros_temporada_mob {
        display: block;
    }

        section.filtros_temporada_mob .box {
            padding: 5px 20px 20px;
            margin: 0 -15px;
        }

            section.filtros_temporada_mob .box label {
                padding: 12px 10px;
                width: auto;
            }

        section.filtros_temporada_mob .box_filtrar {
            padding: 10px 20px 7px;
            margin: 0 -15px;
        }

    section.resultados_temporada .box {
        margin: 0 -15px 15px;
        padding: 0;
        width: calc(100% + 30px);
        height: auto;
    }

        section.resultados_temporada .box .slick-prev {
            margin: 100px -26px 0 0;
            padding-left: 15px;
        }

        section.resultados_temporada .box .slick-next {
            padding-right: 15px;
        }

    section.filtros_venda {
        display: none;
    }

    section.filtros_venda_mob {
        display: block;
    }

        section.filtros_venda_mob .box {
            padding: 5px 20px 20px;
            margin: 0 -15px;
        }

            section.filtros_venda_mob .box label {
                padding: 12px 10px;
                width: auto;
            }

        section.filtros_venda_mob .box_filtrar {
            padding: 10px 20px 7px;
            margin: 0 -15px;
        }

    section.resultados_total {
        padding: 35px 0;
    }

    section.resultados_venda .box {
        margin: 0 -15px 15px;
        padding: 0;
        width: calc(100% + 30px);
        height: auto;
    }

        section.resultados_venda .box .slick-prev {
            margin: 100px -26px 0 0;
            padding-left: 15px;
        }

        section.resultados_venda .box .slick-next {
            padding-right: 15px;
        }

    section.falecom_mapa .mapa {
        width: 100%;
    }

    section.falecom_mapa .gmap_canvas {
        width: 100%;
    }

    section.falecom_mapa .imagem {
        width: 100%;
    }

    footer {
        padding: 60px 0;
    }

        footer .newsletter input[type="text"] {
            width: 100%;
            margin: 0 0 5px;
        }

        footer .newsletter input[type="submit"] {
            width: 100%;
        }

        footer .coluna.b {
            margin: 0;
        }

        footer .coluna a.titulo {
            margin: 45px 0 0;
            display: block;
        }
}


.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: bold;
    }

    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable {
    padding-right: 35px;
}

    .alert-dismissable .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

.control-label {
    text-align: left;
}

.icone_imovel {
    height: 16px;
    width: auto;
}

.posicao_icone {
    padding-top: 7px;
}

.desenvolvido {
    text-align: center;
    font-size: 10pt;
    color: #fdd037;
}

    .desenvolvido a {
        text-align: center;
        font-size: 10pt;
        color: #fdd037;
    }

.table-default td {
    border: 1px solid #626262;
    padding: 5px;
}

.valor2 {
    font-size: 8pt;
}

/*********** MODAL *****************/
.close {
    float: right;
    line-height: 50px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    width: 100px;
    height: 28px;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        opacity: .2;
    }

/*button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}*/

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

/*.modal-header .close {
        margin-top: -2px;
    }*/

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}


input[type=button].botao, input[type=submit].botao {
    display: block;
    width: 140px !important;
    border: 0px;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    font-family: Arial;
    background: #F9DD39;
    color: #424243;
    font-weight: bolder;
    cursor: pointer;
    padding: 12px 0;
    float: right;
}

    input[type=button].botao, input[type=submit].botao:hover {
        background: #eac716;
    }

/***************FIM MODAL********************/

section.cadastre_imovel .radio-group,
section.cadastre_imovel .radio-group {
    display: inline-block;
    border-radius: 2px;
    overflow: hidden;
}

section.cadastre_imovel input[type=radio],
section.cadastre_imovel input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

section.cadastre_imovel label,
section.cadastre_imovel label {
    color: #0C3D7C;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    padding: 12px 0;
    border: 1px solid #0C3D7C;
    width: 93px;
    text-align: center;
    border-radius: 2px;
}

section.cadastre_imovel input[type=radio]:checked + label,
section.cadastre_imovel input[type=radio]:checked + label {
    color: #FFF;
    background: #0C3D7C;
}

section.cadastre_imovel select.chosen-select {
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 400;
    background: #FFF;
    border: 1px solid #ededed;
    height: 54px;
    width: 100%;
    padding: 16px 10px;
}

/*----------------preloader-------------------------------*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #fff;
    display: flex;
}

.spinner {
    width: 64px;
    height: 64px;
    margin: auto;
    /*background: linear-gradient(310deg, rgb(72, 132, 238), rgb(6, 188, 251) );*/
    background-image: url(../img/loading.gif);
    border-radius: 50%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}


.tabela_valor th, td {
    padding: 0;
    text-align: left;
}

.tabela_valor tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tabela_valor th {
    background-color: dodgerblue;
    color: white;
}
