.grecaptcha-badge {
	display: none;
}

thtml, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overflow: auto;
	font-family: Outfit, sans-serif;
	background: #f2f0ed;
}
html{
	width: 100%;
	overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a{
    text-decoration: none;
}

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

.text-center{
    text-align: center;
}

/* GERAL */
.container {
	max-width: 1210px;
	padding: 0 20px;
}

select:focus,
select:focus-visible {
	border: none;
	outline: none;
}



::selection {
	background-color: #C4401C;
	color: #fff;
}

button {
	border: none;
}

.botao {
width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    padding: 16px 20px;
    border: 1px solid rgb(255, 255, 255);
    background: transparent;
color: var(--brand-black, #211915);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 19.6px */
	transition: all .5s;
}

.botao:hover {
	background: #C4401C;
	color: #fff;
	border-color: #C4401C;
}

.botao-nav {
	width: fit-content;
    display: flex;
	cursor: pointer;
    align-items: center;
    justify-content: center;
	border-radius: 100px;
	border: 1px solid transparent;
	transition: all .5s;
	background: #fff;
	width: 56px;
height: 56px;
}

.botao-nav:hover {
	background: #C4401C;
}

.botao-nav:hover path {
	fill: #fff;
}

svg,
svg path,
svg path stroke {
	transition: all .5s;
}

.primeira-parte-titulo {
  font-weight: 300;
}

.restante-titulo {
  font-weight: 700;
}

.show-mob {
	display: none;
}

.linha-brand {
	display: flex;
	gap: 10px;
	align-items: end;
	width: 100%;
}

.linha-brand .line {
height: 2px;
background: rgba(67, 66, 71, 0.10);
width: calc(50% - 29px);
}

@media (max-width: 991px) {
	.show-desk {
		display: none !important;
	}

	.show-mob {
		display: block;
	}
}

header {
background-color: transparent;
    position: fixed;
	top: 0;
    padding: 16px 15px 0 15px;
    width: 100%;
    transition: .5s;
    z-index: 50;
}	

header .container {
	background: rgba(0, 0, 0, 0.70);
backdrop-filter: blur(10px);
padding: 12px 17px;
}


header.header-menor {
	padding-top: 10px;
}

header.header-menor .container {
	padding: 10px 17px;
}

header .wrapper-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 28px;
	margin-right: 18px;
    transition: all .5s;
	opacity: 0;
}

header .wrapper-menu.active {
opacity: 1;
}

header .wrapper-header{
	    display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

header .wrapper-header .conteudo {
	    width: 80%;
		display: flex;
    align-items: center;
    justify-content: end;
	gap: 0;
}

header .wrapper-header ul {
	display: flex;
    align-items: center;
    gap: 29px;
}

header .wrapper-header ul li {
    transition: .5s;
}

header .wrapper-header ul li.menucontato {
	position: relative;
	height: 25px;
	    padding-right: 15px;
    top: 4px;
}

header .wrapper-header ul li.menucontato::after {
    content: '';
    display: block;
    position: absolute;
    right: 2px;
    top: 42%;
    width: 10px;
    height: 5px;
    transform: translateY(-50%);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='5' viewBox='0 0 7 5' fill='none'%3E%3Cpath d='M3.46986 4.27949L0 0.809633L0.809633 0L3.46986 2.66022L6.13008 0L6.93971 0.809633L3.46986 4.27949Z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

header .wrapper-header ul li.menucontato ul {
    position: absolute;
    flex-direction: column;
    top: 0px;
    gap: 15px;
    justify-content: start;
	pointer-events: none;
	visibility: hidden;
	transition: all .5s;
	opacity: 0;
	background: var(--brand-black, #211915);
    padding: 30px;
}

header .wrapper-header ul li.menucontato:hover ul {
	pointer-events: initial;
	visibility: visible;
	opacity: 1;
	top: 25px;
}

header .wrapper-header ul li.menucontato a::before {
	opacity: 0;
}

header .wrapper-header ul li.menucontato li a {
	display: block;
	text-align: start;
	transition: all .5s;
}

header .wrapper-header ul li.menucontato li a:hover {
	transform: scale(1.05);
}



header .wrapper-header ul li.menucontato ul li {
	width: 100%;
    display: block;
}

header .wrapper-menu a::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
bottom: -7px;
	height: 2px;
	width: 0%;
	background-color: #C4401C;
	transition: .5s;
}

header .wrapper-menu a:hover::before {
	width: 100%;
}

header .wrapper-header ul li a {
color: #F7F6F5;
text-align: center;
font-family: Outfit;
font-size: 13.879px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 2.082px;
	position: relative;
	white-space: nowrap;
}

header .wrapper-header ul li.current-menu-item a::before {
	width: 100%;
}

header .botoes {
	display: flex;
	align-items: center;
	    justify-content: end;
}

header .botoes .item {
	border-radius: 0px;
	display: flex;
	width: 36px;
	height: 36px;
	justify-content: center;
	align-items: center;
	border: 1px solid transparent;
	transition: all .5s;
	cursor: pointer;
}

header .botoes .item:hover {
	background: #C4401C;
}

header .btn-empreendimentos {
position: relative;
}

header .btn-empreendimentos a {
color: #F7F6F5;
text-align: center;
font-family: Outfit;
font-size: 13.879px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 2.082px;
	display: flex;
    align-items: center;
	position: relative;
    z-index: 3;
	gap: 7px;
}

header .btn-empreendimentos a > svg {
	position: relative;
    top: 2px;
}

header .btn-empreendimentos .aba-empreendimentos {
border-radius: 16px;
background: rgba(247, 245, 242, 0.85);
backdrop-filter: blur(5px);
background: #F7F5F2;
    padding: 32px 42px 32px 32px;
    width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: center;
}

header .btn-empreendimentos .aba-empreendimentos a::before {
	display: none;
}

header .btn-empreendimentos .padding {
  position: fixed;
  width: 100%;
  left: 0;
  padding-top: 40px;
  cursor: pointer;
  display: none;
}

header .btn-empreendimentos .aba-empreendimentos .grid-slide {
	gap: 16px;
	width: stretch;
}

header .btn-empreendimentos .aba-empreendimentos a {
display: block;
transition: all .5s;
    height: 340px;
}

header .btn-empreendimentos .aba-empreendimentos a .logo {
    max-width: 140px;
    max-height: 90px;
    height: auto;
    width: auto;
    position: absolute;
    left: 18px;
    top: 45px;
    z-index: 3;
    object-fit: contain;
	transform: none !important;
}

header .btn-empreendimentos .card-imovel .wrapper-img-card-imovel {
	height: 100% !important;
}

header .btn-empreendimentos .card-imovel .estagio {
	color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 5px;
text-transform: uppercase;
top: 18px;
    left: 18px;
}

header .btn-empreendimentos .card-imovel .destaques {
	bottom: 18px;
	opacity: 1;
	left: 18px;
}

header .btn-empreendimentos .card-imovel .destaques .item-destaque p {
color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 1.8px;
}

header .btn-empreendimentos .card-imovel .wrapper-img-card-imovel::before {
	    background: linear-gradient(180deg, rgb(0 0 0 / 1%) 60%, rgba(0, 0, 0, 0.50) 100%), rgb(0 0 0 / 36%);
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

header .btn-empreendimentos .card-imovel .destaques .item-destaque {
    margin-bottom: 4px;
}

header .btn-empreendimentos .aba-empreendimentos ul {
	flex-direction: column;
	gap: 10px;
	align-items: start;
}

header .btn-empreendimentos .aba-empreendimentos li {
	
}

header .btn-empreendimentos .aba-empreendimentos li a {
	    height: auto;
		color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 21px;
font-style: normal;
font-weight: 300;
letter-spacing: normal;
line-height: normal;
}

header .btn-empreendimentos .aba-empreendimentos li a::before {
	width: 100%;
background-color: #ffffff1a;
height: 1px;
}

header .btn-empreendimentos .aba-empreendimentos a:hover {
	color: var(--Primary-Yellow, #C4401C);
}

.botao-duplo {
	display: flex;
	align-self: center;
}

header .botao-duplo {
	margin-right: 14px;
}

.botao-duplo .botao.um {
	border-radius: 100px 0 0 100px;
	border-right: 0;
}

.botao-duplo .botao.dois {
	border-radius: 0 100px 100px 0;
	border-left: 0;
	position: relative;
}

.botao-duplo .botao.dois::after {
content: '';
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), rgba(255, 255, 255, 0.10);
    position: absolute;
    left: -.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 27px;
	transition: all .5s;
}

.botao-duplo a.botao {
	color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 10px;
    padding: 15px 30px;
	border: 1px solid rgba(0, 0, 0, 0.10);
}

header.header-menor .botao-duplo .botao.dois::after {
	background-color: rgba(255, 255, 255, 0.20);
}
 
header .pesquisar {
	position: relative;
}

header .pesquisar svg {
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
}

header .pesquisar .fechar {
	opacity: 0;
}

header .pesquisar.active .fechar {
	opacity: 1;
}

header .pesquisar.active .abrir {
	opacity: 0;
}

header .pesquisar.active .barra-search {
	opacity: 1;
	pointer-events: visible
}

header .barra-search {
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
	width: 0px;
	display: flex;
    align-items: center;
    border-radius: 0px;
    border: 1px solid #c4401c9d;
    overflow: hidden;
}

header .barra-search.active {
		opacity: 1;
	pointer-events: visible;
	margin-right: 14px;
width: 350px;
}

.search-filter-input-button:hover:not(.is-disabled):not(.search-filter-input-button--is-selected) {
	color: #fff !important;
	border: 1px solid !;
	border-color: #c4401c9d !important;
}

header .barra-search .search-filter-input-text {
padding: 5px 22px;
	width: 0px !important;
}  

header .barra-search .search-filter-icon__svg use {
fill: #fff;
}

header .barra-search.active .search-filter-input-text {
	width: 100% !important;
	border: none;
}

header .barra-search .search-filter-field--input-type-text {
	width: 0px !important;
	transition: all .5s !important;
}

header .barra-search.active .search-filter-field--input-type-text {
width: 100% !important;
}


header .barra-search input {
	padding: 0 !important;
color: #F7F6F5 !important;
font-family: Outfit !important;
font-size: 12px !important;
font-style: normal !important;
font-weight: 300 !important;
line-height: normal !important;
}

header .barra-search input::placeholder {
color: #f7f6f5bb !important;
font-family: Outfit !important;
font-size: 12px !important;
font-style: normal !important;
font-weight: 300 !important;
line-height: normal !important;
}

header .barra-search input:focus {
	border: none !important;
}

header .barra-search .search-filter-input-button {
    border-radius: 0px;
    background: var(--Primary-Medium, #C4401C);
    color: #F7F6F5;
	border-left: 1px solid #c4401c9d;
    text-align: center;
    font-family: Outfit;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 2.082px;
    padding: 13px 22px;
    border: none;
    transition: all .5s;
}

header .btn-menu {
	position: relative;
	display: none !important;
}

header .btn-menu .menu-hamburguer .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

header .btn-menu .menu-hamburguer svg {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

header .btn-menu .menu-hamburguer svg.fechar {
	opacity: 0;
}

header .btn-menu.active .menu-hamburguer svg.fechar {
	opacity: 1;
}

header .btn-menu.active .menu-hamburguer svg.abrir {
	opacity: 0;
}

.f-html {
	background: transparent !important;
}

.fancybox__slide.has-close-btn {
	padding: 0 !important;
}

.submenu {
    background: #fff !important;
    transition: all .5s;
    width: 100vw;
	    position: relative;
    z-index: 100;
	padding: 60px !important;
	overflow-x: hidden !important;
	height: 100vh;
}


.fancybox__slide .f-button[data-fancybox-close] {
border-radius: 0px !important;
    border: 1px solid var(--Primary-Medium, #C4401C) !important;
    background: var(--Primary-Medium, #C4401C) !important;
    color: #fff !important;
    /* top: 70px !important;
    right: 70px !important; */
    transition: all .5s !important;
    opacity: 1 !important;
    padding: 12px;
    transform: scale(.7);
}

.fancybox__slide .f-button[data-fancybox-close] svg {
	position: relative;
    left: -1px;
}

.fancybox__slide .f-button[data-fancybox-close]:hover {
	border-radius: 10px !important;
}

.submenu .logo-submenu {
	    display: block;
    margin: 0 auto 30px auto;
}

.submenu .botao-duplo {
	    justify-content: center;
		    padding: 0 32px;
    margin: 0 auto;
    background: #fff;
	position: relative;
    z-index: 2;
	width: fit-content;
}

.submenu .botao-duplo a.botao {
	border-color: rgba(67, 66, 71, 0.10);
	color: #434247;
width: 170px;
}

.submenu .botao-duplo a.botao:focus,
.submenu .botao-duplo a.botao:focus-visible {
	outline: none;
	border: 1px solid rgba(67, 66, 71, 0.10);
}

.submenu .botao-duplo a.botao.um {
	border-right: 0;
}

.submenu .botao-duplo a.botao.dois {
	border-left: 0;
}

.submenu .botao-duplo a.botao:hover {
	color: #fff;
}

.submenu .botao-duplo a.botao:hover svg path {
	stroke: #fff;
}

.submenu .info-topo .linha {
	background: rgba(67, 66, 71, 0.10);
	height: 1px;
	width: 100%;
	position: relative;
    top: -28px;
}

.submenu .info-meio {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	margin: 30px auto;
}

.submenu .info-meio .left {
	display: flex;
    flex-direction: column;
    gap: 60px;
	align-self: center;
	padding: 70px;
	width: calc(50% - 50.5px);
}

.submenu .info-meio .left a {
	color: var(--Primary-Dark, #434247);
	leading-trim: both;
	text-edge: cap;
	font-family: Exo;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	position: relative;
	display: block;
	width: fit-content;
}

.submenu .info-meio .left a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 0%;
    background-color: #C4401C;
    transition: .5s;
}

.submenu .info-meio .left a:hover::before {
	width: 100%;
}

.submenu .info-meio .linha {
background: rgba(67, 66, 71, 0.10);
    width: 1px;
}

.submenu .info-meio .right {
	padding: 70px;
	align-self: center;
	    width: calc(50% - 50.5px);
}

.submenu .info-meio .right ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.submenu .info-meio .right ul li a {
color: var(--areia-400, #a29a92);
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
    display: block;
	width: fit-content;
	position: relative;
}

.submenu .info-meio .right ul li a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 0%;
    background-color: #C4401C;
    transition: .5s;
}

.submenu .info-meio .right ul li a:hover::before {
	width: 100%;
}

.submenu .info-bottom {
	display: flex;
	align-items: center;
	gap: 50px;
	justify-content: space-between;
}

.submenu .info-bottom .contatos {
	display: flex;
align-items: center;
gap: 8px;
}

.submenu .info-bottom .contatos a {
	display: flex;
	height: 52px;
	width: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	background: #82655C;
	transition: all .5s;
	cursor: pointer;
}
.submenu .info-bottom .contatos a:hover svg {
transform: scale(1.5);
}

.submenu .info-bottom .contatos a:hover {
	border-color: #C4401C;
}


.submenu .info-bottom .item {
	width: fit-content;
    text-align: center;
}

.submenu .info-bottom .item span {
color: var(--areia-400, #a29a92);
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 5px;
	display: block;
}

.submenu .info-bottom .item div {
	display: flex;
    align-items: center;
	gap: 3px;
}

.submenu .info-bottom .item a {
	padding: 10px;
    border-bottom: 2px solid transparent;
    transition: all .5s;
    border-radius: 0px;
}

.submenu .info-bottom .item a:hover {
	border-color: #C4401C;
}

.submenu .info-bottom .item a:hover svg {
transform: scale(1.1);
}

.submenu .info-bottom .item a:hover path {
    fill: #C4401C;
}

.submenu .info-bottom .linha {
	background: rgba(67, 66, 71, 0.10);
    height: 1px;
    width: 100%;
}

header.branco {
	background: var(--100, #FFF);
position: relative;
    left: auto;
    top: auto;
}

header.branco.header-menor{
	position: fixed;
	
}

header.branco::before {
	display: none;
}

header.branco .btn-empreendimentos a,
header.branco .wrapper-header ul li a {
	color: var(--Primary-Dark, #434247);
}

header.branco .botao-duplo a.botao {
	border-color: rgba(0, 0, 0, 0.10);
	color: var(--Primary-Dark, #434247);
}

header.branco .botao-duplo a.botao:hover {
	color: #fff;
}

header.branco .botao-duplo a.botao:hover path {
	stroke: #fff;
}

header.branco .botoes .item:hover path {
stroke: #fff;
}

header.branco .barra-search {
	border-color: rgba(0, 0, 0, 0.10);
}

header.branco .search-filter-icon__svg {
    fill: #434247;
}

header.branco  .barra-search input {
	color: #434247 !important;
}

.header.branco .barra-search input::placeholder {
	color: var(--600, rgba(0, 0, 0, 0.40)) !important;
}

header.branco .botoes .item {
border-color: rgba(0, 0, 0, 0.10);
}


/* HOME */
.nav-slidehome {
display: flex;
    align-items: center;
    gap: 16px;
    justify-content: end;
    height: 0px;
    position: relative;
    top: -111px;
    z-index: 20;
}

.nav-slidehome .botao-nav {
	border-color: #fff;
}

.nav-slidehome .slick-dots {
	    bottom: -82px;
		display: flex ;
		justify-content: end;
}

.nav-slidehome .botao-nav:hover {
	border-color: #C4401C;
}

.home-slide-wrapper .item-slide-home {
    height: 95vh;
	padding: 100px 0 70px 0;
	    display: flex;
    align-items: end;
}

.home-slide-wrapper {
	margin-bottom: 0 !important;
}

.home-slide-wrapper .item-slide-home::after {
background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	display: block;
}

.home-slide-wrapper .item-slide-home::before {
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 80%);
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 280px;
	display: block;
}

.home-slide-wrapper .slide-imagem {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
}

.home-slide-wrapper .slide-imagem img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-slide-wrapper .conteudo-slide{
    width: 100%;
    z-index: 5;
    position: relative;
    display: flex;
	gap: 25px;
    align-items: end;
    justify-content: space-between;
}

.home-slide-wrapper .conteudo-slide .left {
	width: 100%;
}

.home-slide-wrapper .conteudo-slide .last-destaque {
	display: flex;
	align-items: end;
	gap: 25px;
}

.home-slide-wrapper .conteudo-slide .last-destaque .linha {
    height: 1.5px;
    background: rgba(255, 255, 255, 0.70);
    width: 100%;
    position: relative;
    top: -5px;
}

.home-slide-wrapper .conteudo-slide .estagio {
color: var(--areia-100, #EDE8E4);
    font-family: Outfit;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    width: fit-content;
    letter-spacing: 4.4px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--areia-100, #EDE8E4);
    padding: 4px 5px 4px 8px;
	margin-bottom: 10px;
}

.home-slide-wrapper .conteudo-slide .titulo-imovel {
	color: var(--areia-100, #EDE8E4);
font-family: Outfit;
font-size: 48px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 48px */
margin-bottom: 16px;
}

.home-slide-wrapper .logo-empreendimento {
	    max-width: 160px;
	width: 100%;
}

.home-slide-wrapper .logo-empreendimento img {
	max-width: 170px;
	max-height: 70px;
}

.home-slide-wrapper .conteudo-slide h2 {
color: var(--areia-100, #EDE8E4);
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 18px */
letter-spacing: 2.7px;
margin-bottom: 20px;
}

.home-slide-wrapper .conteudo-slide .itens {
display: flex;
gap: 36px;
}

.home-slide-wrapper .conteudo-slide .item-destaque {
display: flex;
    align-items: center;
    gap: 15px;
	    width: fit-content;
}

.home-slide-wrapper .conteudo-slide .last-destaque .item-destaque {
	margin-bottom: 0;
	position: relative;
}

/* .home-slide-wrapper .conteudo-slide .item-destaque:last-child::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.70);
	height: 1px;
	width: 100%;
} */

.home-slide-wrapper .conteudo-slide .item-destaque .icone {
    display: flex;
    align-items: center;
    width: 16px;
    height: 16px;
    justify-content: center;
}

.home-slide-wrapper .conteudo-slide .item-destaque .icone svg {
	    max-width: 17px;
    max-height: 17px;
    height: 100%;
}

.home-slide-wrapper .conteudo-slide .item-destaque .icone svg path {
	fill: #fff;
}

.home-slide-wrapper .conteudo-slide .item-destaque p {
color: var(--areia-100, #EDE8E4);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.1px;
}

.home-slide-wrapper .conteudo-slide .botao {
	margin-right: 150px;
	background: #C4401C;
	white-space: nowrap;
	    padding: 15px 30px;
	color: #fff;
}

.home-slide-wrapper .conteudo-slide .botao:hover {
	background: transparent;
	border-color: #fff;
}

.imoveis-home {
	padding: 80px 0;
}

.imoveis-home .info-topo {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 33px;
}

.imoveis-home h2 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
white-space: nowrap;
}

.imoveis-home .linha {
	    border-bottom: 1.5px dashed #A39F9B;
    width: 100%;
}

.imoveis-home .info-bottom {
	display: flex;
	margin-top: 35px;
	align-items: center;
	gap: 16px;
}

.imoveis-home .info-bottom .icon {
border-radius: 32px;
display: flex;
width: 60px;
height: 60px;
justify-content: center;
align-items: center;
background: var(--base-0, #FFF);
}

.imoveis-home .info-bottom .linha {
	border-bottom: 1.5px dashed #A39F9B;
    width: calc(100% - 337.11px);
}

.imoveis-home .info-bottom .botao {
	color: #FFF;
	gap: 10px;
background: var(--terracota-400, #C4401C);
white-space: nowrap;
}

.imoveis-home .info-bottom .botao:hover {
	background: transparent;
	color: #C4401C;
}

.imoveis-home .info-bottom .botao:hover path{
	fill: #C4401C;
}

.imoveis-home .info-topo .nav-imoveis {
display: flex
;
    align-items: center;
    gap: 10px;
    width: 185px;
    justify-content: end;
}

.empreendimentos-destaque {
	background: rgba(0, 84, 112, 0.04);
}

.empreendimentos-destaque .btn-mais {
	margin: 48px 0 0 0;
}

.empreendimentos-destaque .nav-imoveis {
	display: flex;
	align-items: center;
	gap: 10px;
}

.grid-slide {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.imoveis-slide .slick-list {
	overflow: visible;
}

.card-imovel {
	margin: 0;
	    width: auto;
		position: relative;
		transition: all .5s;
}

.card-imovel .card-interno {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all .5s;
	width: 100%;
}

.imoveis-slide .card-imovel {
width: 400px;
}

.imoveis-slide .card-imovel:hover {
	width: 740px;
}

.card-imovel .wrapper-img-card-imovel::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 60%, rgba(0, 0, 0, 0.50) 100%), rgba(0, 0, 0, 0.20);
	position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
	pointer-events: none;
}

.card-imovel .contatos {
	    position: absolute;
    z-index: 4;
    display: flex;
    gap: 8px;
	    overflow: hidden;
    top: 0;
    left: 30px;
}

.card-imovel .contatos .item {
	border-radius: 0px 0px 80px 80px;
	padding: 32px 14px 18px 14px;
background: #434247;
transform: translateY(-75px);
transition: background .5s;
}

.card-imovel .contatos .item:hover {
background: #302f33;
}

.card-imovel .contatos .item .icon {
	display: flex;
width: 24px;
height: 24px;
justify-content: center;
align-items: center;
}

.card-imovel .contatos .item.wpp {
background: #73C138;
transition: all .5s;
}

.card-imovel .contatos .item.wpp:hover {
background: #4c8521;
}

.card-imovel .contatos .item.tel {
	background: var(--Primary-Medium, #C4401C);
	transition: all .7s;
}

.card-imovel .contatos .item.tel:hover {
	background: #884e24;
}


.card-imovel .contatos .item.mail {
transition: all .9s;
cursor: pointer;
}

.card-imovel:hover .contatos .item {
transform: translateY(0);
}

.imoveis-slide .card-imovel:hover .contatos {
		opacity: 1;
    pointer-events: initial;
}

.imoveis-slide .card-imovel .contatos {
	left: auto;
	right: 30px;
    pointer-events: none;
	overflow: hidden;
}

.card-imovel .wrapper-img-card-imovel {
	position: relative;
    width: 100%;
    height: 460px;
	overflow: hidden;
}

.card-imovel .wrapper-img-card-imovel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	transition: all .5s;
}

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

.imoveis-slide .card-interno {
	flex-direction: row;
    align-items: end;
    justify-content: start;
}

.card-imovel .destaques {
	position: absolute;
	z-index: 4;
	    left: 24px;
		bottom: 24px;
    max-width: 100%;
    width: 100%;
	transition: all .5s;
	opacity: 0;
}

.card-imovel:hover .destaques {
opacity: 1;
}

.imoveis-slide .card-interno .abrir span {
color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: Exo;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	margin-left: -85px;
	white-space: nowrap;
	transition: all .5s;
}

.imoveis-slide .card-imovel:hover .abrir span {
	opacity: 1;
	margin: 0 10px 0 0;
}

.imoveis-slide .card-imovel:hover .abrir {
	    width: 160px;
}

.card-imovel .abrir:hover {
	background: #C4401C;
	border-color: #C4401C;
}


/* .imoveis-slide .card-interno .abrir {
    gap: 20px;
    white-space: nowrap;
    width: 50px;
    height: 50px;
    justify-content: end;
    padding: 0;
} */

/* .imoveis-slide .card-interno:hover .abrir {
	width: auto;
    height: auto;
    padding: 15px 25px;
} */


.card-imovel .card-interno .infos {
position: relative;
    z-index: 3;
    transition: all .5s;
    background: #FFF;
    padding: 24px;
    overflow: hidden;
}

.card-imovel .card-interno .infos .destaque {
	display: flex;
    align-items: center;
    gap: 8px;
	margin-top: 10px;
}

.card-imovel .infos .destaque path {
	fill: #C4401C;
}

.card-imovel .card-interno .infos .destaque p {
	color: #C4401C;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.8px;
}

.card-imovel:hover .infos {	
	transition: all .5s;
}

.card-imovel .estagio {
color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 7px;
text-transform: uppercase;
position: absolute;
top: 24px;
left: 24px;
z-index: 3;
}

.card-imovel .infos h2 {
color: var(--terracota-900, #82655C);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 26px;
font-style: normal;
font-weight: 200;
line-height: normal;
white-space: normal;
display: -webkit-box;
-webkit-line-clamp: 1; /** número de linhas que você quer exibir */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.card-imovel:hover .destaques {
	opacity: 1;
}

.card-imovel .destaques .item-destaque {
	display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 10px;
}

.card-imovel .destaques .item-destaque:last-child {
	margin-bottom: 0;
}

.card-imovel .destaques .item-destaque .icone {
	    display: flex;
    align-items: center;
width: 18px;
height: 18px;
    justify-content: center;
}

.card-imovel .destaques .item-destaque .icone path {
	fill: #fff;
}

.card-imovel .destaques .item-destaque p {
color: var(--areia-50, #F2F0ED);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.8px;
}

.card-imovel.pagina-inacessivel > a {
    pointer-events: none !important;
}

.sobre-home {
     margin: 40px 0;
    position: relative;
display: flex;
align-items: center;
height: 660px;
}

.sobre-home .imgquanta {
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
	    max-width: 70%;
    min-width: 70%;
    object-fit: cover;
}

.sobre-home .box {
	padding: 60px;
	max-width: 600px;
	background: #fff;
	position: relative;
	z-index: 2;
}

.sobre-home h3 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 24px;
font-style: normal;
font-weight: 300;
margin-bottom: 15px;
line-height: 100%; /* 24px */
}

.sobre-home h2 {
	color: var(--terracota-900, #82655C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
margin-bottom: 29px;
line-height: 110%; /* 39.6px */}


.sobre-home .texto {
	margin-bottom: 35px;
}

.sobre-home .texto p {
	color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
margin-bottom: 15px;
}

.sobre-home .texto p:last-child {
	margin-bottom: 0;
}

.sobre-home .bottom {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sobre-home .bottom .icon {
	border-radius: 32px;
background: var(--areia-50, #F2F0ED);
display: flex;
width: 60px;
height: 60px;
justify-content: center;
align-items: center;
}

.sobre-home .bottom .linha {
	width: calc(100% - 246.85px);
	    border-bottom: 1.5px dashed #A39F9B;
}

.sobre-home .bottom .botao {
	border-color: #C4401C;
	color: #C4401C;
	background: transparent;
	white-space: nowrap;
}

.sobre-home .bottom .botao:hover {
	background: #C4401C;
	color: #fff;
}

.sobre-home .bottom .botao:hover path {
	fill: #fff;
}


.diferenciais-home {
	height: 700px;
	     margin: 130px 0;
    position: relative;
display: flex;
align-items: center;
	/* background-image: url(../images/banner3e.webp);
background-size: cover;
background-position: center; */
}

.diferenciais-home .container {
	display: flex;
}

.diferenciais-home .imgquanta {
	position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    max-width: 70%;
    min-width: 70%;
    object-fit: cover;
}

.diferenciais-home .logo-3e {position: relative; z-index: 3; align-self: end;}

.diferenciais-home .box {
	padding: 60px;
    max-width: 600px;
    background: #211915;
    position: relative;
	margin-left: auto;
    z-index: 2;
}

.diferenciais-home h3 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 24px;
font-style: normal;
font-weight: 300;
margin-bottom: 15px;
line-height: 100%; /* 24px */
}

.diferenciais-home h2 {
	color: #FFF;
font-family: Outfit;
font-size: 36px;
    margin-bottom: 29px;
font-style: normal;
font-weight: 200;
line-height: 110%; /* 39.6px */
}

.diferenciais-home .texto {
    margin-bottom: 35px;
}

.diferenciais-home .texto p {
color: #DDD8D4;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
    margin-bottom: 15px;
}

.diferenciais-home .texto p:last-child {
	margin-bottom: 0;
}

.diferenciais-home .bottom {
	    display: flex;
    align-items: center;
    gap: 16px;
}

.diferenciais-home .bottom .icon {
    border-radius: 32px;
    background: var(--areia-50, #F2F0ED);
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
}

.diferenciais-home .bottom .linha {
    width: calc(100% - 239.96px);
    border-bottom: 1.5px dashed #A39F9B;
}

.diferenciais-home .bottom .botao {
    border-color: #C4401C;
    color: #fff;
    background: #C4401C;
    white-space: nowrap;
}

.diferenciais-home .bottom .botao:hover {
	background: #fff;
	color: #C4401C;
}

.diferenciais-home .bottom .botao:hover path {
	fill: #C4401C;
}

.feed {
	background: #FBFAFF;
	padding: 85px 0;
}

.feed .info-topo {
	display: flex;
	align-items: center;
	gap: 30px;
}

.feed .info-topo .linha {
	height: 2px;
    background: rgba(67, 66, 71, 0.10);
    width: 100%;
}

.feed h2 {
color: var(--Primary-Dark, #434247);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 36px;
max-width: 390px;
font-style: normal;
font-weight: 300;
margin: 45px 0;
line-height: 130%; /* 46.8px */
text-transform: uppercase;
}

.feed h2 b {
	font-weight: 700;
}

.feed .grid-feed {
	
}

.secao-blog {
	padding: 95px 0;
	background-color: #fff;
}

.secao-blog .info-topo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
margin-bottom: 45px;
}

.secao-blog .nav-blog {
	display: flex;
	align-items: center;
	gap: 10px;
}


.card-blog {
	    padding: 0 10px;
}

.card-blog > a {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all .5s;
}

.card-blog > a:hover {
	box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.card-blog .conteudo {
	padding: 66px 30px 30px 30px;
	background: #fff;
	    width: 50%;
		    min-height: 500px;
}

.card-blog .img-card-blog {
	height: 320px;
    width: 100%;
	overflow: hidden;
	position: relative;
}

.card-blog .img-card-blog img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	transition: all .5s;
}

.card-blog > a:hover .img-card-blog img {
    transform: scale(1.1);
}

.card-blog .infos {
	background: #fff;
	padding: 23px;
}

.card-blog .data-blog {
color: var(--terracota-400, #C4401C);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.8px;
display: flex;
align-items: center;
gap: 8px;
}

.card-blog h3 {
    color: var(--terracota-900, #82655C);
    leading-trim: both;
    text-edge: cap;
    font-family: Outfit;
    font-size: 28px;
    font-style: normal;
    font-weight: 200;
    line-height: 110%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 15px 0;
    height: 61.6px;
}

.card-blog .resumo-blog p {
	overflow: hidden;
color: var(--areia-300, #BFBAB7);
leading-trim: both;
text-edge: cap;
text-overflow: ellipsis;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 16.8px */
letter-spacing: -0.28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-blog .conteudo p {
	color: rgba(67, 66, 71, 0.70);
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 140%; /* 22.4px */
display: -webkit-box;
    -webkit-line-clamp: 6; /* número de linhas que deseja mostrar */
    -webkit-box-orient: vertical;
	    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-blog .conteudo .botao {
    margin-top: 45px;
}


/* PÁGINA SOBRE */

.topo-sobre {
	min-height: 95vh;
	padding: 100px 0 50px 0;
	background-size: cover;
	display: flex;
	align-items: end;
}

.topo-sobre h3 {
	color: var(--brand-black, #211915);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 18px */
letter-spacing: 2.7px;
}

.topo-sobre h1 {
	color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
max-width: 650px;
margin-top: 10px;
}

.pg-sobre {
	padding: 100px 0;
}

.pg-sobre .logo {
	display: block;
	margin: 0 auto;
}

.pg-sobre .texto {
	max-width: 514px;
	margin: 30px auto 80px auto;
}

.pg-sobre .texto p {
	color: var(--areia-400, #A39F9B);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 16px;
font-style: normal;
margin-bottom: 15px;
font-weight: 400;
line-height: 160%; /* 25.6px */
}

.pg-sobre .texto p:last-child {
	margin-bottom: 0;
}

.pg-sobre img {
	max-width: 1196px;
	width: 100%;
}

.slide-sobre {
height: 810px;
position: relative;
display: flex;
align-items: center;
}

.slide-sobre .box {
	position: relative;
	background: #FFF;
	padding: 55px;
	z-index: 3;
	    max-width: 620px;

}

.slide-sobre .item-slide {
	height: 810px;
}

.slide-sobre .box::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -900%;
    background: #FFF;
    width: 900%;
    height: 100%;
    z-index: -2;
}

.slide-sobre .carrossel-sobre {
position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 80%;
	    height: 100%;

}

.slide-sobre .carrossel-sobre  img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 70%;
}

.slide-sobre .box h2 {
	color: var(--terracota-900, #82655C);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 48px;
margin-bottom: 32px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 48px */
}

.slide-sobre .box p {
	color: var(--areia-400, #A39F9B);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
margin-bottom: 17px;
line-height: 160%; /* 25.6px */
}

.slide-sobre .box p :last-child {
	margin-bottom: 0;
}

.slide-sobre .box .bottom {
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 17px;
}

.slide-sobre .box .icon {
	border-radius: 32px;
background: var(--areia-50, #F2F0ED);
display: flex;
width: 60px;
height: 60px;
justify-content: center;
align-items: center;
}

.slide-sobre .box  .linha {
	border-bottom: 1.5px dashed #DDD8D4;
width: calc(100% - 77px);
}

.secao-3e {
background-image: url(../images/banner3e.webp);
background-size: cover;
background-position: center;
padding: 100px 0 0 0;
    margin-top: 160px;
	display: flex;
	position: relative;
    z-index: 3;
}

.secao-3e .topo {
	display: flex;
	align-items: center;
	gap: 37px;
	margin-bottom: 90px;
	margin-left: auto;
	margin-right: auto;
	max-width: 808px;
}

.secao-3e .topo h2 {
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-family: Outfit;
	font-size: 48px;
	font-style: normal;
	font-weight: 200;
	line-height: 100%; /* 48px */
}

.secao-3e .box {
max-width: 808px;
    margin: 0 auto -140px auto;
    background: #211915;
    padding: 60px;
    display: block;
}

.secao-3e .box h3 {
	color: #FFF;
	font-family: Outfit;
	font-size: 36px;
	font-style: normal;
	font-weight: 200;
	line-height: 110%; /* 39.6px */
	margin-bottom: 32px;
}

.secao-3e .box .texto p {
	color: #DDD8D4;
	font-family: Outfit;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
}

.secao-3e .box .texto p b,
.secao-3e .box .texto p strong,
.secao-3e .box .texto p bold {
	font-weight: 700;
}

.page-template-template-sobre .sobre-home {
    height: 1150px;
}

.page-template-template-sobre .sobre-home .texto {
-webkit-line-clamp: inherit;
display: block;
}

.page-template-template-sobre .sobre-home .botao {
	display: none;
}

.page-template-template-sobre .sobre-home .numeros {
    display: block;
    width: 430px;
    height: 440px;
    position: absolute;
    top: 440px;
    right: 40.1%;
}

.page-template-template-sobre .sobre-home .numeros .item-contador.item1 {
left: 31px;
}

.page-template-template-sobre .sobre-home .numeros .item-contador.item2 {
    top: 30px;
    left: 192px;
}

.page-template-template-sobre .sobre-home .numeros .item-contador.item3 {
top: 120px;
    left: 195px;
}

.video-sobre {
	padding: 85px 0;
	position: relative;
	background: #FBFAFF;
}

.video-sobre .subtitulo {
    margin: 0 auto;
    padding: 0 27px 0 30px;
    background: #FBFAFF;
    position: relative;
    z-index: 2;
}

.video-sobre .linha {
    background-color: rgba(67, 66, 71, 0.1);
    width: 100%;
    height: 2px;
	    position: relative;
    bottom: -9px;
}

.video-sobre .item-video {
	    position: relative;
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    background-position: center;
    overflow: hidden;
    background-size: cover;
    max-width: 100%;
    margin: 0 auto;
	margin-top: 45px;
}

.video-sobre .content-video {
    display: inline-flex
;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 4;
}

.video-sobre .content-video svg {
	transition: .5s;
}

.video-sobre .content-video p {
color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
transition: .5s;
}

.video-sobre .item-video:hover svg,
.video-sobre .item-video:hover p {
	transform: scale(1.07);
}

.mvv-sobre {
background: var(--brand-black, #211915);
	padding: 210px 0 90px 0;
	position: relative;
}

.mvv-sobre .grid {
	display: grid;
	    grid-template-columns: repeat(3, 1fr);
		gap: 100px;
}

.mvv-sobre .container {
	position: relative;
	z-index: 3;
}

.mvv-sobre .grid h3 {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--areia-50, #F2F0ED);
	font-family: Outfit;
	font-size: 58px;
	font-style: normal;
	font-weight: 200;
	border-bottom: 1.5px dashed #DDD8D4;
	margin-bottom: 30px;
	padding-bottom: 30px;
	line-height: 110%; /* 63.8px */
}

.mvv-sobre .grid .texto p {
	color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
}

.mvv-sobre .grid ul {
	list-style: disc;
	padding-left: 27px;
}

.mvv-sobre .grid ul li {
	color: #F2F0ED;
}

.mvv-sobre .grid ul li span {
	color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
}

.mvv-sobre .conteudo > img {
width: 61%;
}

.mvv-sobre .conteudo .box {
	background: #fff;
    padding: 40px;
    height: 500px;
	width: 100%;
	    display: flex
;
    flex-direction: column;
    justify-content: center;
}

.mvv-sobre .conteudo .box h5 {
	color: var(--Primary-Dark, #434247);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 48px;
font-style: normal;
font-weight: 300;
line-height: 120%; /* 57.6px */
margin: 25px 0 30px 0;
}

.mvv-sobre .conteudo .box .texto p {
	color: rgba(67, 66, 71, 0.70);
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 140%; /* 22.4px */
margin-bottom: 15px;
}

.mvv-sobre .conteudo .box .texto p:last-child {
	margin-bottom: 0;
}

.mvv-sobre .conteudo .item-valores {
    display: flex;
    align-items: center;
    gap: 16px;
	    margin-bottom: 15px;
}

.mvv-sobre .conteudo .item-valores:last-child {
	margin-bottom: 0;
}

.mvv-sobre .conteudo .item-valores .icone {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.mvv-sobre .conteudo .item-valores p {
	color: rgba(67, 66, 71, 0.70);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 140%; /* 22.4px */
}
 

/* BLOG */


.topo-blog {
	background-image: url(../images/bannerblog.webp);
	min-height: 55vh;
background-size: cover;
background-position: center;
display: flex;
padding: 100px 0 50px 0;
align-items: end;
}

.topo-blog h1 {
	color: var(--areia-50, #F2F0ED);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
}
.topo-blog .botao {
	background: #C4401C;
	border-color: #C4401C;
	color: #fff;
}

.topo-blog .botao:hover {
	background: transparent;
	border-color: #fff;
}

.destaque-blog {
	background: #f2f0ed;
	padding: 85px 0 45px 0;
}

.destaque-blog .info-bottom {
	display: flex;
	margin-top: 32px;
	align-items: center;
	gap: 25px;
}

.destaque-blog .info-topo {
	display: flex;
	margin-bottom: 32px;
	align-items: center;
	gap: 25px;
}

.destaque-blog .info-topo h2 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
}

.destaque-blog .linha {
width: 100%;
    border-bottom: 1.5px dashed rgb(163, 159, 155);
}

.destaque-blog .slide-blog {
	max-width: 1000px;
}

.destaque-blog .info-bottom .nav-blog {
	display: flex;
	align-items: center;
	gap: 8px;
}

.destaque-blog .slide-blog .slick-list {
	overflow: visible;
}

.mais-posts {
background: #f2f0ed;
padding: 30px 0 60px 0;
}

.mais-posts .info-topo {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 35px;
}

.mais-posts .info-topo h3 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
}

.mais-posts .info-topo .linha {
	width: 100%;
    border-bottom: 1.5px dashed rgb(163, 159, 155);
}

.mais-posts .subtitulo {
	white-space: nowrap;
}

.mais-posts .grid-posts {
	    margin-top: 40px;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.mais-posts .card-blog {
	padding: 0;
}

/* SINGLE BLOG */
.single .topo-blog {
	position: relative;
}

.single .topo-blog::after {
content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 56%) 0%, rgba(0, 0, 0, 0.10) 100%);
}

.single-post .topo-blog .container {
justify-content: center;
}

.single-post .topo-blog .infos {
		max-width: 830px;
	margin: 0 auto;
	    position: relative;
    z-index: 5;
}

.single-post .topo-blog .data-blog {
color: var(--terracota-400, #fff);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.8px;
text-align: center;
}

.single-post .topo-blog h1 {
color: var(--terracota-900, #fff);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 45px;
text-align: center;
font-style: normal;
	margin-top: 25px;
}

.single-post .conteudo-blog {
	padding: 90px 0;
}

.single-post .conteudo-blog .content-single h2 {
	color: var(--Primary-Blue, #C4401C);
	leading-trim: both;
	text-edge: cap;
	font-family: Exo;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	margin-bottom: 30px;
	margin-top: 45px;
}

.single-post .conteudo-blog .content-single h3,
.single-post .conteudo-blog .content-single h4,
.single-post .conteudo-blog .content-single h5,
.single-post .conteudo-blog .content-single h6 {
	color: var(--Primary-Blue, #C4401C);
	leading-trim: both;
	text-edge: cap;
	font-family: Exo;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	margin-bottom: 30px;
	margin-top: 45px;
}

.single-post .conteudo-blog .content-single p {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 25.6px */
	margin-bottom: 23px;
}

.single-post .conteudo-blog .content-single b,
.single-post .conteudo-blog .content-single strong {
font-weight: 700;
}

.single-post .conteudo-blog .content-single ul {
	list-style: disc;
    padding-left: 20px;
}

.single-post .conteudo-blog .content-single li {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 25.6px */
	margin-bottom: 15px;
}

.single-post .conteudo-blog .content-single a {
	color: #82655C;
	font-weight: 500;
}

.single-post .conteudo-blog .content-single .wp-caption {
	width: 100% !important;
}

.single-post .conteudo-blog .content-single .wp-caption img {
	margin: 30px 0 40px 0;
}

.single-post .conteudo-blog .content-single p.wp-caption-text {
	display: none !important;
}

.single-post .compartilhe {
	padding-top: 64px;
	margin-top: 64px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.single-post .compartilhe .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.single-post .compartilhe .info p {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 25.6px */
}

.single-post .redes {
    justify-content: center;
    max-width: fit-content;
	margin-top: 0;
	display: flex;
    gap: 13px;
}

.single-post .redes a svg path, .single-post .redes a svg {
    transition: all .5s;
}

.single-post .redes a svg:hover {
    transform: scale(1.3);
}

.single-post .compartilhe a:hover svg path{
	fill: #82655C;
}

.single-post .secao-blog {
	background: #82655C;
}

 /* EMPREENDIMENTOS */

 section.page-empreendimento {

 }
 .topo-empreendimentos {
    min-height: 65vh;
 }

 .secao-black.topo-empreendimentos::before {
    background: radial-gradient(294.19% 102.5% at 0% 47.07%, rgb(157 157 157 / 4%) 71.99%, rgb(0 0 0 / 50%) 100%), radial-gradient(303.93% 141.42% at 100% 0%, rgb(0 0 0 / 0%) 47.88%, rgb(0 0 0 / 81%) 80.24%), linear-gradient(0deg, rgb(0 0 0 / 68%) 0%, rgb(0 0 0 / 0%) 100%), linear-gradient(180deg, rgb(0 0 0 / 65%) 0%, rgb(0 0 0 / 0%) 50%);
 }

.content-empreendimentos {
	padding: 130px 0 80px 0;
}

.content-empreendimentos .infos-topo {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 35px;
	    justify-content: space-between;
}

.content-empreendimentos .infos-topo h3 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 33px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
}

.content-empreendimentos .infos-topo .linha {
border-bottom: 1.5px dashed #A39F9B;
    width: 100%;
}

.content-empreendimentos .infos-topo #filter-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-empreendimentos .infos-topo #filter-status button {
color: var(--brand-black, #211915);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
white-space: nowrap;
line-height: 100%; /* 19.6px */
padding: 12.5px 20px;
background: #fff;
}

.content-empreendimentos .infos-topo #filter-status button:hover {
	background: var(--terracota-400, #C4401C);
	color: #fff;
}

.content-empreendimentos .infos-topo #filter-status button.active {
		background: var(--terracota-400, #C4401C);
	color: #fff;
}

.content-empreendimentos .grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

 .topo-estagio .infos {
    max-width: 800px;
}

 .topo-estagio .infos h1 {
color: var(--100, #FFF);
    leading-trim: both;
    text-edge: cap;
    font-family: Exo;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin: 20px auto 0 auto;
}


/* SINGLE EMPREENDIMENTO */
.single-empreendimento {
	    overflow: initial !important;
}

.single-empreendimento header {
	position: absolute;
}

.topo-single {
	padding: 140px 0 50px 0;
    background-size: cover;
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
	background-attachment: fixed;
}

.topo-single::before {
	content: '';
	position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
}

.topo-single::after {
		content: '';
	position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    display: block;
    pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 80%);
}

.topo-single .conteudo {
	position: relative;
	    width: fit-content;
	z-index: 4;
}

.topo-single .estagio {
color: var(--areia-100, #EDE8E4);
font-family: Outfit;
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 11px */
width: fit-content;
letter-spacing: 4.4px;
text-transform: uppercase;
border-radius: 4px;
border: 1px solid var(--areia-100, #EDE8E4);
  padding: 4px 5px 4px 8px;
}

.topo-single p.titulo-imovel {
color: var(--areia-100, #EDE8E4);
font-family: Outfit;
font-size: 48px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 48px */
margin: 11px 0 0 0;
}

.nav-imovel {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 6;
	    border-bottom: 1px solid #00000014;
	padding: 16px 0;
}

.nav-imovel .container {
	max-width: 1480px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.nav-imovel .left {
	display: flex;
	align-items: center;
	gap: 16px;
	width: fit-content;
}

.nav-imovel .left .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	border-radius: 32px;
	background: var(--areia-50, #F2F0ED);
	height: 40px;
}

.nav-imovel .left a.titulo-imovel {
	color: var(--terracota-900, #82655C);
	font-family: Outfit;
	font-size: 36px;
	font-style: normal;
	font-weight: 200;
	line-height: 100%; /* 36px */
}

.nav-imovel .left .estagio {
	color: var(--terracota-900, #82655C);
font-family: Outfit;
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 11px */
letter-spacing: 4.4px;
text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--areia-100, #82655C);
    padding: 4px 5px 4px 8px;
}

.nav-imovel nav {
	display: flex;
	align-items: center;
	justify-content:end;
	gap: 3px;
}

.nav-imovel nav a {
	color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 100%; /* 20px */
width: fit-content;
padding: 13px 15px;
border: 1px solid transparent;
transition: all .5s;
}

.nav-imovel nav a:hover {
	border-color: #A39F9B;
}

.nav-imovel nav a.active {
	background: #82655C;
	color: #fff;
}

#diferenciais-imovel {
	scroll-margin-top: 40px;
}

.sobre-imovel {
	padding: 60px 0;
}

.sobre-imovel .conteudo {
	position: relative;
	display: flex;
	align-items: center;
	gap: 33px;
	justify-content: space-between;
}

.sobre-imovel .box-sobre-imovel {
	max-width: 414px;
	width: 100%;
}

.sobre-imovel .imagem-lateral {
	object-fit: cover;
    object-position: center;
    width: calc(100% - 447px);
    height: 100%;
    min-height: 400px;
	max-height: 750px;
}

.sobre-imovel h2 {
color: var(--terracota-900, #82655C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 110%; /* 39.6px */
margin: 0 0 32px 0;
}

.sobre-imovel .descricao {
	margin-bottom: 30px;
}

.sobre-imovel .descricao p {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
	margin-bottom: 15px;
}

.sobre-imovel .descricao p:last-child {
	margin-bottom: 0;
}

/* .diferenciais .slide-diferenciais .slick-list {
	    overflow: visible;
    position: relative;
} */

/* .diferenciais .slide-diferenciais .slick-list::before {
content: '';
    display: block;
    background: #FBFAFF;
    width: 400px;
    height: 110%;
    position: absolute;
    left: -400px;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
} */

.diferenciais .item-diferencial {
    background: var(--base-0, #FFF);
    padding: 16px;
    height: 140px;
    margin: 0 8px;
	width: 140px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.diferenciais .item-diferencial .icone {
display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    margin: 0 0 22px 0;
	margin-bottom: 6px;
}

.diferenciais .item-diferencial .icone svg {
max-height: 46px;
    max-width: 46px;
}

.diferenciais .item-diferencial .icone svg path {
	fill: #A39F9B;
}

.diferenciais .item-diferencial p {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 15px;
font-style: normal;
font-weight: 300;
line-height: 100%; /* 18px */
max-width: 108px;
}

.diferenciais .info-bottom {
	    display: flex;
    gap: 30px;
	align-items: center;
	margin-top: 40px;
	justify-content: space-between;
}

.diferenciais .nav-diferenciais {
	    display: flex;
    gap: 8px;
	align-items: center;
}

.diferenciais .info-bottom .linha {
    border-bottom: 1.5px dashed #A39F9B;
	width: 100%;
}

.secao-videos {
	padding: 60px 0 50px 0;
}

#video-imovel {
	    scroll-margin-top: 70px;
}

.secao-videos .info-top {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 45px;
}

.secao-videos .info-top .linha  {
	    background-color: rgba(67, 66, 71, 0.10);
    width: 100%;
    height: 2px;
}

.secao-videos .nav-videos.show-desk {
	display: flex;
	align-items: center;
	gap: 8px;
}

.secao-videos .slide-videos {
width: 100%;
	margin: 0 auto;
}

.secao-videos a {
    margin: 0 10px;
	display: block;
	overflow: hidden;
}

.secao-videos .item-video {
	position: relative;
	display: flex;
	height: 500px;
	align-items: center;
	justify-content: center;
	background-position: center;
	overflow: hidden;
	background-size: cover;
	max-width: 100%;
    margin: 0 auto;
}

.secao-videos .item-video::after {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
	transition: all .5s;
}

.secao-videos a:hover .item-video::after {
	opacity: .7;
} 

.videos a:hover .item-video::before {
	opacity: .9;
}

.secao-videos .content-video {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 4;
}

.secao-videos .content-video p {
color: #FFF;
font-family: Outfit;
font-size: 30px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
transition: all .5s;
}

.secao-videos .content-video .icon {
	transition: .5s;
}

.secao-videos a:hover .icon {
	transform: scale(1.1);
}

.secao-videos a:hover p {
	transform: scale(1.1);
}


#fichatecnica-imovel {
	padding: 75px 0;
	position: relative;
}

#fichatecnica-imovel {
    scroll-margin-top: 40px;
}

#fichatecnica-imovel h3 {
	    white-space: nowrap;
		color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
}

#fichatecnica-imovel .info-topo {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
	align-items: center;
}

#fichatecnica-imovel .info-topo .linha {
    border-bottom: 1.5px dashed #A39F9B;
    width: 100%;
}

#fichatecnica-imovel .nav-fichas {
		display: flex;
	gap: 8px;
}

#fichatecnica-imovel .nav-tipos {
	display: flex;
	align-items: center;
	gap: 14px;
}

#fichatecnica-imovel .nav-tipos .botao {
	    gap: 8px;
		white-space: nowrap;
		background: #fff;
}

#fichatecnica-imovel .nav-tipos .botao:hover {
	background: var(--terracota-400, #C4401C);
}

#fichatecnica-imovel .nav-tipos .botao .icone {
	    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fichatecnica-imovel .nav-tipos .botao .icone svg {
    max-height: 17px;
}

#fichatecnica-imovel .nav-tipos .botao .icone svg path {
	stroke: #000000;
	fill: transparent;
    stroke-width: 1.5px;
}

#fichatecnica-imovel .nav-tipos .botao:hover .icone svg path {
	stroke: #fff;
	fill: transparent;
}

#fichatecnica-imovel .nav-tipos .botao.active .icone svg path {
	stroke: #fff;
	fill: transparent;
}

#fichatecnica-imovel .nav-tipos .botao.active {
    background: #C4401C;
    color: #fff;
    border-color: #C4401C;
}

#fichatecnica-imovel .slide-fichas {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 35px;
}


#fichatecnica-imovel .slide-fichas .slick-slide > div {
	margin: 0 8px;
}

#fichatecnica-imovel .slide-fichas .slick-slide > div:first-child {
		margin-bottom: 18px;
}

#fichatecnica-imovel .slide-fichas .item {
color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 18px */
}

#fichatecnica-imovel .slide-fichas .item span {
color: var(--areia-500, #918C87);
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 25.2px */
display: block;
margin-top: 7px;
}

#fichatecnica-imovel .slide-fichas .item .icone {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	    margin-bottom: 10px;
	justify-content: center;
}

#fichatecnica-imovel .slide-fichas .item .icone svg {
max-height: 32px;
    max-width: 32px;
    width: 100%;
    height: 100%;
}

#fichatecnica-imovel .slide-fichas .item .icone svg path {
	fill: #C4401C;
}


.tour {
	min-height: 75vh;
	width: 100%;
		background-size: cover;
	background-position: center;
		position: relative;
}

#tour-imovel {
	    scroll-margin-top: 70px;
}

.tour::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
	width: 100%;
	height: 100%;
	    pointer-events: none;
}

.tour a {
    display: flex;
    position: relative;
    height: 100%;
    align-items: center;
    min-height: inherit;
}

.tour svg {
    margin: 0 auto 18px auto;
    display: block;
}

.tour p {
	color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
transition: all .5s;
text-align: center;
text-transform: uppercase;
}

.plantas {
	height: auto;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

#plantas-imovel {
	    scroll-margin-top: 70px;
}

.plantas h2 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
    width: 100%;
    max-width: fit-content;
}

.plantas .info-topo {
	display: flex;
	align-items: center;
	gap: 30px;
}

.plantas .info-topo .linha {
    border-bottom: 1.5px dashed #A39F9B;
    width: 100%;
}

.plantas .img-planta {
  display: none;
}

.plantas .img-planta.active {
  display: block;
}

.plantas .aba ul {
  display: none;
}

.plantas .aba.active ul {
  display: block;
}

.plantas .info-topo .filtros-topo {
		display: flex;
	align-items: center;
	gap: 10px;
}

.plantas .info-topo .filtros-topo .botao {
	    white-space: nowrap;
}

.plantas .info-topo .filtros-topo .botao.active {
	background: #C4401C;
	border-color: #C4401C;
	color: #fff;
}

.plantas select-wrapper.inactive {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.plantas .conteudo {
	width: 100%;
	margin-top: 45px;
	overflow: hidden;
	    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.plantas .conteudo .abas {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.plantas .conteudo .abas .aba {
	background: var(--base-0, #FFF);
	padding: 16px;
	position: relative;
	width: 340px;
	transition: all .5s;
	cursor: pointer;
}
.plantas .conteudo .abas .aba:hover {
	background: #ffffff94;
}

.plantas .conteudo .abas .aba.active svg {
transform: rotate(-90deg);
}

.plantas .conteudo .abas .aba.no-itens svg {
	display: none;
}

.plantas .conteudo .abas svg {
    transition: all .5s;
    position: absolute;
    right: 10px;
    top: 13px;
}

.plantas .conteudo .abas h3 {
	color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
transition: all .5s;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 100%; /* 20px */
text-transform: uppercase;
padding-right: 24px;
}

.plantas .conteudo .abas .aba.active {
	    background: #C4401C;
}

.plantas .conteudo .abas .aba.active h3 {
	color: #fff;
}

.plantas .conteudo .abas ul {
    padding-top: 16px;
    list-style: disc;
    padding-left: 16px;
}

.plantas .conteudo .abas ul li {
	color: #DDD8D4;
	margin-bottom: 3px;
}

.plantas .conteudo .abas ul li:last-child {
	margin-bottom: 0;
}

.plantas .conteudo .abas ul li span {
	color: var(--areia-400, #A39F9B);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.98px;
text-transform: uppercase;
}

.plantas .conteudo .box-img {
	max-width: 718px;
	width: 100%;
}

.plantas .conteudo .box-img img {
	width: 100%;
	max-height: 400px;
	object-fit: contain;
}

.plantas .slide-plantas {
	max-width: 800px;
	margin: 0 auto;
	overflow: hidden;
}

.plantas .item-slide {
max-width: 600px;
	    width: 100%;
		transition: all .5s;
    transform: scale(.5);
	opacity: .3;
}

.plantas .slick-list {
    overflow: visible;

}

.plantas .slick-track {
	    display: flex;
    align-items: center;
	justify-content: center;
}

.plantas .item-slide h4 {
color: var(--Primary-Dark, #434247);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 7.2px;
text-transform: uppercase;
text-align: center;
margin-bottom: 45px;
opacity: 0;
transform: scale(.5);
transition: all .5s;
}

.plantas .item-slide img {
    max-height: 350px;
    width: 100%;
    object-fit: contain;
	cursor: pointer;
    margin: 0 auto;
	transition: all .5s;
}

.plantas .item-slide.slick-center {
	    transform: scale(1);
	opacity: 1;
}

.plantas .item-slide.slick-center h4 {
opacity: 1;
transform: scale(1);
}

.plantas .info-bottom {
	display: flex;
justify-content: space-between;
	align-items: center;
	margin-top: 50px;
	position: relative;
}

.plantas .info-bottom .hidden {
	width: 160px;
	background: #fff;
	position: relative;
	z-index: 2;
}

.plantas .info-bottom::after {
	content: '';
	display: block;
	background-color: rgba(67, 66, 71, 0.1);
    width: 100%;
    height: 2px;
	    position: absolute;
}

.plantas .select-wrapper {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    top: -52px;
    float: left;
    background: #fff;
	z-index: 3;
}

.plantas .select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  pointer-events: none;
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none"><path d="M8.5 10.5L12.5 14.5L16.5 10.5" stroke="%23434247" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}




.plantas select {
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    appearance: none;
    color: var(--Primary-Dark, #434247);
    leading-trim: both;
    text-edge: cap;
    font-family: Exo;
font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 140px;
    padding: 16px 30px 16px 15px;
    text-transform: uppercase;
    cursor: pointer;
}


/* 
.plantas .info-bottom .linha {
	background-color: rgba(67, 66, 71, 0.1);
    width: 100%;
    height: 2px;
} */

.plantas .info-bottom .descricao-tipo {
	color: rgba(67, 66, 71, 0.70);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
padding: 0 20px;
    width: 100%;
    max-width: 350px;
    position: relative;
    text-align: center;
    z-index: 2;
    background: #fff;
}

.plantas .info-bottom .nav-plantas {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-left: 20px;
	position: relative;
	z-index: 2;
	background: #fff;
}

.plantas .aba-item:last-child {
	margin-bottom: 0;
}

.plantas .aba-item.ativa {
	border-right: 5px solid var(--Primary-Yellow, #FEA000);
background: var(--Primary-Yellow, #FEA000);
color: #fff;
}

.plantas .aba-item:hover {
	background: #005470;
}

.plantas .aba-item .nome {
color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Signika;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}

.plantas .aba-item svg.fechado {
	opacity: 1;
}

.plantas .aba-item svg.aberto {
	opacity: 0;
}

.plantas .info-topo .icons svg {
	transition: all .5s;
}

.plantas .aba-item.ativa svg.fechado {
	opacity: 0;
}

.plantas .aba-item.ativa svg.aberto {
	opacity: 1;
	transform: translateX(-27px);
}

.plantas .imagem-item {
	display: none;
}

.plantas .imagem-item.ativa {
	display: flex;
}

.plantas .imagem-item {
	height: 100%;
    transition: all .5s;
    justify-content: center;
	align-items: center;
    flex-direction: column;
		border-radius: 20px;
background: rgba(0, 84, 112, 0.04);
padding: 52px 33px;
}

.plantas .imagem-item img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    cursor: pointer;
    transition: all .5s;
}

.plantas .imagem-item img:hover {
	transform: scale(0.98);
}

.estagio-obra {
	padding: 84px 0;
}

#obras-imovel {
	    scroll-margin-top: 40px;
}

.estagio-obra .subtitulo {
	color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 14px */
}

.estagio-obra .info-top {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0 0 50px 0;
}

.estagio-obra h2 {
color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
white-space: nowrap;
}

.estagio-obra .info-top .linha {
border-bottom: 1.5px dashed #A39F9B;
    width: 100%;
}

.estagio-obra .info-top .nav-status {
	display: flex;
	align-items: center;
	gap: 8px;
}

.estagio-obra .galeria-status {
width: 50%;
}

.estagio-obra .flex {
	display: flex;
	justify-content: space-between;
	gap: 35px;
}

.slick-dots {
	bottom: -35px;
}

.slick-dots li button {
	border-radius: 100%;
    background: transparent;
}

.slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 1;
}

.slick-dots li.slick-active button {
background: #C4401C;
}

.slick-dots li button:before {
	color: #fff;
	font-family: 'slick';
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 19.5px;
    height: 20px;
    content: '•';
    text-align: center;
	opacity: 1;
}

.estagio-obra  .slick-dots {
	overflow: hidden;
}

 .estagio-obra .item-slide {
	overflow: hidden;
	position: relative;
	height: 450px;
	transition: all .5s;
	margin: 0 7px;
  }

  .estagio-obra .item-slide::before {
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 70%, rgba(0, 0, 0, 0.50) 100%);
content: '';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
opacity: 0;
transition: all .5s;
  }

    .estagio-obra .item-slide:hover::before {
	opacity: 1;
  }

    /* .estagio-obra .item-slide::after {
background: radial-gradient(148.65% 100% at 100% 0%, rgba(0, 0, 0, 0.00) 60.35%, rgba(0, 0, 0, 0.70) 100%);
content: '';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
opacity: 0;
transition: all .5s;
  } */

.estagio-obra .item-slide:hover::after{
    opacity: 0.7;
  }

  .estagio-obra .item-slide a:hover img {
	transform: scale(1.1);
  }

  .estagio-obra .item-slide img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	transition: all .5s;
  }

  .estagio-obra .item-slide .icon {
	border-radius: 100px;
	border: 1px solid var(--100, #FFF);
	background: transparent;
		position: absolute;
	right: 18px;
	top: 18px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
height: 52px;
opacity: 0;
transition: all .5s;
  }

  .estagio-obra .item-slide a:hover .icon {
	opacity: 1;
  }

  .estagio-obra .item-slide .legenda {
	color: var(--200, rgba(255, 255, 255, 0.70));
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 3;
	opacity: 0;
transition: all .5s;
  }

    .estagio-obra .item-slide a:hover .legenda {
	opacity: 1;
  }

.estagio-obra .all-status {
	display: flex;
	gap: 40px;
	justify-content: center;
}

.estagio-obra .all-status .linha {
width: 2px;
background: rgba(67, 66, 71, 0.10);
}

.estagio-obra .box-status {
    display: grid;
    gap: 47px 50px;
    grid-template-columns: repeat(3, 1fr);
    align-self: center;
    width: 50%;
}

.estagio-obra .all-status .item {
width: 100%;
    max-width: 165px;
	margin: 0 auto;
}

.estagio-obra .box-status p {
	color: var(--areia-500, #918C87);
text-align: center;
font-family: Outfit;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 100%; /* 20px */
margin-top: 20px;
}

.estagio-obra .all-status .status-maior .item {
    max-width: 275px;
}

.estagio-obra .all-status .item p {
color: var(--800, rgba(0, 0, 0, 0.60));
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 25.2px */
	margin-top: 20px;
}
  
  .estagio-obra  .circular-chart {
    display: block;
    margin: 0px auto;
    max-width: 125px;
  }
  
  .estagio-obra .circle-bg {
	fill: none;
	stroke: #eeeeee00;
  }
  
  .estagio-obra .circular-chart {
	    max-width: 150px;
  }
.estagio-obra .circle {
  fill: #fff;
    stroke-width: 3.5;
  stroke: #C4401C; 
  stroke-dasharray: 0 100; /* Estado inicial */
  transition: stroke-dasharray 2s ease-out;
}

.status-maior .circle {
    stroke: #C1BA38 !important;
}


.animated {
  animation: progress 5s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
  
  .estagio-obra .percentage {
    font-size: 0.4em;
    text-anchor: middle;
fill: var(--Primary-Dark, #918C87);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 30px */
  }


.estagio-obra .all-status .status-maior {
	align-self: center;
}

  .estagio-obra .all-status .status-maior .circular-chart  {
    display: block;
    max-width: 270px;
    width: 100%;
    max-height: 495px;
}

.banner-footer {
	/* background-attachment: fixed; */
background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
height: 350px;
}

.page-empreendimento .localizacao {
    position: relative;
padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

#localizacao-imovel {
	    scroll-margin-top: 40px;
}

.page-empreendimento .localizacao .subtitulo {
	color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 14px */
}

/* .page-empreendimento .localizacao .info-topo {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 55px;
} */

.page-empreendimento .localizacao .info-topo .linha {
	background-color: rgba(67, 66, 71, 0.1);
    width: 100%;
    height: 2px;
}

.page-empreendimento .localizacao {
	    /* -webkit-mask-image: url(../images/mask-localizacao.png);
    mask-image: url(../images/mask-localizacao.png);
    mask-repeat: no-repeat;
    mask-position: top right;
    mask-size: cover; */
}

.page-empreendimento .localizacao .iframe {
height: 420px;
    width: 100%;
	object-fit: cover;
}

.page-empreendimento .localizacao .iframe iframe {
height: 100%;
    width: 100%;
}

.page-empreendimento .localizacao .conteudo .right {
	width: 60%;
}

.page-empreendimento .localizacao .box-loc {
    position: relative;
    z-index: 2;
}

.page-empreendimento  h2 {
color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
letter-spacing: -1.08px;
margin-bottom: 30px;
}

.page-empreendimento .localizacao .conteudo {
	display: flex;
	align-items: center;
	gap: 50px;
	justify-content: space-between;
	background: #fff;
	padding: 50px;
}

.page-empreendimento .localizacao .box-loc h2::first-line,
.page-empreendimento .localizacao .box-loc h2 b {
	font-weight: 700;
}

.page-empreendimento .localizacao .conteudo .left {
max-width: 401px;
width: 100%;
}

.page-empreendimento .localizacao .box-loc .texto {
	margin: 120px 0 35px 0;
}

.page-empreendimento .localizacao .box-loc ul {
	list-style: disc;
	padding-left: 20px;
}

.page-empreendimento .localizacao .box-loc .texto p {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
}

.page-empreendimento .localizacao .box-loc .texto li {
	color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
}

.page-empreendimento .localizacao .endereco {
color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 46.8px */
text-transform: uppercase;
}

.page-empreendimento .localizacao .endereco span {
color: var(--terracota-400, #C4401C);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 15.6px */
letter-spacing: 5.76px;
text-transform: uppercase;
display: block;
margin-bottom: 13px;
}

.page-empreendimento .localizacao .botoes {
	display: flex;
	justify-content: end;
	margin-top: 32px;
	align-items: center;
	gap: 10px;
}

.page-empreendimento .localizacao .botoes span {
	color: #000;
text-align: right;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 19.6px */
}

.page-empreendimento .localizacao .botoes a {
	transition: all .5s;
	display: flex;
width: 48px;
height: 48px;
align-items: center;
border-radius: 1503.906px;
background: var(--areia-50, #F2F0ED);
justify-content: center;
}

.page-empreendimento .localizacao .botoes a:hover {
	background: #C4401C;
}

.page-empreendimento .localizacao .botoes a:hover path {
	fill: #fff;
}

.contato-single {
height: auto;
background: var(--base-0, #FFF);
    padding: 60px 0;
    position: relative;
	    margin-bottom: 60px;
    overflow: hidden;
}

.contato-single .conteudo {
	display: flex;
}

.contato-single .img-lateral,
.contato-single img {
	width: 35%;
	object-fit: cover;
	    height: 493px;
	object-position: center;
}

.contato-single .right {
	padding: 50px;
	background: var(--areia-50, #F2F0ED);
}

.contato-single .conteudo .info-topo {
	display: flex;
	align-items: end;
	    justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.contato-single .conteudo .info-topo .left {
	max-width: 345px;
	width: 100%;
}

.contato-single .conteudo .info-topo .subtitulo {
	margin-bottom: 22px;
	color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 14px */
}

.contato-single .conteudo .info-topo h2 {
color: var(--terracota-400, #C4401C);
leading-trim: both;
text-edge: cap;
margin: 0;
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
}

.contato-single .info-topo .botoes {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contato-single .info-topo .botoes .item {
	display: flex;
width: 48px;
height: 48px;
cursor: pointer;
transition: all .5s;
background: var(--base-0, #FFF);
justify-content: center;
align-items: center;
}

.contato-single .info-topo .botoes .item:hover {
background: #C4401C;
}

.contato-single .info-topo .botoes .item:hover path {
	fill: #fff;
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
    outline: none !important;
border: 1px solid rgba(67, 66, 71, 0.10) !important;
}

.contato-single .formpadrao .conteudo-form {
	display: flex;
}

.formpadrao .conteudo-form .left,
.formpadrao .conteudo-form .right {
	width: 50%;
	padding: 0 8px;
}

.formpadrao input, .formpadrao textarea, .formpadrao select{
	padding: 16px 16px;
background: var(--base-0, #FFF);
border: 1px solid rgba(67, 66, 71, 0);
    margin-bottom: 10px;
color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
width: 100%;
font-weight: 400;
line-height: 140%; /* 26.6px */
}

.formpadrao .top {
	display: flex;
	gap: 8px;
}

.formpadrao .top input {
	width: calc(100% - 16px);
}

/* .formpadrao input::placeholder, .formpadrao textarea::placeholder{

} */

.formpadrao textarea{
	height: 120px;
}

.formpadrao .form-bottom {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
	margin-top: 13px;
}

.formpadrao .politica {
	    display: flex;
    align-items: center;
    gap: 14px;
	  cursor: pointer;
  user-select: none;
}

.formpadrao .politica input[type="checkbox"] {
  display: none; /* Esconde o checkbox nativo */
}

.formpadrao .politica .checkmark {
  width: 20px;
  height: 20px;
border-radius: 4px;
border: 1px solid var(--areia-200, #DDD8D4);
background: var(--base-0, #FFF);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

/* Marca de seleção (check) */
.formpadrao .politica input[type="checkbox"]:checked + .checkmark::after {
content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #C4401C;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.formpadrao .politica input[type="checkbox"]  {
    width: 20px;
    height: 20px;
	margin-bottom: 0;
}

.formpadrao .politica span {
color: #918C87;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 13px */
    white-space: nowrap;
}

.formpadrao .politica span a {
	color: inherit;
	text-decoration: underline;
}

.formpadrao input.botao {
    width: fit-content;

    cursor: pointer;
    padding: 15px 30px;
background: var(--terracota-400, #C4401C);
color: #FFF;
border: 1px solid #C4401C;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 100%; /* 14px */
text-transform: uppercase;
letter-spacing: 1.4px;
    transition: all .5s;
	margin: 0;
}

.formpadrao input.botao:hover {
	background: transparent;
	color: #000;
}

.formpadrao .custom-select {
	position: relative;
      width: 100%;
}

.formpadrao .custom-select select {
      appearance: none; /* Remove o estilo padrão */
      -webkit-appearance: none;
      -moz-appearance: none;
      padding: 14px 24px;
border-radius: 8px;
border: 1px solid rgba(67, 66, 71, 0.10);
    background: transparent;
    margin-bottom: 20px;
    color: var(--Primary-Dark, #434247bf);
font-family: Exo;
font-size: 16px;
font-style: normal;
font-weight: 300;
    width: 100%;
line-height: normal;
background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 6L9 1' stroke='%23434247c2' stroke-width='1'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      cursor: pointer;
    }


/* CONTATO */
.topo-contato {
padding: 85px 0;
    background-size: cover;
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background-position: 50%;
}

.topo-contato::before {
    position: absolute;
    z-index: 4;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    pointer-events: none;
    mix-blend-mode: multiply;
    background: linear-gradient(264deg, rgba(0, 84, 112, 0.00) 32.29%, rgba(0, 84, 112, 0.80) 82.71%);
}

.topo-contato::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    pointer-events: none;
    height: 100%;
    content: "";
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
}

.topo-contato .infos {
	position: relative;
	z-index: 4;
	max-width: 640px;
}

.topo-contato .infos {
	color: var(--100, #FFF);
	text-align: start;
	leading-trim: both;
	text-edge: cap;
	font-family: Signika;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 3.2px;
	text-transform: uppercase;
}

.topo-contato .infos h1 {
	color: var(--100, #FFF);
	leading-trim: both;
	text-edge: cap;
	font-family: Signika;
	font-size: 70px;
	font-style: normal;
	font-weight: 700;
	line-height: 90%;
	text-transform: uppercase;
	margin-top: 15px;
}

.topo-contato .infos h1::first-line {
	font-weight: 300;
}

.pagecontato-sc {
	padding: 60px 0px 60px 0;
	background: #F2F0ED;
} 

.pagecontato-sc .right {
	background: #fff;
}

.pagecontato-sc .formpadrao input.botao {
	background: #C4401C;
}

.pagecontato-sc .formpadrao input.botao:hover {
    background: transparent;
}

.pagecontato-sc .formpadrao input.botao:hover {
	color: #C4401C;
	border-color: #C4401C;
}

.pagecontato-sc .formpadrao input, .pagecontato-sc .formpadrao textarea, .pagecontato-sc .formpadrao select {
	    background: var(--areia-50, #F2F0ED);
}

.pagecontato-sc .box {
background: var(--brand-black, #211915);
    padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pagecontato-sc h3 {
	color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
margin-bottom: 20px;
line-height: 100%; /* 14px */
}

.pagecontato-sc h2 {
	color: var(--areia-200, #DDD8D4);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
}

.pagecontato-sc .botoes {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
}

.pagecontato-sc .botoes .item {
	background: var(--areia-200, #DDD8D4);
	display: flex;
width: 48px;
height: 48px;
cursor: pointer;
justify-content: center;
transition: all .5s;
align-items: center;
}

.pagecontato-sc .botoes .item:hover {
	background: #C4401C;
}

.pagecontato-sc .botoes .item:hover path {
	fill: #DDD8D4;
}

.secao-contato .conteudo {
	    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.secao-contato .contatos-form .item {
	margin-bottom: 18px;
	cursor: pointer;
	display: block;
	transition: all .5s;
}

.secao-contato .contatos-form .item:hover {
	transform: translateX(10px);
}

.secao-contato .contatos-form .item:last-child {
	margin-bottom: 0;
}

.secao-contato .contatos-form .item span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3px;
    color: rgb(67 66 71);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4.6px;
    width: fit-content;
    text-transform: uppercase;
}

.secao-contato .contatos-form .item .icon {
	    background: #434247;
    width: 30px;
    height: 30px;
    display: flex;
	border-radius: 200px;
    align-items: center;
    justify-content: center;
}

.secao-contato .contatos-form .item p {
	    color: #434247;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
}

.secao-contato.contato-single .conteudo .info-topo {
    flex-direction: column;
    align-items: start;
    margin: 0;
}

.contato-single.secao-contato .formpadrao .conteudo-form .left, .contato-single.secao-contato .formpadrao .conteudo-form .right {
    width: 100%;
    padding: 0;
}

.formpadrao .conteudo-form {
display: block;
}

.secao-contato .formpadrao .conteudo-form {
display: block;
}

.pg-contato {
	min-height: 85vh;
	padding: 100px 0 55px 0;
	background-size: cover;
	display: flex;
	align-items: end;
}

.pg-contato h1 {
color: var(--areia-50, #F2F0ED);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
}
.mapa-contato {
    position: relative;
    padding: 60px 0;
	background: #fff;
}

.mapa-contato .container {
	max-width: 1340px;
	justify-content: center;
	display: flex;
	align-items: center;
}

.mapa-contato iframe {
    width: 100%;
    height: 420px;
}

.mapa-contato .right {
	    max-width: 880px;
		width: 100%;
}

.mapa-contato .conteudo {
    display: flex;
	flex-direction: column;
	height: stretch;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    margin-right: 60px;
	max-width: 485px;
	    width: auto;
    z-index: 3;
padding: 30px 0;
}

.mapa-contato .botoes {
    display: flex;
    justify-content: end;
    margin-top: 32px;
    align-items: center;
    gap: 10px;
}

.mapa-contato .botoes span {
    color: rgb(0, 0, 0);
    text-align: right;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.mapa-contato .botoes a {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border-radius: 1503.91px;
    background: var(--areia-50, #F2F0ED);
}

.mapa-contato .botoes a:hover {
    background: rgb(196, 64, 28);
}

.mapa-contato .botoes a:hover path {
    fill: #fff;
}

.mapa-contato .info-topo {
	display: flex;
	align-items: center;
	gap: 32px;
}

.mapa-contato .info-topo h2 {
	color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 300;
line-height: 100%; /* 36px */
white-space: nowrap;
letter-spacing: -1.08px;
}

.mapa-contato .info-topo .linha {
	width: 100%;
    border-bottom: 1.5px dashed rgb(163, 159, 155);
}

.mapa-contato .conteudo .endereco span {
color: var(--terracota-400, #C4401C);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 15.6px */
letter-spacing: 5.76px;
text-transform: uppercase;
}

.mapa-contato .conteudo .endereco p {
color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 29px;
margin-top: 15px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 46.8px */
text-transform: uppercase;
}

.mapa-contato .conteudo .botoes {
	    display: flex;
    align-items: center;
    gap: 10px;
	flex-wrap: wrap;
}

.mapa-contato .conteudo .botao:hover path {
	fill: #fff;
}

.mapa-contato.mapa2 {
	padding-top: 0px;
margin: 0px 0 60px 0;
}

.mapa-contato .canais .horarios p {
    color: #543d36;
    leading-trim: both;
    text-edge: cap;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 120%;
	margin-bottom: 5px;
}

.mapa-contato .canais a {
	    color: #674c44;
    leading-trim: both;
    text-edge: cap;
    font-family: Outfit;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
	margin-bottom: 5px;
	transition: all .5s;
	margin: 15px 0;
	display: block;
	width: fit-content;
}

.mapa-contato .canais a:last-child {
	margin: 0;
}

.mapa-contato .canais a:hover {
	transform: translateX(10px);
}

.trabalheconosco input::placeholder, .trabalheconosco select::placeholder, .trabalheconosco textarea::placeholder {
    color: var(--areia-500, #918C87);
    leading-trim: both;
    text-edge: cap;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.upload-curriculo label {
	color: var(--areia-500, #918C87);
    leading-trim: both;
    text-edge: cap;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    width: 100%;
    font-weight: 400;
    line-height: 140%;
}


.upload-curriculo input {
	cursor: pointer;
}

/* FOOTER */
footer {
	position: relative;
	padding-top: 75px;
	overflow: hidden;
}

footer .footer {
	background: var(--brand-black, #211915);
	padding: 64px 0;
	position: relative;
	z-index: 3;
}

.vetor-footer {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 50%;
width: 1486px;
    margin: 0 auto;
    transform: translateX(-50%);
	pointer-events: none;
}

footer .info-topo {
	display: flex;
	align-items: center;
	gap: 40px;
	justify-content: space-between;
}

footer .botao-duplo a.botao {
    border-color: rgba(67, 66, 71, 0.10);
    color: #434247;
    width: 170px;
}

footer .botao-duplo a.botao:hover {
color: #fff;
}

footer .botao-duplo a.botao:hover svg path {
    stroke: #fff;
}

footer .info-topo .linha {
	    background-color: rgba(67, 66, 71, 0.1);
    width: 100%;
    height: 1.4px;
}

footer .info-topo .item {
	width: fit-content;
	text-align: center;
}

footer .info-topo .item span {
color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 6px;
text-transform: uppercase;
}

footer .info-topo .item div {
display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    margin-top: 15px;
}

footer .info-topo .item a {
    transition: all .5s;
}

footer .info-topo .item a:hover svg {
	transform: scale(1.1);
}

footer .info-topo .item a:hover path {
	fill: #C4401C;
}

footer .linha-meio {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 55px auto;
	gap: 10px;
}

footer .linha-meio .linha {
	background: #FFF;
	width: 100%;
	height: 1px;
}

footer .meio {
display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

footer .meio .item {

}

footer .meio .item h3 {
	color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 16.8px */
letter-spacing: 6px;
margin-bottom: 15px;
text-transform: uppercase;
}

footer .meio .item p {
	color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
margin-bottom: 8px;
}

footer .meio .item a {
	color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
display: flex;
align-items: center;
gap: 10px;
transition: all .5s;
line-height: 160%; /* 25.6px */
}

footer .meio .item a:hover {
	transform: translateX(10px);
}

footer .meio .item .interno {
	margin-top: 50px;
}

footer .meio .item.atendimento a {
color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
gap: 16px;
margin-bottom: 15px;
}

footer .meio .left .endereco {
	display: flex;
	align-items: center;
	gap: 20px;
}

footer .meio .left p,
footer .meio .left a {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--Primary-Dark, #434247);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 120%; /* 19.2px */
}

footer .meio .left .linha {
width: 1.5px;
height: 26px;
background: rgba(67, 66, 71, 0.10);
}

footer .meio .left span {
	color: var(--Primary-Dark, #434247);
leading-trim: both;
text-edge: cap;
font-family: Exo;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 120%; /* 16.8px */
}

footer .meio .linha {
	background: rgba(67, 66, 71, 0.10);
	width: 1px;
}

footer .links {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

footer .info-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 55px;
	gap: 20px;
}

footer .info-bottom p {
color: #FFF;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
width: fit-content;
}

/* BARRAFIXA */
.barrafixa{
flex-direction: column;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    position: fixed;
    overflow: hidden;
    align-items: center;
    z-index: 30;
background: var(--terracota-900, #82655C);
}

.barrafixa .item {
display: flex;
border-top: 1px solid #fff;
    width: 52px;
    justify-content: center;
    height: 52px;
    transition: all .5s;
    align-self: normal;
    align-items: center;
    cursor: pointer;
}

.barrafixa .item.main {
    padding: 10px 6px;
    cursor: default;
	background: #fff;
}

.barrafixa .item.main:hover {
	background: #fff;
}

.barrafixa .item.main:hover svg {
	transform: none;
}
.barrafixa .item:hover svg {
transform: scale(1.5);
}
.barrafixa .item:hover {
	background: #C4401C;
}


/* MODAIS */
.modal-contato {
border-radius: 0px !important;
    max-width: 672px !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
	background: #fff !important;
}

.modal-contato .numero {
	margin-top: 15px;
	background: var(--areia-500, #918C87);
	padding: 15px 25px;
	width: 100%;
}

.modal-contato .numero span {
	color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 16.8px */
}

.modal-contato .numero a {
	display: block;
	width: fit-content;
	color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 24px */
margin-top: 5px;
transition: all .5s;
}

.modal-contato .numero a:hover {
	transform: translateX(10px);
}

.modal-contato.pequeno {
	max-width: 410px !important;
}

.fancybox__slide .modal-contato  .f-button[data-fancybox-close] {
right: 20px !important;
    top: 20px !important;
	    background: transparent !important;
    border-color: #A39F9B !important;
	transition: all .4s;
    border-radius: 100px !important;
	color: #A39F9B !important;
}

.fancybox__slide .modal-contato  .f-button[data-fancybox-close]:hover {
	background: #A39F9B !important;
	color: #fff !important;
}

.modal-contato .conteudo {
	padding: 50px 35px;
}

.modal-contato .conteudo .info-topo {
	display: flex;
    align-items: center;
	gap: 13px;
}

.modal-contato .info-topo .icon {
	height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-contato .info-topo h4 {
color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 100%; /* 18px */
}

.modal-contato .info-topo h4 span {
color: var(--terracota-400, #C4401C);
font-family: Outfit;
font-size: 28px;
font-style: normal;
font-weight: 300;
line-height: 100%;
display: block;
margin-top: 1px;
}

.modal-contato p.texto {
color: var(--areia-500, #918C87);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 19.2px */
margin: 35px 0;
}

.modal-contato  input,
.modal-contato  textarea,
.modal-contato  select {
	border: 1px solid #82655C;
}

.modal-contato .info-form {
	margin-top: 30px;
}

.modal-contato form {
	width: 100%;
}

.modal-contato .conteudo-form {
	    display: flex;
}

.modal-contato  .left,
.modal-contato  .right {
	padding: 0 5px;
	width: 50%;
}

.modal-contato.pequeno .form-bottom {
flex-direction: column;
    gap: 15px;
}

.modal-contato.pequeno input.botao {
	width: 100%;
}

.modal-contato  textarea {
    height: 116px;
}

.modal-contato .formpadrao .politica span {
max-width: 298px;
white-space: normal;
}

.modal-contato .formpadrao .politica span {
	font-weight: 700;
}

.modal-contato .politica .checkmark {
border-color: #C4401C;
    border-radius: 0;
}

.modal-contato .fancybox-close-small {
	right: 0 !important;
	top: 0 !important;
}

.modal-contato .fancybox-close-small {
border-radius: 8px 8px 0px 8px !important;
    border-right: 5px solid var(--Primary-Yellow, #FEA000) !important;
    background: var(--Blue-03, #00829A) !important;
    color: #fff !important;
    width: 60px !important;
    height: 42px !important;
    opacity: 1 !important;
	transition: all .5s !important;
}

.modal-contato .fancybox-close-small:hover {
opacity: .5 !important;
}

/* PAGE PADRÃO */
.secao-padrao {
	padding: 110px 0 70px 0;
}

.secao-padrao h1 {
color: var(--terracota-400, #C4401C);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: 100%; /* 36px */
margin-bottom: 30px;
}

.secao-padrao .conteudo h2,
.secao-padrao .conteudo h3,
.secao-padrao .conteudo h4,
.secao-padrao .conteudo h5,
.secao-padrao .conteudo h6 {
color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 27px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 19.2px */
	margin: 25px 0 20px 0;
}

.secao-padrao .conteudo p,
.secao-padrao .conteudo li {
color: var(--areia-500, #918C87);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 19.2px */
margin-bottom: 15px;
}

.secao-padrao .conteudo li {
	margin-bottom: 10px;
}

.secao-padrao .conteudo ul {
	padding-left: 23px;
	list-style: disc;
}


.page-padrao {
	min-height: 80vh;
	padding: 100px 0 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center
}

.page-padrao.erro404 h1 {
    color: var(--terracota-900, #82655C);
    font-family: Outfit;
    font-size: 150px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
	text-align: center;
	text-transform: uppercase;
}


.page-padrao.obrigado h1 {
	    color: var(--terracota-900, #82655C);
    font-family: Outfit;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
	text-align: center;
	text-transform: uppercase;
}

.page-padrao .descricao {
color: var(--areia-400, #A39F9B);
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
text-align: center;
line-height: 160%; /* 25.6px */
margin: 35px auto;
}

.page-padrao .botao {
    margin: 0 auto;
	background: #C4401C;
	border-color: #C4401C;
	color: #fff;
}

.page-padrao .botao:hover {
	background: transparent;
	color: #C4401C;
	border-color: #C4401C;
}

.page-template-template-corretor label {
	    color: rgba(67, 66, 71, 0.70);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.page-template-template-corretor p {
	    color: rgba(67, 66, 71, 0.70);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
	    margin-bottom: 10px;
}

.page-template-template-corretor .custom-select select {
	    font-weight: 600;
		background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 6L9 1' stroke='%23434247c2' stroke-width='2'/%3E%3C/svg%3E");
}

.page-template-template-corretor .aba label.tipo_parceiro {
	margin-bottom: 15px;
}

.page-template-template-corretor .aba label input {
	margin: 0;
	width: fit-content;
}

.page-template-template-corretor .aba label.last-label {
	margin-bottom: 20px;
}

.page-template-template-corretor #form_bottom {
	align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 0;
}

@media (max-width: 1060px) {
.nav-imovel nav a {
	font-size: 15px;
}
}

@media (max-width: 1199px) and (min-width: 991px) {

	header .logo img {
max-width: 180px;

	}
	header .wrapper-header ul {
		gap: 15px;
	}

header .barra-search input,
header .barra-search input::placeholder,
header .barra-search .search-filter-input-button {
	font-size: 13px !important;
}

.botao-duplo a.botao {
	font-size: 13px;
    padding: 13px 20px;
}

header .barra-search.active {
	width: 350px;
}
}

@media (max-width: 1190px) {
.nav-imovel .left .estagio {
	display: none;
}
}

@media (max-width: 991px){
/* GERAL */
.site-main {
	background-image: none;
}

.secao-black .infos h2 {
	max-width: 350px;
    margin: 0 auto;
}

.secao-black .infos h1 {
	font-size: 35px;
}

/* HEADER */
header {
    padding: 0 0;
}

header .logo svg {
	height: auto;
	width: 85px;
}

header .barra-search {
    opacity: 0;
    background-color: #434247;
    width: 90%;
    max-width: 700px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
}

header.header-menor {
	padding: 0;
}

header .container {
	padding: 15px 22px;
	transition: all .5s;
}

header .btn-menu {
	display: flex !important;
}

.submenu {
	    padding: 45px 0 !important;
		        min-height: 100vh;
        height: 100vh;
}

.fancybox__slide .f-button[data-fancybox-close] {
	top: 20px !important;
    right: 20px !important;
}

.submenu .logo-submenu {
	    max-width: 150px;
		        margin-bottom: 10px;
				height: auto;
}

.submenu .botao-duplo {
	padding: 0 15px;
}

.submenu .info-topo .linha {
	    top: -23px;
}

.submenu .botao-duplo a.botao {
	    font-size: 12px;
		width: 140px;
		        padding: 15px;
}

.submenu .botao-duplo a.botao svg {
	height: 15px;
}

.submenu .info-meio {
	flex-direction: column;
    gap: 0;
}

.submenu .info-meio .left,
.submenu .info-meio .linha,
.submenu .info-bottom .linha {
   display: none;
}

.submenu .info-meio .right {
width: 100%;
    max-width: 400px;
    padding: 0;
    margin: 0 auto;
}

.submenu .info-meio .right ul {
	align-items: center;
    gap: 10px;
}

.submenu .info-meio .right ul li a::before {
	bottom: -2px;
}

.submenu .info-bottom {
	flex-direction: column;
	gap: 20px;
}

/* HOME */
	.home-slide-wrapper .item-slide-home {
padding: 85px 0 80px 0;
        height: 95vh;
	}

.home-slide-wrapper .item-slide-home::before {
	height: 370px;
}

	.home-slide-wrapper .slide-imagem {
		    mask-position: top left;
	}

.home-slide-wrapper .conteudo-slide h2 {
	font-size: 20px;
}

.home-slide-wrapper .conteudo-slide .itens {
	flex-direction: column;
	gap: 10px;
}

.home-slide-wrapper .right {
	display: none !important;
}

.home-slide-wrapper .conteudo-slide .botao {
margin: 30px auto 0 auto;
}

.home-slide-wrapper .conteudo-slide {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.nav-slidehome .slick-dots {
	justify-content: center;
    bottom: -45px;
}

.home-slide-wrapper .conteudo-slide .right,
.home-slide-wrapper .conteudo-slide .left {
	    width: 100%;
}

.home-slide-wrapper .conteudo-slide .titulo-imovel {
	font-size: 38px;
}

.nav-slidehome {
        justify-content: center;
        margin: -45px auto 45px auto;
        top: -20px;
}

.imoveis-home {
	padding: 70px 0;
}

.imoveis-home .subtitulo {
	margin: 0 auto;
}

.imoveis-home h2 {
font-size: 30px;
white-space: normal;
}

.imoveis-home .info-bottom .botao {
	    width: 100%;
}

.grid-slide {
	grid-template-columns: repeat(1, 1fr);
}

.imoveis-home .info-topo {
        margin-bottom: 35px;
        flex-direction: column;
        align-items: center;
}

.imoveis-home .info-topo .custom-select select {
	width: 214px;
}

.imoveis-home .info-topo .linha-brand {
	display: none;
}

.card-imovel .card-interno {
	height: 450px;
}

.card-imovel .infos h2 {
font-size: 26px;
-webkit-line-clamp: 2;
}

.card-imovel .destaques {
	opacity: 1;
}

.card-imovel .infos {
height: auto;
    max-width: 100%;
    width: 100%;
}

.card-imovel .card-interno .infos .destaques {
	opacity: 1;
}

.card-imovel .card-interno:hover .infos {
		height: auto;
}

.imoveis-home .nav-imoveis {
display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.imoveis-home .info-bottom {
	gap: 18px;
	flex-direction: column;
}

.imoveis-home .info-bottom .linha {
	width: 100%;
}

.sobre-home {
    padding: 00px 0 60px 0;
	display: block;
	        height: auto;
}

.sobre-home .imgquanta {
	position: static;
	transform: none;
	max-width: 100%;
	min-width: auto;
	margin: 0 auto;
	width: 93%;
	height: auto;
	display: block;
}

.diferenciais-home {
	padding: 40px 0 70px 0;
	margin: 60px 0;
        display: block;
        height: auto;
 background-image: url(../images/banner3e.webp);
background-size: cover;
background-position: center;
}

.diferenciais-home .container {
	    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.diferenciais-home .logo-3e {
	    max-width: 110px;
    margin: 0 auto;
    display: block;
    align-self: center;
}

.diferenciais-home .box {
	margin: 0 auto;
    padding: 30px;
}

.diferenciais-home h3 {
	font-size: 18px;
}

.diferenciais-home h2 {
	color: var(--terracota-900, #fff);
font-family: Outfit;
font-size: 24px;
font-style: normal;
font-weight: 200;
line-height: 110%; /* 26.4px */
}

.diferenciais-home .bottom {
	flex-direction: column;
	gap: 20px;
}

.diferenciais-home .bottom .linha {
	width: 100%;
}

.diferenciais-home .bottom .botao {
	width: 100%;
}

.sobre-home .box {
	margin: 0 auto;
    padding: 30px;
}

.sobre-home h3 {
	font-size: 18px;
}

.sobre-home h2 {
	color: var(--terracota-900, #82655C);
font-family: Outfit;
font-size: 24px;
font-style: normal;
font-weight: 200;
line-height: 110%; /* 26.4px */
}

.sobre-home .bottom {
	flex-direction: column;
	gap: 20px;
}

.sobre-home .bottom .linha {
	width: 100%;
}

.sobre-home .bottom .botao {
	width: 100%;
}



.feed h2 {
        font-size: 25px;
        max-width: 290px;
}

.sobre-home .numeros .item-contador p {
	font-size: 14px;
}

.sobre-home .mask-sobre {
        -webkit-mask-image: url(../images/mask-sobre.png);
        mask-image: url(../images/mask-sobre.png);
        mask-repeat: no-repeat;
        mask-position: center top;
        mask-size: cover;
        width: 100%;
		margin: 60px auto 0 auto;
        height: 100%;
}

.sobre-home .mask-sobre img {
	    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* PÁGINA SOBRE */
.topo-sobre {
	position: relative;
	min-height: 90vh;
}

.topo-sobre .container {
	position: relative;
	z-index: 2;
}

.topo-sobre::after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 80%);
	top: 0;
}

.topo-sobre h3 {
	color: var(--base-0, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
letter-spacing: 2.4px;
}

.topo-sobre h1 {
	font-size: 24px;
}

.pg-sobre {
	padding: 60px 0;
}

.pg-sobre .logo {
	width: 160px;
	height: auto;
}

.pg-sobre .texto {
	margin-bottom: 50px;
}

.slide-sobre {
	height: auto;
	flex-direction: column-reverse;
	gap: 70px;
	padding: 50px 0;
}

.slide-sobre .carrossel-sobre {
	position: relative;
	height: auto;
    width: 93%;
    margin: 0 auto;
	transform: none;
			top: auto;
		left: auto;
		right: auto;
}

.slide-sobre .box {
	padding: 30px;
    width: 100%;
    margin: 0 auto;
	transform: none;
}

.slide-sobre .box h2 {
	font-size: 32px;
}

.slide-sobre .box::after {
	display: none;
}
.slide-sobre .item-slide {
	height: 260px;
}

.secao-3e {
	padding: 40px 0;
	    margin-top: 80px;
		display: block;
}

.secao-3e .topo {
	    flex-direction: column;
    align-items: start;
	margin-bottom: 40px;
    gap: 28px;
}

.secao-3e .box {
	padding: 30px;
    margin: 0 auto;
}

.secao-3e .box h3 {
	font-size: 24px;
	margin-bottom: 27px;
}

.secao-3e .topo svg {
	height: 65px;
	width: auto;
}

.secao-3e .topo h2 {
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-family: Outfit;
	font-size: 32px;
	font-style: normal;
	font-weight: 200;
	line-height: 100%; /* 32px */
}

.page-template-template-sobre .sobre-home {
	height: auto;
}

.video-sobre .item-video {
	height: 400px;
}

.mvv-sobre {
	padding: 40px 0;
}

.mvv-sobre .grid {
	    grid-template-columns: repeat(1, 1fr);
		gap: 50px;
}

.mvv-sobre .grid h3 {
	color: var(--areia-50, #F2F0ED);
font-family: Outfit;
font-size: 36px;
font-style: normal;
    margin-bottom: 20px;
    padding-bottom: 20px;

font-weight: 200;
line-height: 110%; /* 39.6px */
}

.mvv-sobre .grid h3 svg {
	height: 44px;
	width: auto;
}

.mvv-sobre .info-topo h2 {
	font-size: 35px;
}

.mvv-sobre .linha-brand {
	margin-bottom: 10px;
}

.mvv-sobre .conteudo {
    flex-direction: column;
    gap: 10px;
	    margin-top: 40px;
}

.mvv-sobre .conteudo .box {
	align-items: center;
    justify-content: center;
    height: auto;
	        padding: 40px 25px;
}

.mvv-sobre .conteudo .box h5 {
	font-size: 30px;
    margin: 20px auto;
}

.mvv-sobre .conteudo .box .texto p {
	text-align: center;
}

.mvv-sobre .conteudo > img{
	max-width: 500px;
    width: 100%;
    margin: 0 auto;
	        order: 2;
}

	 .secoes-sobre .row > div {
		margin-bottom: 20px;
	 }

	.secoes-sobre .row.row-valores {
		    margin-top: -17px;
	 }
	
	.secoes-sobre .box-conteudo {
		padding: 40px 20px;
	}

	.secoes-sobre .box-conteudo h2 {
		font-size: 35px;
    max-width: 350px;
	font-size: 35px;
    max-width: 350px;
    margin: 20px 0;
	}

.secoes-sobre .box-img {
	height: 400px;
}

.secoes-sobre .box-conteudo-azul {
	padding: 40px 20px;
}

.secoes-sobre .interno {
	    padding-left: 20px;
}

.secoes-sobre .box-conteudo-azul h4,
.secoes-sobre .box-conteudo .politica h4 {
	font-size: 35px;
}

.secoes-sobre .box-conteudo-azul .itens {
	    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.secoes-sobre .box-conteudo-azul .item-valores {
	flex-direction: column;
    align-items: start;
    gap: 10px;
}

.secoes-sobre .box-conteudo-azul .item-valores p br {
	display: none;
}

/* BLOG */
	.topo-blog h1 {
font-size: 35px;
    max-width: 400px;
}

.mais-posts .grid-posts {
	    grid-template-columns: repeat(2, 1fr);
}

/* SINGLE BLOG */
.single-post .topo-blog h1 {
	font-size: 35px;
    max-width: 100%;
}

.single-post .conteudo-blog .content-single h2 {
	font-size: 28px;
}

.single-post .compartilhe .info {
	flex-direction: column;
        justify-content: center;
        align-items: center;
}

.single-post .compartilhe .info p {
	text-align: center;
}


/* EMPREENDIMENTOS */
.topo-empreendimentos h1 {
	    font-size: 38px;
    max-width: 350px;
}

.content-empreendimentos .infos-topo h3 {
	font-size: 30px;
}

.content-empreendimentos .infos-topo {
	    flex-direction: column;
		        gap: 20px;
}

.content-empreendimentos .grid {
	    grid-template-columns: repeat(2, 1fr);
}

.topo-estagio h1 {
	    font-size: 30px;
}

/* SINGLE EMPREENDIMENTO */

.topo-single {
	min-height: 95vh;
}
.topo-single p.titulo-imovel {
	    font-size: 45px;
}

.nav-imovel {
	display: none;
}

.sobre-imovel {
	padding: 60px 0;
}

.sobre-imovel .imagenm-mob {
	display: block;
	border-radius: 12px;
	height: 400px;
	width: 100%;
	object-position: center;
	object-fit: cover;
}

.sobre-imovel h2 {
	margin-bottom: 20px;
}

.sobre-imovel .descricao {
	margin-bottom: 20px;
}

.sobre-imovel .conteudo {
	display: block;
}

.sobre-imovel .box-sobre-imovel {
	width: 100%;
	max-width: 100%;
}

.sobre-imovel .imagem-lateral {
	width: 100%;
}
.diferenciais .slide-diferenciais .slick-list {
	overflow: hidden;
}

.diferenciais .slide-diferenciais .slick-list::before {
	display: none;
}

.diferenciais .info-bottom {
	margin: 30px 0 40px 0;
}

.secao-videos {
	    padding: 60px 0;
}

.secao-videos .conteudo {
flex-direction: column;
gap: 30px;
}

.secao-videos .slide-videos {
	    width: 100%;
}

.secao-videos .item-video {
	height: 330px;
}

.secao-videos .nav-videos.show-mob {
    display: flex;
    align-items: center;
	justify-content: center;
	margin-top: 20px;
    gap: 8px;
}

#fichatecnica-imovel {
	padding: 40px 0;
}

#fichatecnica-imovel .nav-tipos {
	  flex-wrap: wrap;
}

#fichatecnica-imovel .nav-tipos .botao {
        font-size: 12px;
        padding: 15px 10px;
}

#fichatecnica-imovel .slide-fichas {
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
}

#fichatecnica-imovel .slide-fichas .item span {
	line-height: 120%;
	margin-top: 7px;
}

#fichatecnica-imovel .nav-fichas {
	justify-content: center;
}

#fichatecnica-imovel .conteudo {
	margin-bottom:  30px;
}

.plantas {
	    background-position: right center;
    padding: 30px 0;
}

.plantas .conteudo {
padding: 0px 0px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}

.plantas .conteudo .abas {
	width: 100%;
}

.plantas .conteudo .abas .aba {
	width: 100%;
}

.plantas .info-bottom::after {
	    bottom: 25px;
}

.plantas .abas-lista .conteudo {
	    padding: 40px 20px;
}

.plantas .info-topo {
	flex-direction: column;
}

.plantas .item-slide {
	max-width: 380px;
}

.plantas .item-slide h4 {
	    letter-spacing: 5px;
    font-size: 15px;
}

.plantas .info-bottom {
	    flex-direction: column;
    gap: 20px;
}

.plantas .info-bottom .hidden {
	display: none;
}

.plantas .select-wrapper {
	display: block;
    margin: 20px auto 0 auto;
    float: none;
    padding: 0;
	text-align: center;
        top: auto;
        width: fit-content;
}

.plantas .info-bottom .descricao-tipo {
	white-space: normal;
    text-align: center;
}

.plantas .info-bottom .nav-plantas,
.plantas .info-bottom .select-wrapper {
	padding: 0;
	margin: 0 auto;
}

.plantas .select-wrapper::after {
	right: 15px;
}

.plantas h2{
	font-size: 35px;
	margin: 0;
}

.plantas .imagem-item {
	margin-top: 30px;
}

#fichatecnica-imovel .info-topo {
	flex-direction: column;
    align-items: start;
	margin-bottom: 40px;
}

#fichatecnica-imovel h3 {
	font-size: 30px;
}

.estagio-obra {
	padding: 50px 0;
}

.estagio-obra .subtitulo {

}

.estagio-obra .info-top {
        margin: 7px 0 30px 0;
}

.estagio-obra h2 {
    font-size: 30px;
    max-width: 450px;
	        white-space: normal;
	margin: 0;
}

.estagio-obra .flex {
	    flex-direction: column;
}

.estagio-obra .galeria-status {
	width: 100%;
}

.estagio-obra .show-mob .nav-status {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
	margin-bottom: 40px;
}

.estagio-obra .all-status {
	flex-direction: column;
    gap: 30px;
}

.estagio-obra .all-status .status-maior .circular-chart{
	max-width: 200px;
}

.estagio-obra .all-status .item p {
	font-size: 16px;
	margin-top: 10px;
}

.estagio-obra .box-status {
	    grid-template-columns: repeat(2, 1fr);
		max-width: 400px;
		        gap: 30px;
		width: 100%;
}

.estagio-obra .box-status-pd {
	padding: 0;
	margin-top: 50px;
}

.estagio-obra .box-status-pd .item {
	flex-direction: column;
    gap: 10px;
}

.estagio-obra .item-slide {
	height: 320px;
}

.estagio-obra .nav-status {
	margin: 30px auto 0 auto;
	justify-content: center;
}

.banner-footer {
	height: 50vh;
}

.page-empreendimento .localizacao {
min-height: auto;
    height: auto;
    flex-direction: column-reverse;
    gap: 50px;
}

.page-empreendimento .localizacao .iframe {
	height: 400px;
    width: 100%;
    position: static;
    mask-image: none;
    -webkit-mask-image: none;
}

.page-empreendimento .localizacao .conteudo {
	flex-direction: column;
    padding: 30px;
    gap: 40px;
}


.page-empreendimento .localizacao .iframe iframe {
height: 100%;
    width: 100%;
}

.page-empreendimento .localizacao .box-loc {
	margin: 0;
    padding: 0;
    transform: none;
    position: static;
    max-width: 4100%;
    border-radius: 0;
    background: none;
}

.page-empreendimento .localizacao h2 {
    margin: 7px 0 0 0;
    font-size: 35px;
}

.page-empreendimento .localizacao .texto {
	    line-height: 110%;
		    max-width: 450px;
			    margin: 30px 0 !important;

}

.page-empreendimento .localizacao .conteudo .right {
	width: 100%;
}

.page-empreendimento .localizacao .endereco{
	font-size: 25px;
}

.page-empreendimento .localizacao .botoes {
        flex-wrap: wrap;
		justify-content: start;
align-items: center;
}

.page-empreendimento .localizacao .botoes span br {
	display: none;
}

.contato-single {
	padding: 60px 0;
	height: auto;
}

.contato-single .conteudo {
width: 100%;
        padding: 0;
        margin: 0 auto;
		    display: block;
}

.contato-single .right {
	padding: 30px;
}

.contato-single .conteudo .info-topo .subtitulo {
	text-align: center;
	margin-bottom: 10px;
}

.contato-single .img-lateral,
.contato-single img {
	height: 350px;
	width: 100%;
}

.contato-single .conteudo .info-topo {
	display: block;
}

.contato-single h3 {
	margin: 0 auto;
}

.contato-single .left .infos h3 {
	margin: 0 auto;
}

.contato-single .conteudo .info-topo h2 {
margin: 0px auto;
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
}

.contato-single .conteudo .info-topo .left {
	max-width: 500px;
	margin: 0 auto;
}

.contato-single .conteudo .info-topo .texto {
	text-align: center;
    margin: 0 auto 30px auto;
    max-width: 350px;
}

.contato-single .info-topo .botoes {
flex-direction: row;
    justify-content: center;
}

.formpadrao .conteudo-form {
    flex-direction: column;
}

.formpadrao .conteudo-form .left, .formpadrao .conteudo-form .right {
	width: 100%;
    padding: 0;
}

.formpadrao input, .formpadrao textarea,  .formpadrao select{
	font-size: 14px;
}

.formpadrao .top {
	    display: block;
}

.formpadrao .top input {
	width: 100%;
}

.formpadrao textarea {
	    height: 100px;
}

.formpadrao .form-bottom {
	margin-top: 0;
	align-items: start;
	flex-direction: column;
	        gap: 20px;
}

.formpadrao .politica span {
	font-size: 12px;
}

.formpadrao .politica span br {
	display: none;
}

.formpadrao input.botao {
	width: 100%;
}



/* CONTATO */
.topo-contato .infos h1 {
	font-size: 38px;
    max-width: 400px;
}

.contato-single.secao-contato {
	padding-top: 60px;
}

.secao-contato .conteudo {
	    flex-direction: column;
    gap: 30px;
}

.mapa-contato {
	    padding: 40px 0 40px 0;
		    display: block;
			    height: auto;
}

.mapa-contato .info-topo {
	width: 100%;
}

.mapa-contato .container {
			    display: block;
			    height: auto;
}

.mapa-contato .endereco {
	width: 100%;
}

.mapa-contato .conteudo {
	    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0 auto 30px 0;
	gap: 45px;
    border-radius: 0;
    background: none;
}

.mapa-contato .conteudo .endereco p {
    font-size: 23px;
}

.mapa-contato .conteudo .endereco p span {
	font-size: 18px;
}

.mapa-contato iframe {
	position: static;
    height: 350px;
}

.mapa-contato .botoes {
	    justify-content: start;
}

.mapa-contato .botoes span br {
	display: none;
}

/* FOOTER */
footer {
	padding: 60px 0 00px 0; 
}

footer .footer {
	padding-bottom: 100px;
}

footer .info-topo {
	    flex-direction: column;
		align-items: start;
    gap: 40px;
}

footer .linha-meio {
	margin: 40px 0;
}

footer .info-topo .item div {
	    justify-content: start;
}

footer .info-topo .linha {
	display: none;
}

footer .meio {
	display: flex;
	    flex-direction: column;
    gap: 40px;
}

footer .meio .item2 {
	order: -4;
}

footer .meio .item3 {
	    order: -3;
}

footer .meio .atendimento {
	order: -2;
}

footer .meio .left {
	margin: 0 auto;
}

footer .meio .left .endereco {
	    flex-direction: column;
}

footer .meio .item .interno {
	margin-top: 40px;
}

footer .links {
        padding: 0;
        margin: 0 auto;
        flex-direction: column;
		    text-align: center;
}

footer .meio .linha {
	display: none;
}

footer .info-bottom {
	flex-direction: column;
}

.pg-contato {
	min-height: 60vh;
}

.pg-contato h1 {
	font-size: 30px;
}

.pagecontato-sc .conteudo {
	width: 100%;
    padding: 0px;
    display: block;
}

.pagecontato-sc .box {
	    padding: 30px;
}

.pagecontato-sc h3 {
    margin: 0 0 15px 0;
}

.pagecontato-sc h2 {
	font-size: 28px;
}

/* BARRAFIXA */
.barrafixa {
right: 50%;
    transform: translateX(50%);
        top: auto;
        bottom: 13px;
	        flex-direction: row;
}

.barrafixa .item.main {
	display: none;
}

/* MODAIS */
.modal-contato {
	max-width: 450px !important;
	    width: 95% !important;
}

.modal-contato .conteudo {
    padding: 40px 20px;
}

.modal-contato .conteudo .info-topo {
gap: 10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}

.modal-contato .info-topo > div {
	flex-direction: column;
    align-items: start;
    gap: 10px;
}

.modal-contato .info-topo h4 {
font-size: 14px;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        border: none;
}

.modal-contato .info-topo h4 span {
	    font-size: 25px;
    margin-top: 5px;
}

.modal-contato p.texto {
	max-width: 230px;
    margin: 10px auto;
    text-align: center;
}

.modal-contato .info-topo p {
        font-size: 13px;
        text-align: center;
        max-width: 240px;
}

.modal-contato .conteudo-form {
	display: block;
}

.modal-contato .conteudo-form .left, .modal-contato .conteudo-form .right {
	padding: 0;
	width: 100%;
}

.modal-contato .conteudo-form textarea {
	    height: 100px;
}

.modal-contato .numero {
	text-align: center;
}

.modal-contato .numero a {
	margin: 5px auto 0 auto;
}

.page-padrao.erro404 h1  {
	font-size: 60px;
}

.page-padrao.obrigado h1 {
	font-size: 45px;
}

.page-padrao .descricao {
	max-width: 350px;
	margin: 30px auto;
	line-height: 120%;
}

.page-template-template-corretor .secao-black .img-banner {
	object-position: 20% 50%;
}

.secao-contato.contato-single .conteudo .info-topo {
	    margin: 0 auto;
}

.page-template-template-corretor #form_bottom {
	flex-direction: column;
}
}

@media (max-width: 767px) {
.mais-posts .grid-posts,
.content-empreendimentos .grid {
	    grid-template-columns: repeat(1, 1fr);
}

.content-empreendimentos .infos-topo #filter-status {
	    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.content-empreendimentos .infos-topo #filter-status button {
	padding: 10px 15px;
	font-size: 12px;
	width: 100%;
}

.card-imovel .contatos .item {
    transform: translateY(0);
}

.imoveis-slide .card-imovel:hover {
	width: 400px;
}

.imoveis-slide .card-imovel .abrir,
.imoveis-slide .card-imovel:hover .abrir {
        width: 30px !important;
        height: 30px !important;
}

.imoveis-slide .card-imovel .abrir span {
	display: none;
}

.imoveis-slide .card-imovel .card-interno .destaques,
.imoveis-slide .card-imovel:hover .destaques {
	    position: static;
		    opacity: 1;
}

.imoveis-slide .card-interno,
.card-imovel .card-interno {
	flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 20px;
}

.imoveis-slide .card-interno .abrir span {
color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: Exo;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	margin-left: -85px;
	white-space: nowrap;
	transition: all .5s;
}

.imoveis-slide .card-imovel:hover .abrir span {
	opacity: 1;
	margin: 0 10px 0 0;
}

.imoveis-slide .card-imovel:hover .abrir {
	    width: 160px;
}

.card-imovel .abrir:hover {
	background: #C4401C;
	border-color: #C4401C;
}

.imoveis-slide .card-imovel .contatos {
	opacity: 1;
}
}


.fancybox__dialog {
	width: 100vw !important;
	height: 100vh !important;
}

.fancybox__backdrop {
	width: 100vw !important;
}