* {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

body{
    background-color: #f7fdff;
}

.loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background-color: #f7fdff;

    z-index: 9999!important;
}

.loader {
    position: relative;
    width:  48px;
    height: 48px;
    background: #01c265;
    transform: rotateX(65deg) rotate(45deg);
    
    color: rgba(18, 255, 139, .5);
    animation: layers1 1s linear infinite alternate;
  }
  .loader:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 255, 139, .5);
    animation: layerTr 1s linear infinite alternate;
  }

  @keyframes layers1 {
    0% { box-shadow: 0px 0px 0 0px  }
   90% , 100% { box-shadow: 20px 20px 0 -4px  }
  }
  @keyframes layerTr {
    0% { transform:  translate(0, 0) scale(1) }
    100% {  transform: translate(-25px, -25px) scale(1) }
  }
      

.loader-image{
    position: relative;
}
.loader-image::before{
    position: absolute;
    content: '';

    top: 0;
    left: 0;

    width: 100%;
    height: 180px;
    
    background-image: linear-gradient(90deg, transparent, #f7fdff 50%, transparent 100%),
        linear-gradient(#edf2f4 180px, transparent 0);
   background-repeat: no-repeat;    
   background-size: 100px 275px, 100% 180px, 100% 25px, 100% 16px, 100% 20px;
   background-position: -185px 0, center 0, center 190px, center 225px, center 250px;
   box-sizing: border-box;
   animation: animloader .5s linear infinite;
}

  @keyframes animloader {
    to {
      background-position: 285px 0, center 0, center 190px, center 225px, center 250px;
    }
  }

.lazy{
    opacity: 0;
}

.loaded{
    opacity: 1;
    z-index: 0;
}

.lazy-col.entered{
    opacity: 1;
}

h1.section-title{
    color: #000;
    font-weight: 600;
    margin-bottom: 2rem;
}

.listagem-imoveis a{
    color: unset;
    text-decoration: unset;
}

.listagem-imoveis .card-imovel {
    padding: 1rem;
    border-radius: 15px;    

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.listagem-imoveis .card-imovel:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.listagem-imoveis .card-imovel .card-imovel-image {
    position: relative;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}
.listagem-imoveis .card-imovel .card-imovel-image img{
    position: relative;    

    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.listagem-imoveis .card-imovel:hover .card-imovel-image img{
    transform: scale(1.1);
}

.listagem-imoveis .card-imovel .card-imovel-image .tag{
    position: absolute;

    top: 10px;
    left: 10px;

    padding: 5px 10px;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 5px;

    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.listagem-imoveis .card-imovel:hover .card-imovel-image .tag{
    background-color: #01c265;
}

.listagem-imoveis .card-imovel .card-imovel-info {
    margin-top: 1rem;
}

.listagem-imoveis .card-imovel .card-imovel-info h1.local-name{
    font-size: 1.5rem;
    font-weight: 600;
}

.listagem-imoveis .card-imovel .card-imovel-info h2.local-city{
    font-size: 1rem;
    font-weight: 400;
}

.listagem-imoveis .card-imovel .card-imovel-info p.price{
    font-size: 1.25rem;
    font-weight: 600;
}

.listagem-imoveis .card-imovel .card-imovel-info p.price span.property-type{
    color: #6f6f6f;
    font-size: 1rem;
    font-weight: 400;
}
.listagem-imoveis .card-imovel .card-imovel-info p.price span.property-type:before{
    content: '/';
    color: #6f6f6f;
    font-size: 1rem;
    font-weight: 400;
}

header nav.navbar{
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

header nav.navbar.menu-open{
    position: fixed;
    z-index: 999!important;
}

header nav.navbar.active,
header nav.navbar.scrolling{
    top: 0!important;
    background-color: #000;
}

header nav.navbar .navbar-toggler{
    position: absolute;
    
    top: 0;    
    right: 0;
    padding: 0;
    margin: 0;
}

header nav.navbar .menu-icon {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
header nav.navbar .menu-icon .menu-icon__cheeckbox {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    z-index: 2;
    -webkit-touch-callout: none;
    position: absolute;
    opacity: 0;
}
header nav.navbar .menu-icon div {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 12px;
}
header nav.navbar .menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
header nav.navbar .menu-icon span:first-of-type {
    top: 0;
}
header nav.navbar .menu-icon span:last-of-type {
    bottom: 0;
}
header nav.navbar .menu-icon.active span:first-of-type,
header nav.navbar.menu-open .menu-icon .menu-icon__cheeckbox + div span:first-of-type {
    transform: rotate(45deg);
    top: 5px;
}
header nav.navbar .menu-icon.active span:last-of-type,
header nav.navbar.menu-open .menu-icon .menu-icon__cheeckbox + div span:last-of-type {
    transform: rotate(-45deg);
    bottom: 5px;
}
header nav.navbar .menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
    width: 22px;
}
@media (min-width: 1024px) {
    header nav.navbar .menu-icon:hover span:first-of-type {
        width: 26px;
    }
    header nav.navbar .menu-icon:hover span:last-of-type {
        width: 12px;
    }
}

header nav.navbar .logo img{
    width: 100%;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

header nav.navbar .navbar-nav a{
    text-decoration: none;
}

header nav.navbar .navbar-nav .btn{
    margin-left: 1rem;
}

header nav.navbar .navbar-nav .btn:hover{
    transform: none;
    box-shadow: none;
}

header nav.navbar .navbar-nav li.item{
    position: relative;
    z-index: 0;

    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: .95rem;
    margin: 0 1.25rem;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

header nav.navbar.scrolling .navbar-nav li.active,
header nav.navbar.scrolling .navbar-nav li.item{
    color: #fff;
}

header nav.navbar .navbar-nav a:hover li.item{
    font-weight: 700;
}


header nav.navbar .navbar-nav .dropdown .dropdown-menu{
    min-width: 250px;
    border-radius: 15px;
    overflow: hidden;
}

header nav.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item{
    padding: .5rem 1rem;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

header nav.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover{
    background-color: rgba(1, 194, 101, .1);
    color: #01c265;
    font-weight: 700;
}


header nav.navbar .navbar-nav .dropdown .dropdown-item .icon-text p {
    margin: 0 0 0 10px;
    font-weight: 500;

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

header nav.navbar .navbar-nav .dropdown .dropdown-item:hover .icon-text p{
    font-weight: 600;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
 }

header nav.navbar .navbar-nav .dropdown-toggle::after{    
    position: absolute;
    top: 3px;
    right: 0;

    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}



section#bar {
    background-color: #000;
    padding: 1rem 0;
}

section#bar .col-number{
    display: inline-flex;
    align-items: center;
}

section#bar .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 2px solid #fff;
    border-radius: 100px;
}

section#bar .icon svg{
    fill: #fff;
    height: 15px;
}

section#bar .numbers {
    margin: 0;
}

section#bar .numbers a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

section#bar .numbers a:hover{
    color: #12ff8b;
}

section#bar .numbers b{
    color: #12ff8b;
    font-weight: 500;
}

section#bar .numbers a span{
    font-size: .8rem;
}

section#bar .numbers a:after{
    content: "|";
    font-size: 500;
    color: #12ff8b;
    margin: 0 10px;
}

section#bar .numbers a:last-child:after{
    content: '';
}

section#bar .col-redes{
    display: inline-flex;
    align-items: center;
}

section#bar .col-redes .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 2px solid #fff;
    border-radius: 100px;
}

section#bar .col-redes .icon:hover{
    border-color: #12ff8b;
}

section#bar .col-redes .icon:hover svg{
    fill: #12ff8b;
}

section#bar .col-redes .icon svg{
    fill: #fff;
    height: 15px;
}

section#banner {
    padding: 10rem 0;
    background: url("../img/banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    
}

section#banner .col-texts svg{
    width: 100%;
    margin-bottom: 2rem;
}

section#banner .col-texts p.description{
    color: #fff;
    margin-bottom: 2rem;
}

section#banner .busca .botao-tipo{
    position: relative;

    padding: 1.5rem;
    color: #fff;
    cursor: pointer;
    text-align: center;
    background-color: rgba(0, 0, 0, .4);    
    z-index: 0;
    overflow:  hidden;

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

section#banner .busca .botao-tipo:before {
    position: absolute;
    content: '';

    background: #fff;
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,1);

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

section#banner .busca .botao-tipo:hover{
    background-color: #fff;
    color: #01c265;
}

section#banner .busca .botao-tipo:active{
    color: #fff;
}
section#banner .busca .botao-tipo:active:before{
    background-color: #01c265;
}

section#banner .busca .botao-tipo:hover:before {
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
    
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;

    z-index: -1;
}


section#banner .busca .botao-tipo.active,
section#banner .busca .botao-tipo.active:hover,
section#banner .busca .botao-tipo.active:before{
    content: none;
    background-color: #01c265;
    color: #fff;
}

section#banner .busca .botao-tipo#botao_rapida{
    border-radius: 15px 0 0 0;
}

section#banner .busca .botao-tipo#botao_codigo{
    border-radius: 0 15px 0 0;
}

section#banner .busca .busca-filtros{
    background-color: #fff;
    padding: 2rem;

    border-radius: 0 15px 15px 15px;
}

section#banner .busca .busca-filtros .col-selects{
    margin-top: 0;
}

section#banner .busca .busca-filtros select{
    padding: 1rem;
    cursor: pointer;
}

section#banner .busca .busca-filtros select:hover{
    background-color: #f5f5f5;
}

section#banner .busca .busca-filtros select:focus{
    box-shadow: none;
    border-color: #01c265;
}

section#banner .busca .busca-filtros input{
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}

section#banner .busca .busca-filtros input:hover{
    background-color: #f5f5f5;
}

section#banner .busca .busca-filtros input:focus{
    box-shadow: none;
    outline: none;
    border-color: #01c265;
}

section#banner .busca .busca-filtros .content-busca{
    display: none;
}
section#banner .busca .busca-filtros .content-busca.active{
    display: block;
}

section#banner .busca .busca-filtros #buscar{
    position: relative;
    cursor: pointer;
    border:none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #01c265;
    border-radius: 10px;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

section#banner .busca .busca-filtros #buscar svg{
    fill: #fff;
    width: 20px;
    height: 20px;

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

section#banner .busca .busca-filtros #buscar:before {
    position: absolute;
    content: '';

    background: #fff;
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,1);

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

section#banner .busca .busca-filtros #buscar:hover{
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, .1);
}

section#banner .busca .busca-filtros #buscar:hover svg{
    fill: #01c265;
}

section#banner .busca .busca-filtros #buscar:hover:before {
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
    
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;

    z-index: -1;
}

section#imoveis{
    padding: 4rem 0;
}

section#sobre{
    position: relative;

    padding: 4rem 0;
}

section#sobre .container-fluid{
    padding: 4rem 0;
    background-color: #0f0f0f;
}

section#sobre .render{
    position: absolute;

    top: 0;
    left: 0;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

section#sobre .render svg{
    width: auto;
    height: 556px;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

@media (min-width: 992px) {
    section#sobre .render{
        left: -7%;
    }
    
    section#sobre .render svg{
        width: auto;
        height: 420px;
    }
}

@media (min-width: 1200px) {
    section#sobre .render{
        left: -6%;
    }

    section#sobre .render svg{
        width: auto;
        height: 488px;
    }
}

@media (min-width: 1400px) {
    section#sobre .render{
        left: -6%;
    }

    section#sobre .render svg{
        width: auto;
        height: 556px;
    }
}

@media (min-width: 1600px) {
    section#sobre .render{
        left: 0;
    }

    section#sobre .render svg{
        width: auto;
        height: 556px;
    }
}

section#sobre img.render{
    position: absolute;

    top: 0;
    left: 0;

    height: 530px;
}

section#sobre img.banner {
    width: 100%;
    border-radius: 30px;
}

section#sobre h1.title{
    color: #01c265;
    font-weight: 600;
}

section#sobre p.description{
    color: #fff;
}

section#servicos{
    padding: 4rem 0 8rem 0;
}

section#servicos .card-servico{
    padding: 2rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    border-radius: 10px;
    height: 100%;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

section#servicos .card-servico .circle-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 70px;
    height: 70px;    
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;

    background-color: #01c265;    
    border-radius: 70px;    

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

section#servicos .card-servico:hover .circle-icon{
    padding: 15px;
    background-color: #f7fdff;
}

section#servicos .card-servico .circle-icon svg{
    width: 70px;
    height: 70px;
    fill: #fff;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

section#servicos .card-servico:hover .circle-icon svg{
    fill: #01c265;
}

section#servicos .card-servico h1.title{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

section#servicos .card-servico p.description{
    font-size: 1rem;
    text-align: center;
    color: #6f6f6f;
}

section#contatos {
    position: relative;
    padding: 10rem 0 4rem 0;
    background: url("../img/background-contatos.jpg");
    background-size: cover;
}

section#contatos .col-atendimento {
    position: absolute;

    top: -4rem;

    left: 0;
    right: 0;
}

section#contatos .col-atendimento .card-atendimento{
    background-color: #0f0f0f;
    padding: 2rem;
    border-radius: 10px;
}

section#contatos .col-atendimento .card-atendimento h1.title{
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

section#contatos h1.title{
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

section#contatos .card-contato {
    position: relative;

    background-color: #f7fdff;
    border-radius: 10px;
    padding: calc(2rem + 20px) 2rem 2rem 2rem;
}

section#contatos .col-card-contato:first-child{
    margin-bottom: 5rem;
}

section#contatos .card-contato .circle-icon{
    position: absolute;

    top: -35px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    
    width: 70px;
    height: 70px;

    background-color: #01c265;
    border-radius: 70px;
    padding: 20px;
}

section#contatos .card-contato .circle-icon svg{
    fill: #fff;    
}

section#contatos .card-contato h1.title{
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

section#contatos .card-contato a{
    margin-bottom: 5px;
}
section#contatos .card-contato a.number{
    display: block;

    color: #000;   
    text-decoration: unset;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

section#contatos .card-contato a.number span{
    font-size: .9rem;
    font-weight: 600;
}

section#contatos .card-contato a.mail{
    display: block;

    color: #6f6f6f;   
    text-decoration: unset;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

section#contatos .card-contato a.number:hover,
section#contatos .card-contato a.mail:hover{
    color: #01c265;
}

section#contatos .card-contato p.description{
    color: #6f6f6f;   
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

section#contatos form textarea,
section#contatos form input {
    padding: 1rem;
    margin: 0.5rem 0;
    background-color: #fff;
    color: #6f6f6f;
    border: 2px solid transparent;
    border-radius: 10px;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

section#contatos form textarea:hover,
section#contatos form input:hover{
    background-color: #edf2f4;    
}

section#contatos form textarea:focus,
section#contatos form input:focus{
    outline: none;
    background-color: #edf2f4;
    border-color: #01c265;
}

section#listagem-imoveis{
    padding: 4rem 0 8rem 0;
}

section#listagem-imoveis h1.section-title{
    font-size: 2rem;
}

section#listagem-imoveis .filtrar-resultado p{
    color: #6f6f6f;
    margin: 0;
}

section#listagem-imoveis .filtrar-resultado select{
    padding: .5rem 1rem;
    cursor: pointer;
}

section#listagem-imoveis .filtrar-resultado select:hover{
    background-color: #f5f5f5;
}

section#listagem-imoveis .filtrar-resultado select:focus{
    box-shadow: none;
    border-color: #01c265;
}

section#listagem-imoveis .filtros {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

section#listagem-imoveis .filtros .filtro {
    padding-bottom: 2rem;    
}

section#listagem-imoveis .filtros .filtro:last-child{
    padding-bottom: 0;
}

section#listagem-imoveis .filtros .filtro p.titulo-filtro{
    font-weight: 500;
    margin: 0;
}

section#listagem-imoveis .filtros .filtro p.ver-mais{
    cursor: pointer;
    color: #01c265;
    text-decoration: underline;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

section#listagem-imoveis .filtros .filtro p.ver-mais:hover{
    font-weight: 600;
}

section#listagem-imoveis .filtros .filtro button.aplicar{
    border: none;
    background-color: #01c265;
    width: 40px;
    height: 100%;
    border-radius: 5px;
    color: #FFF;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;    
}

section#listagem-imoveis .filtros .filtro button.aplicar:hover{
    background-color: #12ff8b;
    color: #000;
}

section#listagem-imoveis .filtros .filtro button.aplicar svg{
    width: 15px;
    height: 15px;
    fill: #fff;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;  
}

section#listagem-imoveis .filtros .filtro button.aplicar:hover svg{
    fill: #000;
}

section#listagem-imoveis .filtros .filtro select{
    padding: .5rem 1rem;
    cursor: pointer;
}

section#listagem-imoveis .filtros .filtro select:hover{
    background-color: #f5f5f5;
}

section#listagem-imoveis .filtros .filtro select:focus{
    box-shadow: none;
    border-color: #01c265;
}

section#listagem-imoveis .filtros .filtro input.form-check-input{
    border-radius: 5px;    
}

section#listagem-imoveis .filtros .filtro input.form-check-input:focus{
    box-shadow: none;
}

section#listagem-imoveis .filtros .filtro input.form-check-input:checked[type=radio] {
    background-image: url(../img/check.svg);
    background-color: #01c265;
    border: 3.5px solid #01c265;
}

section#listagem-imoveis .filtros .filtro input.form-control{
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}

section#listagem-imoveis .filtros .filtro input.form-control:hover{
    background-color: #f5f5f5;
}

section#listagem-imoveis .filtros .filtro input.form-control:focus{
    box-shadow: none;
    outline: none;
    border-color: #01c265;
}

section#listagem-imoveis nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
section#listagem-imoveis nav .pagination .page-item .page-link:focus{
    box-shadow: none;
}
section#listagem-imoveis nav .pagination .page-item .page-link{
    padding: 10px 20px;
    color: #000;
}
section#listagem-imoveis nav .pagination .page-item:first-child .page-link {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
section#listagem-imoveis nav .pagination .page-item:last-child .page-link {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
}
section#listagem-imoveis nav .pagination .page-item .page-link svg{
    stroke: #b1afaf;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    fill-rule: evenodd;
    width: 7px;
}
section#listagem-imoveis nav .pagination .page-item.active .page-link {
    background-color: #01c265;
    border-color: #01c265;
    color: #fff;
    font-weight: 600;
}


section#imovel {
    padding: 4rem 0 2rem 0;
}

section#imovel h1.section-title{
    font-size: 2rem;
    margin: 1rem 0;
}

section#imovel .gallery .imovel {
    position: relative;
}
section#imovel .gallery .imovel .arrow{
    cursor: pointer;
}
section#imovel .gallery .imovel .arrow.left{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 0;
    bottom: 0;
    left: 15px;

    margin-top: auto;
    margin-bottom: auto;

    width: 50px;
    height: 50px;

    background-color: #01c265;
    border-radius: 100px;

    z-index: 5;
    overflow: hidden;
}
section#imovel .gallery .imovel .arrow::before{
    position: absolute;
    content: '';

    width: 60px;
    height: 60px;

    transform: scale(0);

    background: rgba(255, 255, 255, 1);
    border-radius: 100px;


    z-index: -1;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

section#imovel .gallery .imovel .arrow:hover::before{
    transform: scale(1);
}

section#imovel .gallery .imovel .arrow:hover svg{
    stroke: #01c265;
}

section#imovel .gallery .imovel .arrow.right{
    position: absolute;    
    display: flex;
    justify-content: center;
    align-items: center;

    top: 0;
    bottom: 0;
    right: 15px;

    margin-top: auto;
    margin-bottom: auto;

    width: 50px;
    height: 50px;

    background-color: #01c265;
    border-radius: 100px;

    z-index: 5;
    overflow: hidden;
}

section#imovel .gallery .imovel .arrow svg{
    stroke: #fff;
    stroke-width: 2px;
    width: 15px;
    height: 15px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span{
    background: #01c265;
}

section#imovel .gallery .galeria-imovel .item img{
    object-fit: cover;
    height: 450px;
    border-radius: 10px;
}

section#imovel .gallery .galeria-thumbnail {
    margin-top: 1rem;
}
section#imovel .gallery .galeria-thumbnail .item{
    cursor: pointer;
    background-color: #fff;
    border-radius: 10px;
    border: 3px solid transparent;
  
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
  }
  
  section#imovel .gallery .galeria-thumbnail .item img{
    opacity: .4;

    height: 100px;
    border-radius: 10px;

    -o-object-fit: cover;
    object-fit: cover;
  
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
  }
  section#imovel .gallery .galeria-thumbnail .item:hover img{  
    opacity: .65;
  }
  section#imovel .gallery .galeria-thumbnail .item.active img{    
    opacity: 1;  
  }
  

section#imovel .description {
    margin-top: 2rem;    
}

section#imovel .description h1.description-title{
    font-size: 2rem;
}

section#imovel .description p.desc{
    color: #6f6f6f;
}

section#imovel .price-tag {
    display: flex;
    justify-content: end;
    margin-bottom: 1rem;;
}
section#imovel .price-tag .price{
    width: max-content;
    padding: 1rem 2rem 1rem 1rem;
    background-color: #0f0f0f;
    color: #fff;
    text-transform: uppercase;

    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

    margin-right: -1rem;
}

section#imovel .price-tag .tag{
    position: relative;
    width: max-content;
    padding: 1rem;
    background-color: #01c265;
    color: #fff;
    text-transform: uppercase;
    border-radius: 10px;

    z-index: 0;
}

section#imovel .price-tag .tag:before{
    position: absolute;
    content: '';


    top: 0;
    bottom: 0;
    left: -3px;

    margin-top: auto;
    margin-bottom: auto;

    width: 20px;
    height: 20px;

    transform: rotate(45deg);

    background-color: #01c265;
    border-radius: 2px;
    z-index: -1;
}

section#imovel .details {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

section#imovel .details h1.local{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

section#imovel .details ul {
    padding: 0;
}

section#imovel .details ul li{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 15px;
}

section#imovel .details ul li .icon{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

section#imovel .details ul li .icon img{
    width: 100%;
}

section#imovel .details ul li p {
    font-weight: 500;
    margin: 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
section#imovel .details ul li p:hover{
    color: #01c265;
    font-weight: 600;
}
section#imovel .details ul li p span{
    color: #6f6f6f;
    font-weight: 400;
}

section#imovel .details p.taxa {
    margin: 0;
}

section#imovel .details p.taxa:first-of-type{
    margin-top: 2rem;
}

section#imovel .details p.taxa span{
    font-weight: 600;
}

section#imovel .details .more-details {
    padding: 1rem 0 2.5rem 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    margin: 2rem 0;
}

section#imovel .details .more-details h1.title-more-details{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

section#imovel .details .more-details li {
    display: flex;
    align-items: center;

    box-sizing: border-box;
}
  
section#imovel .details .more-details li:nth-child(odd) {
    clear:both;
    float:left;
    width:50%;
}

section#imovel .details .more-details li .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
}
section#imovel .details .more-details li .icon svg{
    stroke: #01c265;
    stroke-miterlimit: 10;
    stroke-width: 4px;
    fill-rule: evenodd;
}

section#imovel .details .more-details li p{
    margin: 0;
}

section#imovel .details .btn{
    width: 100%;
}

[data-page="detalhe"] section#listagem-imoveis{
    padding: 0 0 6rem 0;
}

footer {
    position: relative;

    padding: 4rem 0 2rem 0;
    background-color: #0f0f0f;
}

footer .col-footer {
    padding-bottom: 2rem;
    border-bottom: 2px solid #343434;
}

footer img.logo{
    width: 100%;
}

footer p.title{
    color: #01c265;
    font-weight: 600;
    text-transform: uppercase;
}

footer ul{
    padding: 0;
}

footer ul li{
    list-style: none;    
    padding: 5px 0;
}

footer ul li a{
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover{
    color: #01c265;
}

footer form textarea,
footer form input {
    padding: 1rem;
    background-color: #fff;
    color: #6f6f6f;
    border: 2px solid transparent;
    border-radius: 10px 0 0 10px;
    height: 50px;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

footer form textarea:hover,
footer form input:hover{
    background-color: #edf2f4;    
}

footer form textarea:focus,
footer form input:focus{
    outline: none;
    background-color: #edf2f4;
    border-color: #01c265;
}

footer form button.btn{
    height: 50px;
    border-radius: 0 10px 10px 0;
}

footer form button.btn.green:before{
    background-color: #fff;
}
footer form button.btn.green:hover{
    transform: translateY(0);
    box-shadow: none;
}

footer .entalhe{
    position: absolute;
    
    top: 0;
    right: 0;

    width: 25%;
    padding: 0;
}

footer .entalhe svg{
    width: 100%;
}

footer .col-copy {
    padding-top: 2rem;
}

footer .col-copy p{
    color: #fff;
    margin: 0;
}

footer .col-copy svg{
    width: 100px;
    fill: #fff;
}

.btn {
    width: auto;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: 0;
}

.btn:focus{
    outline: none;
    box-shadow: none;
}

.btn.green {
    position: relative;
    background-color: #01c265;
    color: #fff;
    font-weight: 500;
    z-index: 0;
    overflow: hidden;

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.btn.green:before {
    position: absolute;
    content: '';

    background: #fff;
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,1);

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.btn.green:hover{
    background-color: #fff;
    color: #01c265;

    transform: translateY(-5px);
    box-shadow: 0 5px 40px rgba(0, 0, 0, .1);
}

.btn.green:active{
    transform: translateY(0);
    box-shadow: none;
}

.btn.green:hover:before {
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
    
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;

    z-index: -1;
}

.btn.white {
    position: relative;
    background-color: #fff;
    color: #01c265;
    font-weight: 500;
    z-index: 0;
    overflow: hidden;

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.btn.white:before {
    position: absolute;
    content: '';

    background: #01c265;
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,1);

    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.btn.white:hover{
    background-color: #01c265;
    color: #fff;

    transform: translateY(-5px);
    box-shadow: 0 5px 40px rgba(0, 0, 0, .1);
}

.btn.white:active{
    transform: translateY(0);
    box-shadow: none;
}

.btn.white:hover:before {
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
    
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;

    z-index: -1;
}

@media (max-width: 992px) {
    header nav.navbar{
        padding: 1rem 0;
    }
    
    header nav.navbar.menu-open{
        background-color: #000;        
    }

    header nav.navbar .col-nav {
        position: absolute;
        left: 0;
        top: 0;

        background-color: #000;
        opacity: 0;
        display: none;

        width: 100%;
        height: 100vh;
        z-index: -1;
    }

    header nav.navbar.menu-open .col-nav{
        opacity: 1;
        display: block;
    }
    
    header nav.navbar.scrolling{
        padding: 1rem 0;
    }

    header nav.navbar.menu-open.scrolling .logo svg{
        fill: #fff;
    }
    
    header nav.navbar .navbar-nav .dropdown-toggle::after{
        content: none;
    }

    header nav.navbar .navbar-nav li.item{
        font-size: 1.5rem;
        text-align: center;
        margin: 1.5rem 0;
    }

    header nav.navbar .navbar-nav .btn{
        font-size: 1.5rem;
    }
    header nav.navbar .navbar-nav .btn svg{
        width: 2rem;
        height: 2rem;
    }

    header nav.navbar.scrolling .navbar-nav li.item{
        color: #fff;
    }

    header nav.navbar .navbar-toggler {
        position: absolute;
        top: 15px;
        right: 0;
        padding: 0;
        margin: 0;
    }

    header nav.navbar .navbar-nav{
        height: 100vh;        
    }

    header nav.navbar .navbar-nav .btn{
        margin: 0;
    }
    header nav.navbar .navbar-nav .btn:last-child{
        margin-top: 1rem;
    }

    section#imoveis h1.section-title,
    section#servicos h1.section-title,
    section#contatos h1.title{
        text-align: center;
    }

    section#banner .busca .busca-filtros{
        background-color: #fff;
        padding: 2rem;
    
        border-radius: 0 0 15px 15px;
    }
    
    section#banner .busca .busca-filtros #buscar{
        width: 100%;
        height: 50px;

        margin-top: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
   
    section#banner .busca .busca-filtros #buscar p{
        color: #fff;
        font-weight: 700;
        margin: 0 0 0 10px;
    }
    
    section#banner .busca .busca-filtros #buscar:hover p{
        color: #01c265;
    }

    section#banner .busca .botao-tipo#botao_codigo{
        border-radius: 0 15px 0 0;
    }

    .listagem-imoveis .card-imovel .card-imovel-image {
        position: relative;
        height: 275px;
        border-radius: 10px;
        overflow: hidden;
    }

    section#listagem-imoveis {
        padding: 4rem 0;
    }

    section#listagem-imoveis h1.section-title {
        font-size: 1.5rem;
    }

    [data-page="listagem"] section#listagem-imoveis{
        padding: 2rem 0 2rem 0;
    }

    section#imovel {
        padding: 0;
    }

    [data-page="detalhe"] section#listagem-imoveis{
        padding: 0 0 2rem 0;
    }

    section#imovel h1.section-title{
        font-size: 1.5rem;
    }

    section#imovel .gallery .galeria-imovel .item img{
        height: 250px;
    }

    section#imovel .gallery .galeria-thumbnail .item img{
        height: 90px;
    }

    section#imovel .price-tag {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;;
    }

    footer form textarea,
    footer form input {
        border-radius: 10px;
    }

    footer form button.btn{
        width: 100%;
        margin-top: 10px;
        border-radius: 10px;
    }
}