body {
	background-color: #fff;
}

a:link { 
	text-decoration:none; 
}

.alinhamento {
  text-align: center;
}

.marginb {
	margin-bottom: 15px;
}

.marginbo {
	margin-bottom: 50px;
}

.margint {
	margin-top: 15px;
}

.marginto {
	margin-top: 60px;
}

.foto {
	width: 100%;
}

.spc {
	margin: 0;
	padding: 0;
}

.left {
	text-align: left;
}
.right {
	text-align: right;
}

.hr {
	height: 30px;
	border-bottom:dashed 1px #222;
}

.espaconteudo {
	margin-top: 80px;
	margin-bottom: 50px;
}

.icone {
	color: #0072b3; /*Alterar cor dos icones */
	font-size: 15pt;
	padding-left: 10px;
	padding-right: 5px;
}

/* topo */

.fundocontato {
	margin: 0;
	padding: 5px 10px;
	background-color: #222;
	color: #fff;
	font-size: 12pt;
	font-family: Century Gothic;
}

.topo {
	padding: 15px;
}

.logo {
	background-color: #fff;
	width: 55%;
}
.logoM {
	background-color: #fff;
	width: 100%;
}

/* Rodape */

.rodape { 
	padding: 40px 10px;
	background-color: #0072b3;/* Mudar cor de fundo do RODAPE */
	color: #fff;/* Mudar cor da letra do RODAPE */
	font-family: Century Gothic;
}
.rodape a {	
	color: #fff;
	font-family: Century Gothic;
}
.rodape a:hover {
	font-weight: bold;
}

.linha {
	border-right: 1px solid #FFFFFF38;
}

.logorodape {
	width: 50%;
}

.footer { 
	background-color: #222;/* Mudar cor do RODAPE - EMPRESA */
	color: #fff; /* Mudar cor da letra RODAPE - EMPRESA */
	font-family: Century Gothic;
}
.footer a {
	color: #fff;
	font-family: Century Gothic;

}

/* pesquisa */

.pesquisa {
	padding: 15px;
	background-color: #222; /* cor do fundo */
	border-top: 1px solid #fff;
}
.marginp {
	margin-bottom: 5px;
}

.botaopes { 
	border: none;
	font-weight: bold;
	background: linear-gradient(#FFF, #ccc); /* Alterar cor do Botao Pesquisa */
	padding: 10px 10px 6px 12px;
	border-radius: 5px;
	color: #222; /* Alterar cor da letra do Botao Pesquisa */
	font-size: 15px;
}
.botaopes:hover {
	background: linear-gradient(#FFF, #ccc); /* Alterar cor do Botao Pesquisa ativo */
	color: #555; /* Alterar cor da letra do Botao Pesquisa ativo */
}

/*conteudo index*/

.titulos {
	color: #0072b3; /* Alterar cor da letra dos titulos */
	font-family: Impact;
	letter-spacing: 2px;
	font-size: 35px;
}
.titulosM{
	color: #0072b3; /* Alterar cor da letra dos titulos mobile */
	font-family: Impact;
	font-size: 26px;
}


.destaqueindex{
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden; /* Importante: evita vazamentos do blur */
}

/* Fundo desfocado */
.destaqueindex::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1); /* evita bordas brancas do blur */
}

/* Imagem original por cima */
.destaqueindex::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: contain; /* mantém a foto inteira */
    background-repeat: no-repeat;
    background-position: center;
}


.lancamentoindex{
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden; /* Importante: evita vazamentos do blur */
}

/* Fundo desfocado */
.lancamentoindex::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1); /* evita bordas brancas do blur */
}

/* Imagem original por cima */
.lancamentoindex::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: contain; /* mantém a foto inteira */
    background-repeat: no-repeat;
    background-position: center;
}

/* Telas extra pequenas (XS) - até 575px */
@media (max-width: 575px) {
  .destaqueindex{
    height: 250px;
  }
  .lancamentoindex {
    height: 250px;
  }
}


.valorV {
	color: #0072b3; /* Alterar cor dos Valor de Venda */
	font-family: Century Gothic;
    white-space: nowrap;       /* Impede a quebra de linha */
    overflow: hidden;          /* Oculta o texto que não cabe */
    text-overflow: ellipsis;   /* Adiciona "..." no final do texto que não cabe */
    max-width: 100%;  
}

.valorL {
	color: #555; /* Alterar cor dos Valores em Locacao */
	font-family: Century Gothic;
    white-space: nowrap;       /* Impede a quebra de linha */
    overflow: hidden;          /* Oculta o texto que não cabe */
    text-overflow: ellipsis;   /* Adiciona "..." no final do texto que não cabe */
    max-width: 100%;  
}

.fundodestaque {
	margin-top: 40px;
	margin-bottom: 30px;
}
.destaque {
	margin: 0;
	padding: 10px;
	margin-bottom: 50px;
}
.destaque1 {
	padding: 0;
	color: #333;
	font-family: Century Gothic;
	border: 1px solid #ccc;
	background-color: #EFEFEFFF;
	text-transform: uppercase;
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 10px;
}
.destaque1:hover {
	color: #222;
	background-color: #fff;
	border: 1px solid #0072b3;
	-moz-transform: scale(1.01);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}
.desc-pad{
	padding: 5px;
}
.desc-pad h5{
    white-space: nowrap;       /* Impede a quebra de linha */
    overflow: hidden;          /* Oculta o texto que não cabe */
    text-overflow: ellipsis;   /* Adiciona "..." no final do texto que não cabe */
}

.carro {
	margin: 0;
	padding: 0;
	padding-left: 5px;
	font-size: 12px;
}
.quartos {
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.banheiro {
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.area {
	margin: 0;
	padding: 0;
	padding-right: 5px;
	font-size: 12px;
}

.meio {
	text-align: center;
	color: #fff;
	padding: 20px 0;
	background-color: #222;
}
.meio a {
	color: #fff;
	text-align: center;
	font-size: 30pt;
}
.meio a:hover {
	color: #0072b3;
}
.meiomobile {
	color: #fff;
	text-align: center;
	font-size: 20pt;
	padding: 20px 0;
	background-color: #222;
}
.meiomobile a {
	color: #fff;
	text-align: center;
	font-size: 20pt;
}
.meiomobile a:hover {
	color: #0072b3;
}
.text-meio {
	margin-right: 42%;
	margin-left: 42%;
	padding-bottom: 3px;
	color: #fff;
	font-family: Century Gothic;
	border-bottom: 3px solid #fff;
}
.text-meio-mobile {
	margin-right: 30%;
	margin-left: 30%;
	padding-bottom: 3px;
	color: #fff;
	font-family: Century Gothic;
	border-bottom: 3px solid #fff;
}

/*TIPO*/

.tipo {
	margin-left: 5%;
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	background-color: #EFEFEFFF;
	text-transform: uppercase;
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.tipo:hover {
	background-color: #fff;
	border: 1px solid #0072b3;
	-moz-transform: scale(1.01);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}

/*LISTA*/

.fundolista {
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	background-color: #EFEFEFFF;
	text-transform: uppercase;
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.fundolista:hover {
	background-color: #fff;
	border: 1px solid #0072b3;
	-moz-transform: scale(1.01);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}


.tit-list {
	color: #444;
	font-weight: bold;
	font-family: Century Gothic;
	font-size: 22px;
	letter-spacing: -0.1px;
    white-space: nowrap;       /* Impede a quebra de linha */
    overflow: hidden;          /* Oculta o texto que não cabe */
    text-overflow: ellipsis;   /* Adiciona "..." no final do texto que não cabe */
    max-width: 100%;  
  text-transform: uppercase;
}
.desc-list {
	color: #444;
	font-family: Century Gothic;
	font-size: 18px;
    white-space: nowrap;       /* Impede a quebra de linha */
    overflow: hidden;          /* Oculta o texto que não cabe */
    text-overflow: ellipsis;   /* Adiciona "..." no final do texto que não cabe */
    max-width: 100%;  
}

/*IMOVEL*/

.descimo {
	color: #555;
	font-family: Century Gothic;
	text-align: justify;	
}

.fotogera{
    width: 100%;
    height: 130px;
    position: relative;
    overflow: hidden; /* Importante: evita vazamentos do blur */
}

/* Fundo desfocado */
.fotogera::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1); /* evita bordas brancas do blur */
}

/* Imagem original por cima */
.fotogera::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: contain; /* mantém a foto inteira */
    background-repeat: no-repeat;
    background-position: center;
}

.simulacao {
	width: 98%;
	margin: 8px 1% 20px;
	padding: 5px 15px;
	border: 1px solid #0072b3;
	font-size: 13pt;
	text-align: center;
	color: #333;
}
.simulacao h3 a {
	margin: 0 15px;
}

.botaoimovel {
	width: 100%;
	border: none;
	background: linear-gradient(#fff, #ccc); /* Alterar cor do botão da página imóveis*/
	border: 1px solid #ccc;
	padding: 5px 8px 5px 8px;
	border-radius: 5px;
	color: #222; /* Alterar cor da letra do botão da página imóveis*/
	font-weight: bold;
	font-size: 25px;
	font-family: Century Gothic;
	box-shadow: 2px 3px 3px #fff;
}

.eit {
	color: #0072b3; /* Alterar cor do - este imóvel tem */
	font-family: Century Gothic;
	font-weight: 800;
}


.corretor {
	/*border: 1px solid #E0E0E0FF;*/
	border-radius: 5px;
	box-shadow: 3px 3px 5px #ccc;
	/*color: #333;*/
}
.corretor-t {
	padding: 10px 20px;
	color: #555;
	font-family: Century Gothic;
}
.corretor:hover {
	background-color: #F2F2F2FF;
	-moz-transform: scale(1.01);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
	cursor: pointer;
}
.corretorfoto img {
	width: 170px;
	height: 170px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #ccc;
	box-shadow: -2px 2px 3px #ccc;
}

/*PROPOSTA*/
.obg {
	color: #F00E0EFF;
}
.space {
	margin-left: 15px;
}

.semEsp1 {
	border: 0;
	padding: 0 5px 0 0;
}

.semEsp2 {
	border: 0;
	padding: 0 0 0 5px;
}

/* Cores */

.black {
	color: #000;
	font-family: Century Gothic;
}

.blue {
	color: #0071fc;
	font-family: Century Gothic;
}
}
.red {
	color: #F00E0EFF;
	font-family: Century Gothic;
}
.red2 {
	color: #F00E0EFF;
	font-family: Century Gothic;
	text-shadow: 2px 2px 3px #999;
}

.grey {
	color: #222;
	font-family: Century Gothic;
}

.grey2 {
	color: #999;
	font-family: Century Gothic;
}
.grey3 {
	color: #555;
	font-family: Century Gothic;
}

.white {
	color: #fff;
	font-family: Century Gothic;
}


/*TOUR360*/
.tour360{
	padding: 20px 20px 10px;
/*	background: linear-gradient(#52658c, #435373FF); */
	background-image: url("../ImagensSite/tour360.jpg"); /* Alterar cor */
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	box-shadow: 2px 2px 3px #435373FF;
	border-radius: 8px;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.tour360:hover{
	-moz-transform: scale(1.01);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}
.tour360 div p{
	color: #435373FF;
	font-size: 26px;
	text-transform: uppercase;
	font-family: Century Gothic;
}
.tour360 div p span{
	font-size: 22px;
}

.tour360-mobile{
	width: 94%;
	margin: 3%;
	padding: 20px 20px 10px;
/*	background: linear-gradient(#52658c, #435373FF); */
	background-image: url("../ImagensSite/tour360-mobile.jpg"); /* Alterar cor */
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	box-shadow: 2px 2px 3px #435373FF;
	border-radius: 8px;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.tour360-mobile:hover{
	-moz-transform: scale(1.01);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}
.tour360-mobile div p{
	color: #435373FF;
	font-size: 15px;
	text-transform: uppercase;
	font-family: Century Gothic;
}
.tour360-mobile div p span{
	font-size: 10px;
}