/**
 *
 * Folha de Estilos Padrão do site
 *
 *	Theme Name: IWS Store
 *	Description: O Template Base para Lojas Virtuais da Infinito AG
 *	Version: 1.0
 *	Author: Infinito AG
 *	Author URI: https://www.infinitoag.com
 *
**/
/***********************************
 * DEFINIÇÕES PRINCIPAIS
***********************************/

html { -ms-content-zooming: none | zoom; }

body{	
    font-family: "Poppins", sans-serif;
    font-size: 16px;
	font-weight: 500;
	background: #f3f3f3;
    overflow-x: hidden;
    color: #444;
    line-height: 26px;
}

a { color: #fff; }

a:hover {
	opacity: 0.85;
	text-decoration: none !important;	
	color: #17384f; 
}

a, a:hover {
	transition: 0.4s;
	-webkit-transition: 0.4s;
}

h1 { font-size: 48px; }

h2 {
    font-size: 42px;
    margin: 30px 0 20px;
}

h3 { font-size: 26px; }
h4 { font-size: 20px; }

img	{ max-width: 100%; height: auto;}



hr {
    margin: 40px 0;
    border-top: 1px solid #ddd;
}

/***********************************
 * BOTÕES E FORMS
***********************************/

.btn {
    border-radius: 5px;
    box-shadow: none;
    outline: 0;
    border: 0;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 18px;
}


.btn-rounded { border-radius: 25px; }

.btn.btn-default,
.btn.btn-default:hover { 
    color: #ffffff;
    background-color: #d4a74a;
    border-color: #d4a74a;
}

.btn-warning, .btn-primary {
    color: #ffffff;
    background-color: #d4a74a;
    border-color: #d4a74a;
}

.btn-warning:hover, 
.btn-primary:hover {
    color: #ffffff;
    background-color: #d4a74a;
    border-color: #d4a74a;
}

.btn-danger,
.btn-danger.active,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.open>.dropdown-toggle.btn-danger,
.btn-warning,
.btn-warning.active,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover,
.open>.dropdown-toggle.btn-warning {
    color: #ffffff;
    background: #d65735; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #d65735 0%, #ffb752 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #d65735 0%,#ffb752 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #d65735 0%,#ffb752 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d65735', endColorstr='#ffb752',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border: 0;
}

.btn-inverted {
    background: transparent;
    color: #c44428;
    border: 1px solid #c44428;    
    font-weight: 600;
}

.form-control {
    box-shadow: none;
    background: #D3D1D1;
    border: 1px solid #D3D1D1;
    color: #000;
    font-size: 18px;
    border-radius: 5px;
    min-height: 50px;
}

textarea.form-control { max-height: 120px; }

.form-control:focus {
	border: 1px solid #999;
	box-shadow: none;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 35px;
    border-color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 34px;
    font-size: 14px;
}

.select2-results__option[aria-selected] {
    color: #444;
    font-size: 14px;
}

.slider.slider-horizontal {
    width: calc(100% - 20px);
    margin: 0 10px;
}

a.btn-destacado {
    position: relative;
    margin: 20px 0 50px;
}
a.btn-destacado:before {
    content: "";
    width: 200%;
    height: 1px;
    background: #13364e;
    position: absolute;
    right: 100%;
    top: 15px;
}

a.btn-destacado:after {
    content: "";
    width: 200%;
    height: 1px;
    background: #13364e;
    position: absolute;
    left: 100%;
    top: 15px;
}

.embed-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
} 

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.slick-slider .slick-arrow:hover {
    opacity: 1;
}

.slick-slider .slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    left: -40px;
    margin-top: -25px;
    font-size: 0px;
    border: 0;
    background: transparent url('img/seta-esquerda.png') no-repeat center;
    background-size: 15px;
    opacity: 0.8;
    filter: grayscale(1) brightness(0);
}

.slick-slider .slick-arrow.slick-next {
    background: transparent url('img/seta-direita.png') no-repeat center;
    background-size: 15px;
    left: unset;
    right: -40px;
}

 
ul.slick-dots {
    margin: 0;
    padding: 0 15px;
    list-style: none;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    gap: 5px;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100vw;
    line-height: 1;
}

.slick-dots li {
    line-height: 1;
    display: flex;
    height: 10px;
    margin: 0;
}

.slick-dots li.slick-active button {
    background: #13364e;
    border: 1px solid #13364e;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border: 2px solid;
    display: inline-block;
    font-size: 0px;
    padding: 0;
    border-radius: 100%;
    border: 1px solid #fff;
    background: transparent;
}

.tos-wrapper.tos-fixed {
    z-index: 999999999;
}

/***********************************
 * CABECALHO E MENU
***********************************/

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 333;
    background: #FFF;
    border-top: 5px solid #17384f;
    width: 100%;
    transition: .4s ease;
    padding: 10px 0;
}

.scrolled #header {
    box-shadow: 0 0 25px -5px #000c;
    padding: 5px 0;
}

.admin-bar #header { top: 32px; }
.scrolled #header #header-logo { margin-top: 5px; }
.scrolled #header-logo img { max-width: 200px; }

#main-menu {
    background: transparent;
    border: 0;
    float: right;
    margin: 0;
}

#main-menu .menu-item a {
    color: #17384f;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 10px;
}

#main-menu .current-menu-item a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

div#menu-nav { margin-top: 15px; }
div#menu-nav, #main-menu .container-fluid { padding: 0; }

.scrolled #header #main-menu {
    margin-top: 6px;
    margin-bottom: 5px;
}

#header, #main-menu,
#header-logo img,
#header-logo,
.home div#busca,
a#btn-contato,
#header #busca,
#header .social {
    transition: 0.5s;    
}

div#main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

#main-nav button.btn {
    background: none;
    color: #1a3a50;
    font-size: 32px;
    padding: 10px;
    margin-top: 5px;
}

#main-nav a { color: #1a3a50; }

.main-nav-contatos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
#main-nav .contact-item {
    margin: 0;
    line-height: 1.2;
}

#main-nav .contact-item i {
    margin: 6px 0 0;
    font-size: 30px;
    color: #d4a74a;
}

#main-nav .contact-item > div:first-child {
    min-width: 50px;
}


#header .social {
    margin-top: 25px;
    text-align: right;
}
#header .social a {
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    color: #FFF;
    font-size: 22px;
    margin: 3px 5px;
}

.scrolled #header .social {
    margin-top: 15px;
}

div#menu-modal {
    background: #fffe;
}

#menu-modal .modal-content {
    border: 0;
    background: none;
}

#menu-modal ul#menu-menu-principal {
    text-align: center;
    font-size: 21px;
    line-height: 1.8;
}

#menu-modal ul#menu-menu-principal a { color: #1a3a51; }
#menu-modal ul#menu-menu-principal a:hover { color: #000; }

#menu-menu-principal .menu-separador {
    font-size: 0px;
    border-bottom: 1px solid #ddd;
    width: 350px;
    margin: 20px auto;
    max-width: 100%;
}

#menu-modal .modal-header .close {
    float: none !important;
    margin: 0 auto;
    opacity: 1;
}

#menu-modal .modal-header .close span {
    font-size: 16px;
    text-transform: uppercase;
    color: #000 !important;
}

/***********************************
 * RODAPÉ
***********************************/

#footer {
    background: #666;
    color: #FFF;
    font-size: 18px;
    line-height: 20px;
    padding: 50px 0 0;
    overflow: hidden;
}

.grecaptcha-badge {
    display: none !important;
}

.footer-widget a { color: #fff; }
.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li { margin-bottom: 5px; }
.footer-widget ul span {
    display: inline-block;
    vertical-align: middle;
}

.newsletter-form {
    /*background: #FFF;*/
    padding: 0 5px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    display: block;
    width: calc(100% - 110px);
}

.newsletter-form .form-group label {
    display: inline-block;
    width: 40px;
    color: #999;
    text-align: right;
    font-size: 28px;
    height: 44px;
    vertical-align: middle;
    line-height: 44px;
}
.newsletter-form .form-group .form-control {
    width: calc(100% - 50px);
    display: inline-block;
    background: #FFF;
    border: 0;
}

.newsletter-form p { margin: 0; }

.footer-logo { text-align: right; }

#footer .social a {
    font-size: 32px;
    display: inline-block;
    margin-right: 10px;
}

#rodape {
    background: #f9f9f9;
    background-size: cover;
    color: #000;
    padding: 60px 0;
    text-transform: uppercase;
    font-size: 14px;
}

.rodape-logo {
    max-width: 240px;
    margin: 0 auto;
}

#rodape a { 
    color: #000; 
    text-decoration: none;
}

#rodape a:hover { color: #13364e; }

#rodape .rodape-social-item a {
    color: #d4a74a;
    font-size: 28px;
}

.rodape-conteudo {
    padding: 0 30px;
}


.rodape-infos h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0 10px;
}

.rodape-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid;
    margin-bottom: 15px;
}

.rodape-menu {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

#copyright a { color: #fff; }
div#copyright p { margin: 0; }
div#copyright {
    background: #1C222D;
    color: #FFF;
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
}

.rodape-dev { text-align: right; }
.rodape-privacidade { text-align: center; }



#link-wpp,
#link-top {
    position: fixed;
    bottom: 20px;
    right: 80px;
    color: #FFF;
    width: 50px;
    height: 50px;
    font-size: 26px;
    line-height: 52px;
    background: #449f14;
    text-align: center;
    border-radius: 100%;
    box-shadow: 0 0 25px -10px #000;
    z-index: 9;
    transition: .6s;
    opacity: 0;
}

#link-top {    
    right: 20px;    
    background: #1c212c;
    line-height: 50px;
    transition: .3s;
}

.scrolled #link-wpp,
.scrolled #link-top {
    opacity: 1;
}

#link-wpp:hover,
#link-top:hover {
    transform: scale(1.1);
}

#loading {
    /*position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: #fff url('img/loading.gif') no-repeat center;
    display: block;
    top: 0;
    left: 0;*/
    display: none;
}

/***********************************
 * CONTEUDO / CORPO DO SITE / CLASSES
***********************************/

.main {
    background: #fff;
    position: relative;
    padding: 100px 0 0;
}

.page-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.page-header {
    margin: 0;
    color: #FFF;
    border: 0;
    padding: 80px 0;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.page-header:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #000c;
    opacity: 0.5;
}

.page-header .container {
    z-index: 2;
}

.page-header .tagline {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em;
}


.page-header h1 {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    font-size: 40px;
    position: relative;
}

.page-header h1 small {
    font-size: 16px;
    display: block;
    text-transform: none;
    margin: 10px 0;
}

.page-content .page-title {
    margin: 0 0 50px;
    color: #000;
    text-align: center;
    position: relative;
}

.page-header .page-title {
    font-size: 22px;
    font-weight: lighter;
    margin: 30px 0;
}

.page-header .page-title strong {
    font-weight: normal;
    color: #666;
}

.page-content .page-title span { 
    position: relative; 
    display: inline-block;
}

.page-content .page-title span:before {
    content: "";
    width: 40px;
    height: 80px;
    bottom: -20px;
    left: -40px;
    background: url('img/bkg-zoom-esquerda.png') no-repeat center;
    background-size: contain;
    position: absolute;
}

.page-content .page-title span:after {
    content: "";
    width: 40px;
    height: 80px;
    bottom: -20px;
    right: -40px;
    background: url('img/bkg-zoom-direita.png') no-repeat center;
    background-size: contain;
    position: absolute;
}

.breadcrumbs a { color: #999; }
.breadcrumbs {
    font-size: 15px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.container.container-narrow {
    max-width: 920px;
}

.duas-colunas { column-count: 2; }

.alignleft {
  float: left;
  margin: 0 5px 5px 0;
}

.alignright  {
  float: right;
  margin: 0 0 5px 5px;
}

.texto-cinza { color: #777; }
.lead { font-size: 20px; font-weight: normal; }

.bordered {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.barra-cinza {
    background: #d8dade;
    padding: 50px;
    margin: 50px 0 -80px;
}

.main .nav-tabs {
    text-align: center;
    border: 0;
    margin-bottom: 30px;
}

.main .nav-tabs>li {
    float: none;
    display: inline-block;
}

.main .nav-tabs>li>a {
    border: 0;
    border-bottom: 2px solid #ddd;
    font-size: 20px;
    margin: 0 5px;
    min-width: 320px;
}

.main .nav-tabs>li.active>a,
.main .nav-tabs>li.active>a:focus,
.main .nav-tabs>li.active>a:hover {
    border: 0;
    border-bottom: 2px solid #9a4221;
}

.texto-destaque { font-size: 32px; }
.texto-destaque span { font-size: 70%; }

div#sidelinks a { color: #be502f; }
div#sidelinks {
    border-top: 1px solid #ddd;
    padding-top: 5px;
    font-size: 14px;
}


.post.post-item {
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 22px;
}

.post.post-item .post-title {
    font-size: 20px;
    margin: 15px 0;
}


.wp-pagenavi .pages { display: none; }
.wp-pagenavi { margin: 50px 0; }

.wp-pagenavi a, .wp-pagenavi span {
    border: 1px solid #ddd;
    color: #999;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 5px;
}

.wp-pagenavi span.current {
    background: #9d803f;
    border: 1px solid #9d803f;
    color: #FFF;
    padding: 6px 10px;
}

.flex-control-nav { display: none; }
.flex-direction-nav a { line-height: 40px; }


.categoria-imovel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    margin-right: 12px;
    font-size: 13px;
    line-height: 16px;
    position: relative;
    display: inline-block;
    width: calc(70% - 15px);
}

.categoria-imovel a {
    position: relative;
    z-index: 3;
}

.categoria-imovel:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a367233;
    box-shadow: inset 0 0 150px #000a;
    z-index: 1;
    transition: .4s ease;
}

.categoria-imovel:hover:before {
    background-color: #0a3672ad;
    box-shadow: none;
}

.categoria-imovel:nth-child(1), 
.categoria-imovel:nth-child(4),
.categoria-imovel:nth-child(5), 
.categoria-imovel:nth-child(8),
.categoria-imovel:nth-child(9), 
.categoria-imovel:nth-child(12),
.categoria-imovel:nth-child(13), 
.categoria-imovel:nth-child(16),
.categoria-imovel:nth-child(17) {
    width: calc(30% - 15px);
}

.categoria-imovel-info { 
    position: relative;
    height: 250px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.categoria-imovel h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
}

/***********************************
 * PÁGINAS
***********************************/

/*buscador*/
#busca-toggle a {
    width: 100%;
    padding: 10px;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    background: #000;
    display: block;
    border-radius: 10px;
}

.form-busca-imoveis {
    background: #d4a74a;
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    color: #13364e;    
    position: relative;
    z-index: 2;
}

.bsslider-value {
    font-size: 14px;
    margin: 0 0 5px;
    display: inline-block;
}

.form-busca-imoveis .limpar-busca {
    float: right;
    padding: 10px 0;
}

.form-busca-imoveis label {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}
.form-busca-imoveis .form-control {
    background: #FFF;
    color: #000;
    min-height: 32px;
    font-size: 14px;
}

.form-busca-imoveis .submit-busca .btn { background: #1c4077; }
.form-busca-imoveis .submit-busca .btn:hover { background: #141a3a; }

#busca-collapse .btn:hover {
    background: #FFF;
    color: #13364e;
}
#busca-collapse .btn {
    border: 1px solid #fff;
}


/*home*/

section#home-topo {
    padding: 100px 0;    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
    position: relative;
}

section#home-topo:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0003;
    box-shadow: inset 0 0 350px #000c;
}

.home-categoria-imovel {
    height: 400px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
}

.home-categoria-imovel h3 {
    z-index: 2;
    text-align: left;
}

.home-categoria-imovel:hover h3 {
    color: #FFF;
}

.home-categoria-imovel:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #0006;
    top: 0;
    left: 0;
    z-index: 1;
}

section#home-destaques {
    background-color: #f3f3f3;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin-top: 70px;
    padding: 15px 0 50px;
    position: relative;
}

#home-destaques .tagged { color: #FFF; }

section#home-destaques:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #000c;
    opacity: 0.5;
}

.home-btn-cta {
    font-size: 15px;
}

#home-categorias h2.tagged,
#home-destaques h2.tagged {
    margin: 0;
}
#home-categorias .tagged small {
    color: #000;
    margin: 0;
}

#home-destaques .tagged small {
    color: #fff;
    margin: 0;
}

/*sobre*/


.bloco-sobre {
    background: #ccc url(img/bg-alt.jpg?ver=1) no-repeat center / cover;
    background-attachment: fixed;
    color: #FFF;
    padding: 5px 0 50px;
    margin-top: 150px;
    position: relative;
}

.bloco-sobre .container {
    z-index: 2;
    position: relative;
}

.bloco-sobre:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #000c;
    opacity: 0.5;
}

.bloco-sobre .arte-sobre {
    margin-top: -80px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 25px -5px #0003;
}

.cta-sobre .tagged {
    text-align: left;
    text-transform: uppercase;
    margin: 0 0 40px;
}

.tagged small {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #FFF;
    letter-spacing: 1px;
}

#sobre .missao-visao {
    background: url('img/bg-missao-visao.jpg') no-repeat center / cover;
    padding: 50px 0;
    color: #fff;
}

#sobre .sobre-diferenciais {
    padding: 50px 0;
}

#sobre .sobre-diferencial-item {
    padding: 25px 0;
}

.sobre-diferencial-conteudo h3 {
    color: #000;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.2em;
}

#sobre .sobre-diferencial-arte {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

#sobre .sobre-depoimentos {
    padding: 50px 0;
    background: #D3D1D1;
}

@media (min-width: 991px) {
    #sobre .sobre-diferencial-item .row.sobre-diferencial-even .tagged:after {
        left: unset;
        right: 0;
    }
    #sobre .sobre-diferencial-item .row.sobre-diferencial-even {
        flex-flow: row-reverse;
        text-align: right;
    }
}

.sobre-depoimentos-item {
    background: #FFF url('img/quote.png') no-repeat 15px 15px;
    background-size: 30px;
    padding: 45px 15px 15px;
    border-radius: 15px;
    margin: 15px;
    font-size: 15px;
    line-height: 1.3;
}

.sobre-depoimento-autor h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 15px 0 0;
}

/*imoveis*/

#imoveis .page-header {
    margin: 0 0 30px;
}

.termos-buscados ul {
    padding: 0;
    list-style: none;
    color: #FFF;
}

.termos-buscados ul li.termo {
    display: inline;
    margin-right: 15px;
}

.termos-buscados ul li.termo a {
    color: #000;
    font-size: 13px;
}

.termos-buscados ul li.termo a span {
    color: #666;
    font-size: 10px;
}

.header-imoveis p.lead {
    color: #666;
    font-size: 26px;
}

#imoveis .imoveis {
    margin: 25px 0;
}

.nenhum-imovel-encontrado {
    text-align: center;
    margin: 80px 0;
}

/* imovel item */

.imoveis .imovel {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    color: #000;
    border-radius: 15px;
    background: var(--Branco, #FFF);
    padding: 0;
    height: calc(100% - 30px);
    border: 1px solid #ddd;
}

.imovel-item.imovel-item-vendido:after {
    content: "Vendido";
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 10px;
    background: #d4aa5c;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
    font-weight: bold;
    border-top-right-radius: 15px;
}

.imovel-item-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0;
    gap: 5px;
}

.imovel-item-destaque {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.2px;
    background: #d4a74a;
    padding: 0 5px;
    border-radius: 5px;
    color: #FFF;
}

.imovel-item-codigo {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.2px;
    background: #ccc;
    padding: 0 5px;
    border-radius: 5px;
    color: #444;
}


.imovel-item-slider-foto { position: relative; }
/* .imovel-item-slider-foto:after {
    content: "";
    width: 150px;
    height: 80px;
    background: transparent url('img/logo-aline-eduardo-bittencourt-imoveis.png') no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -75px;
    opacity: 0.5;
    z-index: 99;
} */

.imovel-item-slider-foto img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.imoveis .imovel .imovel-item-thumb.sem-marca:after { display: none; }
/* .imoveis .imovel .imovel-item-thumb:after {
    content: "";
    width: 140px;
    height: 70px;
    position: absolute;
    background: url('img/logo-aline-eduardo-bittencourt-imoveis.png') no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    margin-left: -69px;
    margin-top: -40px;
    opacity: 0.3;
} */

.imovel-item-feature {
    border: 1px solid #eee;
    width: 70px;
    padding: 5px;
    border-radius: 5px;
    line-height: 1.3;
}

.imovel-item-feature img {
    max-width: 15px;
    max-height: 15px;
}

.imovel-item-conteudo {
    color: #000;
    text-align: left;
    padding: 5px 20px;
}

.imoveis .imovel .imovel-item-titulo {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.2px;
    height: 75px;
    margin: 0;
}

.imovel-item .imovel-item-localizacao {
    font-size: 14px;
    color: #000;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.2px;
}

.imovel-item-features {
    font-size: 10px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
}
.imovel-item-feature-ico {
    height: 25px;
}

.imovel-item-feature-valor {
    font-size: 14px;
    color: #13364e;
    font-weight: bold;
    display: block;
    width: 100%;
}

.imovel-item-valor h5 {
    color: var(--Destaque-2, #13364e);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.imovel-item-valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.imovel-item-valor.imovel-item-valor-consulta {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.imovel-item-valor-final {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.imovel-item-valor-antigo {
    color: var(--Cinza, #D3D1D1);
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration-line: line-through;
}


/* 
.imoveis .imovel .imovel-item-info {    
    border: 1px solid #ddd;
    border-bottom: 0;
    border-top: 0;
    padding-top: 5px;
}

.imoveis .imovel span.imovel-item-bairro {
    font-size: 12px;
    color: #000;
    margin-top: 5px;
    display: inline-block;
} */
/* 
.imoveis .imovel .imovel-item-codigo {
    display: inline-block;
    background: #ff2538;
    padding: 0px 9px;
    border-radius: 0;
    font-size: 11px;
    color: #FFF;
    position: absolute;
    right: 0;
    top: 0;
}

.imoveis .imovel .imovel-item-preco {
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
}

.imoveis .imovel ul.imovel-item-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid #0003;
    padding-top: 5px;
    text-align: center;
    border-bottom: 1px solid #0003;
    padding-bottom: 5px;
    margin-bottom: 0;
    min-height: 41px;
}

.imoveis .imovel ul.imovel-item-features li img { 
    max-width: 20px; 
    max-height: 18px;
}

.imoveis .imovel ul.imovel-item-features li {
    width: 22%;
    display: inline-block;
    font-size: 12px;
    margin-right: 0;
    color: #000;
    letter-spacing: -.5px;
} */

#sidebar-toggle { display: none; }

div#sidebar-busca {
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 100px;
}

#sidebar-busca a.limpar-busca {
    font-size: 10px;
    color: #b72d29;
    line-height: 26px;
    vertical-align: text-top;
}

#sidebar-busca h3 {
    color: #b72d29;
    font-size: 20px;
    font-weight: bold;
}

#sidebar-busca .form-control {
    border-color: #ddd;
}

#sidebar-busca .form-group {
    margin: 0 -20px;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

#sidebar-busca label {
    font-weight: normal;
    color: #999;
}

#sidebar-busca p.bsslider-value {
    font-size: 11px;
    color: #999;
}

.page-header div#container-busca {
    margin-top: 50px;
}

#container-buscador .bsslider-value {
    font-size: 13px;
    margin: 0;
}

#sidebar-busca p.bsslider-value .label-desc-min, 
#sidebar-busca p.bsslider-value .label-desc-max {
    color: #666;
}

#sidebar-busca .slider-selection { background: #b72d29; }
#sidebar-busca .slider-handle {
    background-color: #9c0f0b;
    background-image: none;
}

#sidebar-busca .grupo-detalhes { padding: 20px 0; }
#sidebar-busca .grupo-detalhes .row { margin: 0 -5px; }
#sidebar-busca .grupo-detalhes .form-group .form-control {
    font-size: 12px;
    padding: 0 2px;
}

#sidebar-busca .grupo-detalhes .form-group {
    margin: 5px -10px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 12px;
    line-height: 14px;
    padding: 5px;
}

#sidebar-busca .slider-metragem {
    margin: 20px -20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

#sidebar-busca .submit-busca { text-align: center; }

#ordenacao label {
    font-weight: normal;
    margin-top: 3px;
}

#ordenacao {
    float: right;
    color: #000;
    font-size: 14px;
}

#ordenacao option { color: #000; }

#sidebar-buscas section#buscas { padding: 50px 0; }

#sidebar-buscas h2 {
    margin: 0 0 20px;
    text-transform: uppercase;
    font-size: 28px;
    text-align: center;
}


/*detalhe do imovel*/
.single-imovel .main { background: #FFF; color: #000; }

.imovel-galeria-fotos {
    margin-bottom: 50px;
}

.imovel-galeria-slider-foto { 
    margin-right: 5px;
    position: relative; 
}

/* .imovel-galeria-slider-foto:after,
.tos-image:after {
    content: "";
    width: 150px;
    height: 80px;
    background: transparent url('img/logo-aline-eduardo-bittencourt-imoveis.png') no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -75px;
    opacity: 0.5;
    z-index: 99;
} */

.imovel-galeria-slider-foto img {
    height: 450px;
    object-fit: cover;
}

.imovel-badge.imovel-badge-vendido {
    padding: 3px 10px;
    background: #d4aa5c;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
    font-weight: bold;
    display: inline-flex;
    margin-bottom: 10px;
}

.imovel-localizacao {
    color: var(--Destaque-2, #13364e);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.imovel-titulo {
    color: var(--destaque-1-principal, #000);
    font-size: 32px;
    text-align: left;
    line-height: 1.2;
    margin-top: 10px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.imovel-bloco-info {    
    margin: 30px 0;
}

.imovel-principal .imovel-features {
    display: flex;
    flex-wrap: wrap;
    color: #000;
    gap: 10px;
    font-size: 11px;
}

.imovel-principal .imovel-item-feature {
    display: flex;
    flex-wrap: wrap;
    max-width: 140px;
}

.imovel-principal .imovel-item-feature-legenda {
    width: 100%;
}

.imovel-principal .imovel-item-feature-ico {
    margin-right: 5px;
}

.imovel-descricao {
    color: #000;
    font-size: 16px;
    line-height: 1.3;
}

.imovel-descricao h2 {
    font-size: 24px;
    text-align: left;
    font-weight: 600;
}

.imovel-atributos {
    border-radius: 15px;
    border: 1px solid #ddd;
    margin: 30px 0;
    padding: 10px 10px 5px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}

.imovel-atributos > div {
    width: 50%;
    min-width: 250px;
}

.imovel-atributos h3 {
    color: var(--cor-1-principal, #a78242);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2px;
}

.imovel-atributos ul {
    list-style: none;
    padding: 0;
    font-size: 1em;
    line-height: 1.5;
}

.imovel-video {
    margin: 20px 0 30px;
}

.imovel-secundario {
    text-align: left;
    display: flex;
    flex-flow: column;
    border-radius: 15px;
    border: 1px solid #ddd;
    margin-bottom: 50px;
    padding: 20px;
}

.imovel-secundario .imovel-item-valores {
    border-bottom: 3px solid #13364e;
    margin: 30px 0;
}

.imovel-secundario .imovel-item-valor {
    border-top: 3px solid #13364e;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0 20px;
}

.imovel-form .srfm-form-container .srfm-form {
    gap: 0;
    margin-bottom: 20px;
}

.imovel-form hr {
    border-top: 3px solid #13364e;
    max-width: 60px;
    margin: 0 0 20px;
}


div#imovel-relacionados {
    background: #464646;
    padding: 50px 0;
    margin-top: 50px;
}


div#modal-video {
    background: #fffe;
    padding-top: 50px;
}


div#modal-video .modal-content {
    background: none;
    border: 0;
}

/*contato*/

.contact-item > div:first-child {
    min-width: 60px;
    display: flex;
    justify-content: center;
}

.contact-item {
    display: flex;
    margin-bottom: 16px;
}

.contact-item i {
    font-size: 35px;
    display: block;
    margin-top: 6px;
}
.contact-item strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 13px;
}

.contato-formulario {
    background: #FFF;
    padding: 20px 25px 20px;
    margin: 30px;
}

.contato-formulario a {
    color: #000;
    text-decoration: underline;
}

/***********************************
 * MEDIA QUERIES
***********************************/

@media( max-width: 1200px ) {
    #main-menu { margin-right: -30px; }
    .scrolled #header #busca, .scrolled a#btn-contato, .scrolled #header .social {
        margin-top: 20px;
    }

    #header #busca { margin-left: -20px; }
    
    .home #historia .texto-historia { max-width: 55%; }

    section#contato { background-position: center bottom; }
    .slider.slider-horizontal { max-width: 100%; }

    .imoveis .imovel h1 { height: 65px; }
    .imoveis .imovel ul.imovel-item-features li { letter-spacing: -2px; }

    #imovel .imovel-features img {
        max-width: 40px;
        max-height: 27px;
    }

    div#form-anuncie { margin: 20px 20px -30px; }
    #anuncie-vantagens .media-body {
        height: 200px;
        overflow: hidden;
    }
}

@media( max-width: 1199px ) {
    #imovel .imovel-valor {
        font-size: 14px;
        line-height: 18px;
    }

    #imovel ul.imovel-features li {
        max-width: 44%;
    }
}

@media( max-width: 991px ) {
    .navbar-header {
        float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.show{
        display:block !important;
    }

    h2 { font-size: 28px; }
    h3 { font-size: 20px; }

    .main {
        padding-top: 65px;
    }

    #sidebar-toggle { display: block; }
    #sidebar-toggle a {
        display: block;
        margin: 0 0 15px;
        padding: 10px;
        text-align: center;
        background: #F0f0f0;
    }

    #main-menu {
        margin-right: -30px;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: right;
    }

    #main-menu .navbar-toggler {
        text-align: right;
        display: block;
        width: 100%;
    }

    #home-categorias .categoria-imovel {
        width: calc(50% - 15px);
    }

    div#imovel-resumo {
        border-top: 1px solid #ddd;
        padding-top: 40px;
        margin-top: 20px;
    }
}

@media( max-width: 1024px ) {
    .page-header h1 { font-size: 28px; }
}

@media( max-width: 990px ) {
    div#copyright, #sitetitle, div#dev {
        text-align: center;
        float: none;
    }
    

    .imovel-galeria-slider-foto {
        margin: 0 !important;
    }
    .imovel-galeria-slider-foto img {
        height: 280px;
    }

    .sobre-diferencial-arte {
        background: none;
        min-height: 0;
    }

    .rodape-conteudo {
        padding: 30px 0;
        text-align: center;
    }

    .bloco-sobre .arte-sobre {
        margin-bottom: 20px;
    }
}

@media( max-width: 768px ) {

    #footer { text-align: center; }

    div#header-logo { margin-top: 26px; }

    #main-menu { margin: 20px 0; }
    #main-menu .menu-item {
        float: none;
        margin-bottom: 2px;
    }    
    #main-menu .menu-item a {
        padding: 0;
        margin: 0;
    }

    
    .home section.main {
        max-width: 100%;
        overflow: hidden;
    }   


    section#buscas { padding: 50px 0 0; }
    
    #imovel-galeria .foto-holder {
        height: 120px;
    }

    #imovel #form-interesse {
        margin: 50px 0;
    }

    #ordenacao {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }

    #ordenacao .form-group { display: inline-block; }
    #imovel ul.imovel-features li {
        font-size: 13px;
        text-align: center;
        margin: 0;
    }

    #imovel .imovel-features img {
        display: block;
        margin: 0 auto;
    }
}

@media( max-width: 767px ) {    
    .admin-bar #header { top: 47px; }
    .admin-bar.scrolled #header { top: 0; }

    div#header-logo {
        margin: 0;
        float: left;
        max-width: 150px;
        position: relative;
        z-index: 3;
    }

    .scrolled #header #header-logo {
        margin-top: 0;
        max-width: 100px;
    }

    .scrolled #main-menu button.navbar-toggler { margin-top: -12px; }
    #main-menu button.navbar-toggler { color: #17384f; }

    #main-menu {
        margin: -50px 0 0px 0;
    }
    
    .scrolled #header #main-menu {
        margin-top: -50px;
    }

    .slider-metragem {
        margin-bottom: 20px;
    }
   
    #home-categorias .categoria-imovel {
        width: 100%;
    }

    .home-btn-cta {
        display: block;
        margin: 20px 0 0;
    }

    .opcoes-financiamentos {
        text-align: left;
    }
    .simulador {
        max-width: calc(50% - 15px);
        margin-bottom: 15px;
        text-align: left;
    }

    #imovel-galeria .foto-imovel {
        height: 240px;
    }
 }