html, 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-x: hidden!important;
}
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;
}

a:hover {
	color: #fff;
}

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

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

/* GERAL */

*:focus {
	outline: none;
	border: none;
}

body {
	font-family: 'Kumbh Sans', sans-serif;
}

*::selection {
	background-color: #77CED9;
	color: #fff;
}

svg.prev, svg.next {
	transition: all .5s;
	cursor: pointer;
}

svg.prev:hover, svg.next:hover {
	transform: scale(1.2);
}

section {
	
	margin: 0 auto;
}

@media (width > 1200px) {
	.container {
	max-width: 1210px;
}
}

.botao {
padding: 15px 21px 13px 21px;
border-radius: 100px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
	display: block;
	width: fit-content;
	transition: all .5s;

color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 21.6px */
text-transform: uppercase;
}

.yes-mobile {
	display: none;
}

.yes-desk {
	display: block;
} 


/* HEADER */

  header {
	padding: 30px 0;
    z-index: 10;
	transition: all .5s;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.home header {
	/* padding: 60px 0 20px; */
}

 header.header-scroll {
	background: #fff;
	padding: 11px 0;
	box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
} 

.show-mob {
	display: none;
}

header .container {
	display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 30px;
}

header .wrapper-header {
    position: relative;
}

header .itens-nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

header .itens-nav a {
	color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 16.8px */
text-transform: uppercase;
transition: all .5s;
padding: 0 12px;
white-space: nowrap;
}

header.header-scroll .itens-nav a {
color: #636466;
}

header .itens-nav {
	list-style: none;
}

header .itens-nav li {
	transition: all .5s;
	position: relative;
}

header .itens-nav li::after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	transition: all .5s;
	bottom: -10px;
	width: 0%;
	height: 1px;
	background: #0AA9BD;

}

header .itens-nav li:hover::after {
	width: 100%;
}

header .menu-toggle {
border-radius: 100px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
    cursor: pointer;
width: 38px;
height: 38px;
	transition: all .5s;
	z-index: 30;
    border: none;
	padding: 0;
}

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

header .menu-toggle .close {
	opacity: 0;
}

header .menu-toggle.toggle-active .close {
	opacity: 1;
}

header .menu-toggle.toggle-active .open {
	opacity: 0;
}

header .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    max-width: 250px;
    border-radius: 0;
    border: 0;
    overflow: hidden;
    padding: 42px 32px;
    transition: all .5S;
    background: #fff;
    min-height: 100vh;
    display: flex;
    transform: translateX(-102%);
	    flex-direction: column;
    gap: 30px;
    opacity: 0;
}

header .menu svg {
    height: auto;
    width: 130px;
	    margin: 0 auto;
}

header .menu.active {
    transform: translateX(0%);
	opacity: 1;
}

header .menu h6 {
color: #0AA9BD ;
leading-trim: both;
text-edge: cap;
font-family: "Montserrat";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
letter-spacing: 1.92px;
text-transform: uppercase;
    padding-bottom: 10px;
	margin-bottom: 20px;
}

header .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .menu ul li {
    padding: 10px 0;
}

header .menu ul li a {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 13px;
font-style: normal;
width: fit-content;
font-weight: 400;
line-height: 120%; /* 16.8px */
text-transform: uppercase;
	display: block;
	transition: all .5s;
	margin: auto;
}

header .menu ul li a:hover {
	color: #0AA9BD ;
}

header .logo {
	transition: all .5s;
	height: auto;
}

header.header-scroll .logo {
	width: 125px;
}

header .logo .path {
	transition: all .5s;
}

header.header-scroll .logo .path {
	fill: #636466;
}

/* --- */


/* TOPO */

.topo {
	min-height: 100vh;
	padding: 140px 0;
	position: relative;
	background-position: center;
	background-size: cover;
	    display: flex;
    align-items: center;
	overflow: hidden;
}

.vetor1 {
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 4;
}

.vetor2 {
	position: absolute;
	right: 0;
	bottom: -1px;
	z-index: 4;
}

.banner-topo-slider {
    width: 100%;
	height: 100%;
    overflow: hidden;
	    position: absolute;
    left: 0;
    top: 0;
}

.banner-topo-slider .slide {
	position: relative;
}

.banner-topo-slider .slide::after {
content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: radial-gradient(112.97% 112.97% at 48.11% 100%, rgb(0 0 0 / 35%) 59.6%, rgb(0 0 0 / 76%) 100%);
}

.banner-topo-slider .slide::before {
		content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	z-index: 2;
	top: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
}

.banner-topo-slider .slide img {
    width: 100%;
	pointer-events: none;
    display: block;
}

.banner-topo-slider .slide .bg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	background: #000;
opacity: 0.2;
	pointer-events: none;
}

.topo .slide img {
	min-height: 100vh;
	width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.topo .container {
	position: relative;
	z-index: 4;
}

.topo .infos .estagio {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
width: fit-content;
font-weight: 500;
line-height: 120%; /* 19.2px */
border-left: 1px solid var(--05, #77CED9);
padding-left: 14px;
letter-spacing: 3.2px;
text-transform: uppercase;
}

.topo .infos .custom-logo-link {
	margin: 55px 0 45px 0;
	display: block;
}

.topo .infos .box-infos-topo {
	padding: 0 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
border-left: 1px solid var(--05, #77CED9);
	margin: 0 0 32px 0;
}

.topo .infos .box-infos-topo .item {
	display: flex;
	gap: 18px;
	align-items: center;
}

.topo .infos .box-infos-topo .item .icone {
	display: flex;
width: 32px;
height: 32px;
justify-content: center;
align-items: center;
}

.topo .infos .box-infos-topo .item p {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
}

.topo .infos h1 {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 38.4px */
letter-spacing: 1.28px;
text-transform: uppercase;
margin: 20px 0 30px 0;
}

.topo .preco {
	border-left: 1.298px solid var(--01, #E9CCE2);
	padding-left: 30px;
	margin-bottom: 42px;
}

.topo .preco p {
	color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 19.2px */
letter-spacing: 3.2px;
text-transform: uppercase;
}

.topo .preco .valor {
	    margin-top: 10px;
}

.topo .preco .valor span {
	color: var(--Gray-100, #FFF);
	leading-trim: both;
	text-edge: cap;
	font-family: Montserrat;
	font-size: 75.964px;
	font-style: normal;
	font-weight: 700;
line-height: 90%;
	text-transform: uppercase;
}

.topo .preco .valor span.real {
	color: var(--Gray-100, #FFF);
leading-trim: both;
margin-right: 17px;
text-edge: cap;
font-family: Montserrat;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 90%;
text-transform: uppercase;
}


.botao:hover {
	opacity: .7;
}

/* --- */


/* DIFERENCIAIS */

.diferenciais {
	position: relative;
	z-index: 2;
	padding: 100px 0;
	height: auto;
}

#diferenciais_ {
	scroll-margin-top: 80px;
}

.diferenciais .container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.diferenciais .box-img {
	width: 50%;
	height: 750px;
	position: relative;
	padding-right: 20px;
}

.diferenciais .box-img .vetor5 {
position: absolute;
    width: auto;
    height: auto;
    right: -20px;
    bottom: -2px;
}

.diferenciais .box-img img {
	height: 100%;
	width: 94%;
	object-fit: cover;
	object-position: center;
}

.diferenciais .infos {
width: 55%;
}

.diferenciais h3 {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 16.8px */
letter-spacing: 2.8px;
margin-left: 55px;
text-transform: uppercase;
border-left: 1px solid var(--04, #99B0DB);
padding-left: 14px;
}

.diferenciais h2 {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
margin-left: 55px;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 36.4px */
letter-spacing: 1.04px;
text-transform: uppercase;
margin-top: 55px;
}

.diferenciais h2 span {
    background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #57b9bd 103.9%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.04px;
    text-transform: uppercase;
}

.diferenciais .box-diferenciais {
	padding: 30px;
	margin-top: 55px;
	position: relative;
background-image: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
}

.vetor3 {
	position: absolute;
	z-index: 2;
	top: -1px;
	right: -1px;
	pointer-events: none;
}

.vetor4 {
	position: absolute;
	z-index: 2;
	bottom: -1px;
	left: -1px;
	pointer-events: none;
}

.diferenciais .item-diferencial {
	padding: 15px 5px;
	width: 148px;
}

.diferenciais .item-diferencial .box-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-direction: column;
}

.diferenciais .item-diferencial .box-item .icone {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 58px;
	width: 58px;
}

.diferenciais .item-diferencial .box-item .icone img {
    max-width: 33px;
    width: 100%;
    max-height: 33px;
}

.diferenciais .item-diferencial .box-item .icone path {
	fill: #0AA9BD ;
}

.diferenciais .item-diferencial .box-item p {
color: var(--Gray-100, #FFF);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 20.8px */
	min-height: 41.59px;
}

.diferenciais .infos-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 45px;
	padding: 0 50px;
}

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

.navs .icon {
	border-radius: 100px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
display: flex;
width: 32px;
height: 32px;
justify-content: center;
align-items: center;
transition: all .5s;
cursor: pointer;
}

.navs .icon:hover {
	opacity: 0.7;
	transform: scale(1.05);
}


.slick-dotted.slick-slider {
	margin: 0;
}

.diferenciais .infos-bottom .nav-diferenciais svg {
	cursor: pointer;
}

.diferenciais .slick-dots {
	position: inherit;
	display: flex;
	align-items: center;
}

.diferenciais .slick-dots .slick-dots li {
	display: flex;
	align-items: center;
	justify-content: center;
}

.diferenciais .slick-dots .slick-dots li.slick-active button {
	background-image: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
}

.diferenciais .slick-dots .slick-dots li button {
background: #6364663b;
	width: 6.5px;
    height: 6.5px;
    border-radius: 100px;
}

.diferenciais .slick-dots .slick-dots li button::before {
	display: none;
}

/* --- */


/* VÍDEOS */

.videos {
	height: auto;
padding: 70px 0;
	position: relative;
	overflow: hidden;
}

#videos {
	scroll-margin-top: 80px;
}

.videos .container {
	
}

.videos h3 {
color: var(--Gray-700, #636466);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    border-left: 1px solid var(--04, #99B0DB);
    padding-left: 14px;
	margin-bottom: 45px;
}

.videos .nav-videos {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: center;
	margin-top: 45px;
}

.videos .slider-videos {

}

.videos .slider-videos .slick-list {
	overflow: visible;
}

.videos .box-video {
	padding: 0 0px;
max-width: 1210px;
	width: 100%;
}

.videos .video-item {
    position: relative;
    cursor: pointer;
	height: 550px;
}

.videos .video-item img {
    width: 100%;
    transition: 0.3s;
	height: 100%;
	object-fit: cover;
	transition: all .5s;
}

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

.videos .box-fora {
	position: relative;
}

.videos .vetor6 {
    position: absolute;
    left: -35px;
    bottom: -20px;
    pointer-events: none;
    z-index: 2;
    width: 191px !important;
    object-fit: contain !important;
    transform: none !important;
    height: auto !important;
}

.videos .video-item {
	position: relative;
}

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

.videos .video-item .info {
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	justify-content: center;
}

/* .videos .video-item:hover img {
	transform: scale(1.07);
} */

.videos .video-item .play-button {
	border-radius: 100px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
width: 64px;
height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videos .video-item p {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 16.8px */
text-align: center;
text-transform: uppercase;
}

/* --- */


/* GALERIA */

#galeria-fotos-empreendimento{

	padding: 70px 0 60px 0;
	width: 100%;
}

#galeria-fotos-empreendimento h2 {
    color: var(--Gray-700, #636466);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    border-left: 1px solid var(--04, #99B0DB);
    padding-left: 14px;
}

#galeria-fotos-empreendimento .grid-item .area{
	background-position: center;
}

#galeria-fotos-empreendimento .botao {
	border: none;
	font-size: 17px;
	margin: 60px auto 0 auto;
}

#galeria-fotos-empreendimento .botao.height-inative {
	opacity: 0;
	pointer-events: none;
	margin: 0 auto -40px auto;
}

#galeria-fotos-empreendimento .botao:hover {
	opacity: .7;
	transform: scale(1.05);
}

#galeria-fotos-empreendimento .grid-slider-wrapper {
	transition: all .5s;
	overflow: hidden;
	height: 1260px;
}

#galeria-fotos-empreendimento .container{
		position: relative;
	z-index: 3;
}

#galeria-fotos-empreendimento .grid-slider-wrapper.height-auto {
	transition: all .5s;
	height: auto;
}

/* demais estilos, estão no arquivo grid-galeria.css */



/* PLANTAS */
#planta {
	scroll-margin-top: 80px;
}
.plantas {
	height: auto;
	padding: 50px 0 85px 0;
	position: relative;
}

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

.plantas .slick-list {
	overflow: visible;
}

.plantas .slick-list::before {
content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3000px;
    height: 100%;
    left: -3000px;
    pointer-events: none;
    background: #fff;
    z-index: 2;
}

.plantas .brand-plantas {
    position: absolute;
    right: 45%;
    top: -1700px;
	pointer-events: none;
}

.plantas .image-container {
	padding: 10px 17px;
	    opacity: .5;
		pointer-events: none;
		transition: all .5s;
}

.plantas .image-container.slick-active {
	opacity: 1;
	pointer-events: all;
}

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

.plantas .image-container img {
	height: 480px;
	width: 100%;
	object-fit: contain;
}

.plantas .infos {
	position: relative;
	z-index: 3;
}

.plantas .infos h3 {
     color: var(--Gray-700, #636466); 
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    border-left: 1px solid var(--04, #99B0DB);
    padding-left: 14px;
}

.plantas .infos h2 {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 36.4px */
letter-spacing: 1.04px;
text-transform: uppercase;
    margin: 53px 0;
}

.plantas .infos h2 span {
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: 140%;
letter-spacing: 1.04px;
text-transform: uppercase;
}

.plantas .infos .box-infos {

}

.plantas .infos .box-infos .nav-plantas {

}

.plantas .infos .texto {
	display: flex;
	align-items: center;
	border-left: 1px solid var(--01, #E9CCE2);
	margin: 50px 0;
	padding: 12px 0 12px 30px;
	gap: 12px;
}

.plantas .infos .texto h4 {
	color: var(--Gray-700, #636466);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 23.4px */
}

.plantas .infos .legenda-da-planta {
color: var(--Gray-700, #636466);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
background: linear-gradient(97deg, rgba(10, 169, 189, 0.10) 40.13%, rgba(133, 209, 212, 0.10) 103.9%);
padding: 8px;
line-height: 130%; /* 18.2px */
}

/* --- */


/* FICHA TÉCNICA */
#fichatecnica {
	scroll-margin-top: 90px;
}
.ficha-tecnica {
	height: auto;
	padding: 80px 0;
}

.ficha-tecnica .info-topo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.ficha-tecnica h3 {
    color: var(--Gray-700, #636466);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    border-left: 1px solid var(--04, #99B0DB);
    padding-left: 14px;
}

.ficha-tecnica .ficha-wrapper {
    display: flex;
}

.ficha-tecnica .ficha-menu {
display: flex;
align-items: center;
justify-content: end;
gap: 8px;
}

.ficha-tecnica .ficha-select {
	display: none;
}

.ficha-tecnica .ficha-menu li {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
background: var(--02, #C9E5E9);
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 16.8px */
text-transform: uppercase;
}

.ficha-tecnica .ficha-menu li:hover,
.ficha-tecnica .ficha-menu .active {
	color: #fff;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
}

.ficha-tecnica .ficha-menu li svg {
	transition: all .5s;
}

.ficha-tecnica .ficha-menu li svg path {
	transition: all .5s;
}

.ficha-tecnica .ficha-menu li:hover svg path,
.ficha-tecnica .ficha-menu .active svg path {
	stroke: #fff;
}

.ficha-tecnica .ficha-conteudo {
	background-image: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
    flex-grow: 1;
	position: relative;
    padding: 65px;
	margin-top: 55px;
}

.vetor7 {
    position: absolute;
    z-index: 2;
    top: -1px;
    right: -1px;
    pointer-events: none;
}

.vetor8 {
    position: absolute;
    z-index: 2;
    bottom: -1px;
    left: -1px;
    pointer-events: none;
}

.vetor9 {
	    position: absolute;
    z-index: 2;
    bottom: -27px;
    right: -27px;
    pointer-events: none;
}

.ficha-tecnica .ficha-tab {
    display: none;
}

.ficha-tecnica .ficha-tab.active {
    display: grid;
gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}

.ficha-tecnica .ficha-tab .item {
	border-left: 1px solid var(--02, #C9E5E9);
    padding: 15px 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.ficha-tecnica .ficha-tab .item h4 {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 14.4px */
letter-spacing: 2.4px;
opacity: 0.6;
text-transform: uppercase;
}

.ficha-tecnica .ficha-tab#areas_de_lazer .item h4 {
	opacity: 1;
}

.ficha-tecnica .ficha-tab .item p{
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 20.8px */
}


/* --- */

.insta {
	padding: 80px 0;
}


/* LOCALIZAÇÃO */
#localizacao {
	scroll-margin-top: 50px;
}
.localizacao {
	padding: 90px 0;
    height: auto;
}

.localizacao .info-topo {

}

.localizacao .flex {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin: 45px auto 40px auto;
}

.localizacao .box-img {
	display: block;
	height: 550px;
	position: relative;
	overflow: hidden;
	transition: all .6s;
}

.localizacao .box-img:hover {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

	.localizacao .box-img p {
		position: absolute;
		right: 30px;
		bottom: 30px;
		z-index: 3;
		white-space: nowrap;
		color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 16.8px */
text-transform: uppercase;
padding: 10px 15px;
	}

.localizacao .box-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .7s;
	object-position: 60%;
}

.localizacao .box-img:hover img {
	transform: scale(1.07);
}

.localizacao iframe {
	width: 100%;
	height: 500px;
}

.localizacao h3 {
    color: var(--Gray-700, #636466);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    border-left: 1px solid var(--04, #99B0DB);
    padding-left: 14px;
}

.localizacao .titulos {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 55px;
	gap: 0
}

.localizacao h2 {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 36.4px */
letter-spacing: 1.04px;
text-transform: uppercase;
}

.localizacao h2.segundo {
	text-align: end;
}

.localizacao h2 span {
	background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-style: normal;
font-weight: 700;
line-height: 140%;
letter-spacing: 1.04px;
text-transform: uppercase;
}

.localizacao .infos {
	padding-left: 30px;
    padding-right: 40px;
}

.localizacao .texto {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 170%; /* 23.8px */
opacity: 0.6;
}

.localizacao .endereco {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 33.6px */
letter-spacing: 0.96px;
border-left: 1px solid var(--Degrade, #0AA9BD);
padding: 0 0 0 30px;
margin: 50px 0;
}

.localizacao .endereco span {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 21px */
display: block;
    margin-top: 5px;
}

.localizacao .botoes {
	display: flex;
	align-items: center;
	gap: 8px;
}

.localizacao .botoes .botao {
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.localizacao .botoes .botao svg path {
	transition: all .5s;
}

/* --- */


/* CONTATO */
#contato {
	scroll-margin-top: 50px;
}
.contato {
padding: 130px 0;
	height: auto;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
position: relative;
}

.vetor10 {
position: absolute;
    left: 0;
    top: -43.5px;
    pointer-events: none;
    z-index: 1;
}

.vetor11 {
	position: absolute;
	right: -10px;
	bottom: -1px;
	pointer-events: none;
	z-index: 1;
}

.contato .conteudo {
padding: 90px;
    background-color: #fff;
    position: relative;
    z-index: 2;
    clip-path: polygon(0% 0%, calc(100% - 60px) 0%, 100% 60px, 100% 100%, 60px 100%, 0% calc(100% - 60px));
}

.contato .info-left {

}

.contato .info-left h3 {
color: var(--Gray-700, #636466);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    border-left: 1px solid var(--04, #99B0DB);
    padding-left: 14px;
}

.contato .info-left h2 {
    color: var(--Gray-700, #636466);
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    margin: 100px 0 20px 0;
}

.contato .info-left h2 span {
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
display: block;
font-style: normal;
font-weight: 700;
line-height: 140%;
letter-spacing: 1.04px;
text-transform: uppercase;
}

.contato .info-left p {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 170%; /* 23.8px */
opacity: 0.6;
max-width: 290px;
}

.contato .info-left .botoes {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 90px;
}

.contato .info-left .botao {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
border: none;
}

.contato .info-left .botao path {
	transition: all .5s;
}

.contato .info-left .botao:hover path {
	fill: #fff;
}

.contato .info-right {

}

/* --- */


/* FOOTER */

footer {
background: var(--Gray-100, #FFF);
    padding: 100px 0 180px 0;
}

footer .flex-logos {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
}

footer svg {
	transition: all .5s;
}

footer svg:hover {
	transform: scale(1.05);
}

footer .flex-logos .linha {
	gap: 60px;
	width: 1px;
	background: #0AA9BD ;
	height: 90px;
}

footer .linha {
	opacity: 0.08;
background: #636466;
width: 100%;
margin: 55px auto;
height: 1px;
}

footer .texto {
	margin: 0 auto;
color: var(--Gray-700, #636466);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
opacity: 0.6;
font-style: normal;
font-weight: 400;
line-height: 170%; /* 23.8px */
	max-width: 870px;
}

footer .info-bottom {

}

footer .redes {
	display: flex;
	align-items: center;
	gap: 18px;
}

footer .redes a {
	transition: all .5s;
	display: flex;
width: 42px;
height: 42px;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 100px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
}

footer .redes a:hover {
	transform: scale(1.07);
	opacity: 0.7;
}

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

footer .info-bottom p {
color: var(--Gray-700, #636466);
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

footer .info-bottom a  {
	color: var(--Gray-700, #636466);
text-align: right;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}

/* --- */


/* FORMULÁRIOS */

input:focus,
input:focus-visible {
    outline: none !important;
}

.formpadrao input, .formpadrao textarea{
	padding: 21px 30px;
	border-width: 0 0 0 1px;
border-left: 1px solid var(--03, #90D7EC);
    background: rgb(96 198 205 / 9%);
    margin-bottom: 14px;
color: var(--Gray-700, #636466d2);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
    width: 100%;
}

.formpadrao .botao {
border-radius: 100px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
border: none;
padding: 17px 24px;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 16.8px */
text-transform: uppercase;
    width: fit-content;
    margin: 0;
}

.formpadrao .botao:hover {
	opacity: .7;
	transform: scale(1.05);
}

.formpadrao textarea{
	height: 134px;
}

.formpadrao input::placeholder, .formpadrao textarea::placeholder{
color: var(--Gray-700, #636466c2);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}

.formpadrao select {
    padding: 12px;
    border: none;
    border-bottom: 1px solid var(--brand-secundary, #57413B);
    background: rgba(255, 255, 255, 0.90);
    margin-bottom: 24px;
    color: var(--brand-secundary-darker, #321D17);
    font-family: Work Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    width: 100%;
}

.formpadrao .form-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}

.formpadrao .politica input[type="checkbox"], .wpcf7-acceptance input[type="checkbox"]{
    float: left;
    width: 22px;
    height: 22px;
    margin-right: 15px;
	margin-bottom: 0;
}
.formpadrao .politica span, .wpcf7-acceptance .wpcf7-list-item-label{
color: var(--500, rgba(0, 0, 0, 0.40));
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
    max-width: 180px;
    margin-top: -6px;
    display: block;
}

.formpadrao .politica span a {
	color: inherit;
}

.formpadrao .politica span a:hover {
	color: inherit;
}



/* --- */


/* NAV-FIXO E MODAIS */

.barrafixa {
	padding: 0px 30px 0px 0;
	left: 50%;
   bottom: 15px;
   transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    position: fixed;
    align-items: center;
    z-index: 30;
	transition: all .5s;
border-radius: 13px;
border-top: 1px solid rgba(0, 0, 0, 0.04);
border-right: 1px solid rgba(0, 0, 0, 0.04);
border-bottom: 1px solid rgba(0, 0, 0, 0.04);
border-left: 1px solid rgba(0, 0, 0, 0.04);
background: #FFF;
	overflow: hidden;
	gap: 30px;
	width: fit-content;
}

.barrafixa .item-brand {
	background: #E5FAFE;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.barrafixa .item {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: all .5s;
}

.barrafixa .item:hover {
	transform: scale(1.05);
}

.barrafixa .item .icon {
	display: flex;
	width: 48px;
	height: 48px;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	transition: all .5s;
}

.barrafixa .item:hover .icon {
	transform: scale(.9) translateX(10px);
}

.barrafixa .item.tel .icon,
.barrafixa .item.mail .icon {
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
}

.barrafixa .item.wpp .icon {
background: linear-gradient(97deg, #0ABD64 40.13%, #85D4B4 103.9%);
}

.barrafixa .item p {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 8px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 10.4px */
letter-spacing: 0.8px;
text-transform: uppercase;
}

.barrafixa .item span {
	margin-top: 4px;
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 18.2px */
letter-spacing: 1.4px;
display: block;
text-transform: uppercase;
}

.barrafixa .linha {
	opacity: 0.08;
	width: 1px;
height: 48px;
background: #636466;
}


.fancybox-close-small {
right: 8px !important;
transform: scale(.9) !important;
top: 8px !important;
	border-radius: 100px !important; 
	color: #fff !important;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%)) !important;
}

.form-modal {
	border-radius: 0px !important;
	padding-top:  55px !important;
	padding-bottom:  55px !important;
	background: var(--100, #FFF) !important;
	position: relative !important;
	overflow: hidden !important;
	  clip-path: polygon(
    60px 0%,        /* corte topo esquerdo */
    100% 0%, 
    100% calc(100% - 60px), /* corte inferior direito */
    calc(100% - 60px) 100%, 
    0% 100%, 
    0% 60px
  );
}

.form-modal::before {
	position: absolute;
    left: 0;
	bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
	background: url(../images/brand-modal-email.svg);
	background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.form-modal.form-modal-email::before {
	    left: auto;
    right: 0;
    background-position: right top;
    background-size: cover;
    height: 70%;
    background-repeat: no-repeat;
}

.form-modal .conteudo {
	display: flex;
    justify-content: space-between;
	position: relative;
	align-items: center;
	z-index: 2;
}

.form-modal .left {
max-width: 300px;
	width: 100%;
	padding-right: 17px;
	border-right: 1px solid rgba(0, 0, 0, 0.10);
	margin-right: 60px;
}

.form-modal#modal-telefone {
	max-width: 445px;
	padding: 55px 90px !important;
	width: 100%;
}

.form-modal#modal-telefone .left {
	margin: 0;
    padding: 0;
    border: 0;
    max-width: 100%;
}

.form-modal .left .header {
    display: flex;
    align-items: center;
    gap: 22px;
}

header .botao {
	font-size: 14px;
}

.form-modal .left .header .icon {
	display: flex;
	width: 64px;
	height: 64px;
	justify-content: center;
	align-items: center;
border-radius: 30px;
background: var(--Degrade, linear-gradient(97deg, #0AA9BD 40.13%, #85D1D4 103.9%));
}

.form-modal .left .header h5 {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 10px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 13px */
letter-spacing: 1px;
text-transform: uppercase;
}

.form-modal .left .header h5 span {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 33.8px */
letter-spacing: 2.6px;
text-transform: uppercase;
	margin-top: 4px;
	display: block;
}

.form-modal .left .texto {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 170%; /* 23.8px */
margin: 100px 0;
opacity: 0.6;
max-width: 240px;
}


.form-modal .left .bottom {
	padding-left: 30px;
	border-left: 1px solid var(--Degrade, #0AA9BD);
}

.form-modal .left .bottom h6 {
color: var(--Gray-900, #3B3B3B);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 10px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 13px */
letter-spacing: 1px;
text-transform: uppercase;
	margin-bottom: 13px;
}

.form-modal .left .bottom p {
color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
opacity: 0.6;
line-height: 170%; /* 23.8px */
}

.form-modal .right {
	width: 550px;
	align-self: center;
}

.form-modal .formpadrao input, .form-modal .formpadrao textarea {

}

.form-modal .formpadrao .politica span {
	color: var(--500, rgba(0, 0, 0, 0.40));
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.form-modal .politica span a{
	color: var(--500, rgba(0, 0, 0, 0.40));
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.form-modal.form-modal-whatsapp::before {
	background: url(../images/brand-modal-whatsapp.svg);
    left: auto;
    right: 0;
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    width: 55%;
}

.form-modal.form-modal-whatsapp .left .header {
	margin-bottom: 150px;
}



.form-modal.form-modal-whatsapp .fancybox-close-small {
	color: #fff;
}

.form-modal.form-modal-telefone::before {
	background: url(../images/brand-modal-telefone.svg);
    left: auto;
    right: 0;
    background-position: right top;
    background-size: cover;
	height: 75%;
    background-repeat: no-repeat;
}

.form-modal.form-modal-telefone .left .header {
	margin-bottom: 40px;
}

.form-modal.form-modal-telefone .left .contatos {
	display: flex;
	flex-direction: column;
	gap: 35px;
	padding: 40px 0;
	border-left: none;
	    border-top: 1px solid rgba(0, 0, 0, 0.10);
		    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	border-right: none;
	margin-bottom: 40px;
}

.form-modal.form-modal-telefone .left .contatos p {
color: var(--Gray-900, #3B3B3B);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 10px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 13px */
letter-spacing: 1px;
text-align: center;
text-transform: uppercase;
}

.form-modal.form-modal-telefone .left .contatos p a {
color: var(--Primary-Dark, #00444F);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 22px;
font-style: normal;
font-weight: 300;
line-height: 110%; /* 24.2px */
letter-spacing: 4.4px;
	display: block;
	margin-top: 8px;
	transition: all .5s;
	text-decoration: none;
}

.form-modal.form-modal-telefone .left .contatos p a:hover {
	transform: scale(1.05);
}

.error404 header,
.page-template-template-obrigado header, 
.privacy-policy header {
	background: #fff;
	    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
		padding: 18px 0;
}

.error404 header .logo .path,
.page-template-template-obrigado header .logo .path, 
.privacy-policy header .logo .path {
	    fill: #636466;
}

.error404 header .itens-nav a ,
.page-template-template-obrigado header .itens-nav a , 
.privacy-policy header .itens-nav a {
	color: #636466;
}

.erro404,
.obrigado {
	text-align: center;
	min-height: 100vh;
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
			background: url(../images/bg-pages.webp);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
}

.error404 h1 {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 260px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 312px */
letter-spacing: 10.4px;
text-transform: uppercase;
}

.obrigado h1 {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 130px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 192px */
letter-spacing: 6.4px;
text-transform: uppercase;
}

.error404 p,
.obrigado p {
color: var(--Gray-100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 24px */
letter-spacing: 4px;
text-transform: uppercase;
}

.error404 .main .botao,
.obrigado.main .botao {
	display: block;
    margin: 30px auto 0 auto;
}

.error404 .botao:hover,
	.obrigado .botao:hover {
		background-color: #274D3A;
	}

section.default {
    padding: 150px 0 100px 0;
}

section.default h1 {
color: var(--Primary, #636466);
leading-trim: both;
text-edge: cap;
font-family: "Montserrat";
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 44.8px */
letter-spacing: 1.28px;
text-transform: uppercase;
	margin-bottom: 30px;
	padding-left: 30px;
	border-left: 1px solid var(--05, #77CED9);
}

section.default .content-default h2,
section.default .content-default h3,
section.default .content-default h4,
section.default .content-default h5,
section.default .content-default h6 {
color: #636466;
	font-family: "Montserrat";
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	margin-bottom: 15px;
	margin-top: 10px;
}

section.default .content-default p {
color: #636466;
text-align: start;
font-family: "Montserrat";
opacity: 0.8;
font-size: 15px;
font-style: normal;
font-weight: 300;
line-height: 150%; /* 19.2px */
	margin-bottom: 15px;
}

  /* --- */
@media (width < 1360px ) {
	.plantas::after {
		left: -10%;
	}
}

  /* --- */
@media (width < 1200px ) {
	header .itens-nav a {
font-size: 11px;
	}

	header .botao {
		font-size: 11px;
	}
	.plantas .infos .legenda-da-planta {
		letter-spacing: normal;
	}
	.videos .box-video {
		max-width: 970px;
	}

	.ficha-tecnica .ficha-menu {
		border: none;
    padding: 0;
	}

	.ficha-tecnica .ficha-conteudo {
		padding: 40px;
	}

	.ficha-tecnica {
		height: auto;
	}

	.ficha-tecnica .ficha-tab .item {
	
	}

		.contato .info-left .botoes {
		    flex-direction: column;
    gap: 15px;
	}

	 .contato .info-left .botao {
		    justify-content: center;
    width: 100%;
	 }
}

/* --- */
@media (width < 1100px ) {
	.plantas::after {
		left: -25%;
	}
}

/* --- */
@media (width < 991px ) {
	header {
		padding: 18px 0;
	}
	header .itens-nav {
		display: none;
	}

	header .logo {
		max-width: 132px;
		height: auto;
	}
	.yes-mobile {
		display: block;
	}

	.yes-desk {
	display: none;
} 

.topo .infos .estagio {
	font-size: 12.37px;
}

	h3::after {
		display: none !important;
	}

	.container {
		padding: 0 17px;
	}

	.brand-main .brands-fundo {
		display: none;
	}

	.error404 h1 {
		font-size: 130px;
	}

	.obrigado h1 {
		font-size: 40px;
		margin-bottom: 30px;
	}

	.topo {
		padding-top: 0;
		height: auto;
		padding-bottom: 120px;
		padding-top: 110px;
		background-image: none !important;
		display: flex;
        align-items: end;
	}

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

	.topo .infos {

	}

	.topo .yes-mobile img {
		width: 100%;
		height: 400px;
		object-fit: cover;
		object-position: center;
	}

	.topo .infos .box-infos-topo {
    padding: 0 0 0 18px;
	}

	.topo .infos .box-infos-topo .item {
		gap: 15px;
	}

	.topo .infos .box-infos-topo .item p {
		font-size: 14px;
	}

	.topo .infos .box-infos-topo .item .icone {
    width: 29px;
    height: 29px;
}

.topo .preco p {
	font-size: 12px;
}

.topo .preco .valor span.real,
.topo .preco .valor span {
	font-size: 45px;
}

.topo .preco {
	padding: 0 0 0 18px;
	    margin-bottom: 25px;
}

.vetor1,
.vetor2 {
	display: none;
}

	.topo .infos h1 {
        margin: 25px 0;
        font-size: 28px;
        max-width: 350px;
	}

	.topo .botao {
        margin: 0;
        font-size: 14px;
	}

	.diferenciais {
		padding: 60px 0;
	}

	.diferenciais h3 {
		color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 12px */
text-align: center;
margin: 0 auto;
padding: 0;
letter-spacing: 2px;
text-transform: uppercase;
	}

	.diferenciais h2 {
		text-align: center;
color: var(--Gray-700, #636466);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 19px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 28px */
letter-spacing: 0.8px;
text-transform: uppercase;
		    margin: 35px auto;
	}

	.diferenciais h2 span {
font-size: 19px;
line-height: 140%;
	}

	.diferenciais .box-diferenciais {
		padding: 30px 20px;
		margin-top: 0;
	}

	.diferenciais .infos {
	width: 100%;
	}

	.diferenciais .item-diferencial {
		padding: 15px 10px;
	}

	.diferenciais .infos-bottom {
		flex-direction: column;
		justify-content: space-between;
		gap: 30px;
		margin-top: 20px;
		padding: 0 55px;
	}

	.diferenciais .slick-dots {
		justify-content: center;
	}

	.videos {
		height: auto;
		padding: 60px 0;
		margin-bottom: 0;
	}

	.videos .container {
		max-width: 540px;
	}

	.videos h3 {
		padding: 0;
	}

	.videos .video-item {
		height: 450px;
	}

	.videos .video-item p {
		letter-spacing: normal;
	}

	.videos .vetor6 {
		    width: 101px !important;
			left: -20px;
    bottom: -10px;
	}

	.videos .slider-videos .slick-list {
		padding: 0 !important;
	}

	#galeria-fotos-empreendimento .grid-slider-wrapper {
		height: auto;
	}

	#galeria-fotos-empreendimento .botao {
		display: none;
	}

	.plantas-e-ficha {
		background-image: none;
	}

	.plantas {
		height: auto;
		padding: 40px 0 60px 0;
	}

	.plantas .infos h3 {
		padding: 0;
		border: none;
	}

	.plantas .brand-plantas {
		display: none;
	}

	.plantas .image-container img {
		height: 320px;
	}

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

	.plantas .infos h2 {
		margin: 27px auto;
		font-size: 20px;
	}

	.plantas .infos h2 span {
		font-size: 20px;
	}

	.plantas .infos .box-infos {

	}

	.plantas .infos .legenda-da-planta {
		display: none;
	}

	.plantas .infos .texto {
		padding: 0;
		border: none;
		justify-content: center;
		width: fit-content;
		margin: 35px auto;
		flex-direction: column;
        gap: 5px;
	}

	.plantas .infos .box-infos .nav-plantas {
		justify-content: center;
	}

	.plantas .legenda-planta {
		display: block;
		text-align: center;
		margin-bottom: 20px;
color: #274D3A;
leading-trim: both;
text-edge: cap;
font-family: "Montserrat";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 14px */
letter-spacing: 1.68px;
text-transform: uppercase;
	}

	.ficha-tecnica {
		padding-bottom: 50px;
		        padding-top: 50px;
	}


	.ficha-tecnica h3 {
		text-align: center;
		padding: 0;
border: 0;
	}

	.ficha-tecnica .info-topo {
		justify-content: center;
	}

	.ficha-tecnica .ficha-wrapper {
		flex-direction: column;
	}

	.ficha-tecnica .ficha-menu {
		display: none;
	}

	.ficha-tecnica .ficha-select {
		display: block;
		width: 100%;
		padding: 15px;
		padding-right: 40px; /* Ajusta espaço para a seta */
		cursor: pointer;
		transition: all 0.5s;
		margin: 35px auto;
		color: var(--Gray-100, #0AA9BD);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 16.8px */
text-transform: uppercase;

		display: flex;
		align-items: center;
		justify-content: space-between;
		background: transparent;
		border: 1px solid #0AA9BD;
		border-radius: 20px;
		appearance: none; /* Remove a seta padrão */
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTAgNiIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEgMS4wMjFMNSA1LjAyMUw5IDEuMDIxIiBzdHJva2U9IiMwQUE5QkQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==');
		background-repeat: no-repeat;
		background-position: calc(100% - 15px) center; /* Move a seta para a esquerda */
		background-size: 10px 6px;
	}

	.ficha-tecnica .ficha-conteudo {
		padding: 40px 25px;
		margin-top: 0;
	}

	.ficha-tecnica .ficha-tab.active {
		gap: 25px;
grid-template-columns: repeat(1, 1fr);
	}

	.ficha-tecnica .ficha-tab.active .item {
		width: 100%;
		padding-left: 17px;
	}

	.ficha-tecnica .ficha-tab.active .item br {
		display: none;
	}

	.ficha-tecnica .ficha-tab#metragens .item p, .ficha-tecnica .ficha-tab#areas_de_lazer .item p, .ficha-tecnica .ficha-tab#diferenciais .item p, .ficha-tecnica .ficha-tab#quantidade .item p, .ficha-tecnica .ficha-tab#social .item p {
		margin-top: 3px;
	}

	.localizacao-e-contato {

	}

	.localizacao {
		padding: 60px 0;
		height: auto;
		background-image: none;
	}

	.localizacao .infos {
	margin-top: 30px;
	padding: 0;
	}

	.localizacao .botoes {
		flex-direction: column;
		gap: 15px;
	}

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

	.localizacao .endereco {
		padding: 0;
		border: 0;
		margin: 28px auto;
		text-align: center;
		color: var(--Gray-700, #636466);
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 33.6px */
letter-spacing: 0.96px;
	}

	.localizacao .endereco span {
		font-size: 14px;
	}

	.localizacao .botoes .botao {
		width: 100%;
    	justify-content: center;
	}

	.localizacao iframe {
		height: 400px;
		margin-top: 20px;
	}

	.localizacao h2 {
		margin: 30px auto;
		font-size: 20px;
		max-width: 340px;
		text-align: center;
	}

	.localizacao .titulos {
		margin-top: 25px;
		display: none;
	}

	.localizacao .box-img {
		position: relative;
		margin-top: 0;
		height: 300px;
	}

	.localizacao h2.segundo {
		text-align: center;
	}

	.localizacao .box-img img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}

	.localizacao .box-img::after{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
		z-index: 2;
	}

	.localizacao h3 {
		padding: 0;
		border: none;
		text-align: center;
	}

	.contato {
height: auto;
    padding-bottom: 80px;
	}

	.vetor10 {
		width: 350px;
    top: -22px;
	}

	.vetor11 {
	        width: 150px;
	}

	.contato .conteudo {
		padding: 60px 30px;
		width: 95%;
		margin: 0 auto;
	}

	.contato .info-left {
		padding: 0 0 45px 0;
		border-right: none;
	} 

	.contato .info-left h3 {

	}

	.contato .info-left .botao {
		font-size: 14px;
	}

	.contato .info-left h3::after {
		display: block !important;
	}

	.contato .info-left p {
		margin: 0;
	}

	.contato .info-left h2 {
		 font-size: 20px;
		 margin-bottom: 25px;
		 margin-top: 25px;
	}

	.contato .info-left h2 span {
		display: inline;
	}

	.contato .info-left .botoes {
        justify-content: start;
		flex-direction: row;
		        margin-top: 25px;
	}

	.contato .info-left .botoes .botao {
	width: fit-content;
	    padding-right: 11px;
	font-size: 0;		
	}

	.contato .info-right {
		padding: 0;
		border: none;
	}

	.formpadrao .form-bottom {
		    flex-direction: column;
    justify-content: center;
	}

	footer {
		padding: 80px 0 100px 0;
	}

	footer .flex-logos {
		gap: 30px;
		flex-direction: column;
	}

	footer .info-bottom {
		flex-direction: column;
		        width: 90%;
	}

	footer .linha {
		margin: 35px auto;
	}

	.barrafixa {
gap: 20px;
		background: #fff;
		padding: 13px 20px;
	}

	.barrafixa .item p {
		display: none;
	}

	.barrafixa .item-brand {
		display: none;
	}

	header .menu-toggle {
		bottom: 22px;
        right: 20px;
	}

	.barrafixa .item {
		position: static;
        transform: none;
        width: 48px;
        height: 48px;
        justify-content: center;
	}

	.barrafixa:hover {
		width: auto;
	}

		.barrafixa .item:hover .icon {
		transform: none;
	}

	.form-modal {
		width: 95% !important;
		padding: 40px 25px !important;
	}

	.form-modal .left .header h5 {
    font-size: 12px;
	}

	.form-modal .fancybox-close-small {
		color: #212529 !important;
	}

	.form-modal .conteudo {
		flex-direction: column;
		gap: 30px;
	}

	.form-modal .left {
		padding: 0;
		border: 0;
		margin: 0;
		width: 100%;
		max-width: 100%;
	}

	.form-modal#modal-telefone {
width: 95% !important;
        padding: 50px 45px !important;
        max-width: 350px;
	}

	.form-modal .left .texto {
		max-width: 280px;
		margin: 20px 0;
	}

	.form-modal .formpadrao textarea {
		height: 90px;
	}

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

	.form-modal.form-modal-whatsapp::before,
	.form-modal.form-modal-telefone::before {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		content: '';
		display: block;
		background: url(../images/brand-modal-email.svg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: bottom;
	}

	.form-modal.form-modal-whatsapp .left .header {
		margin-bottom: 30px;
	}

	.form-modal.form-modal-telefone .left .header {
		margin-bottom: 20px;
	}

	.form-modal.form-modal-telefone .left .contatos {
		padding: 20px 0;
		margin: 20px auto;
	}

	.form-modal .formpadrao .botao {
		font-size: 13px;
		padding: 14px 20px;
	}

	.fancybox-button svg path {
		fill: #fff !important;
	}

	.form-modal.form-modal-telefone .left .contatos p a {
		font-size: 18px;
	}
}

/* --- */
@media (width < 500px) {
	.form-modal::before {
		width: 130%;
	}

	.form-modal.form-modal-email::before {
		width: 150%;
	}
} 

@media (width < 400px) {

	.contato .info-left .botao {
		width: 100%;
		justify-content: center;
	}
} 