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;
}

@font-face {
    font-family: 'BommerSans-Light';
    src: url('fonts/BommerSans-Thin.woff2') format('woff2'),
         url('fonts/BommerSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'BommerSans-Light';
    src: url('fonts/BommerSans-Light.woff2') format('woff2'),
         url('fonts/BommerSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'BommerSans-Light';
    src: url('fonts/BommerSans-Regular.woff2') format('woff2'),
         url('fonts/BommerSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}

/* GERAL */

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

body {
	background: #f0efec;
	font-family: BommerSans-Light, sans-serif;
}

*::selection {
	background-color: #1F374F;
	color: #fff;
}

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

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

section {

}

.icon-nav {
	display: flex;
	width: 40px;
	height: 40px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	background: #F0EFEC;
	border: 1px solid #F0EFEC;
	transition: all .5s;
}

.icon-nav:hover {
	background: transparent;
	border-color: #1F374F;
}

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

.subtitulo {
	color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 15.6px */
letter-spacing: 5.76px;
text-transform: uppercase;
}

.botao {
	padding: 12px 16px;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 11px;
	width: fit-content;
	transition: all .5s;
	border: 1px solid transparent;
	color: #000;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.botao svg {
}

.botao:hover {
	background: #1F374F;
	color: #fff;
}

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

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


.yes-desk {
	display: block;
} 


/* HEADER */

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

.privacy-policy header,
.page-template-template-obrigado header,
.error404  header {
	background: #1F374F;
	position: static;
}

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

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

header .laterais {
	width: 114px;
}

header .menu-toggle,
header .close {
	border-radius: 8px;
	border: 1px solid #F0EFEC;
	background: transparent;
    cursor: pointer;
	width: 38px;
	height: 38px;
	transition: all .5s;
	position: relative;
	    display: flex;
    align-items: center;
    justify-content: center;
}

header path {
	transition: all .5s;
}

header .menu-toggle:hover {
	background: #fff;
}

header .menu-toggle:hover path {
	stroke: #1F374F;
}

header .close {
	border-color: #1F374F;
	    position: absolute;
    left: 40px;
    top: 40px;
}

header .close:hover {
	background: #1F374F;
}

header .close:hover path {
stroke: #fff;
}
	
header .menu {
height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    max-width: 50vw;
    border-radius: 0;
    border: 0;
    overflow: hidden;
    padding: 60px;
	    justify-content: center;
    transition: all .5S;
    background: #fff;
    transform: translateX(-130%);
	opacity: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 25px;
}

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

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

header .menu ul li {
    padding: 10px 0;
	margin: 10px 0;
	text-align: center;
}

/* Estilo base do link */
header .menu ul li a {
  position: relative;           /* Necessário para o ::after funcionar */
  display: inline-block;        /* Faz o underline ter largura do texto */
  color: rgba(31, 55, 79, 0.673);
  text-align: center;
  font-family: BommerSans-Light;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s;
}

/* Cor ao passar o mouse */
header .menu ul li a:hover {
  color: rgb(31, 55, 79);
}

/* Underline animado */
header .menu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* distância do texto */
  width: 0;
  height: 2px;
  background-color: rgb(31, 55, 79); /* mesma cor do hover */
  transition: width 0.3s ease;
}

/* Crescimento do underline no hover */
header .menu ul li a:hover::after {
  width: 100%;
}

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

header .logo svg.torresani-logo {
	display: none;
}

header.header-scroll .logo svg {
	height: 22px;
}


/* --- */


/* TOPO */

.topo {
	height: 90vh;
	position: relative;
	background: #000;
	padding: 120px 0 70px 0;
	display: flex;
	align-items: end;
}

.topo::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-image: url(../images/barra-banner.svg);
	height: 20px;
}

.topo .slide-topo {
    position: absolute !important;
    height: 90vh;
    width: 100vw;
    top: 0;
    left: 0;
}

.topo .slide-topo .item {
	height: 90vh;
	width: 100vw;
    background-position: center;
    background-size: cover;	
	position: relative;
}

.topo .slide-topo .item::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 25.01%);
}

.topo .slide-topo .item::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(96.61% 78.61% at 100% 56.71%, rgba(0, 0, 0, 0.00) 47.1%, rgba(0, 0, 0, 0.55) 100%);
}

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

.topo .infos .local {
	display: flex;
	align-items: center;
	gap: 15px;

	color: #F0EFEC;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
}

.topo .infos h1 {
	margin: 50px 0 40px 0;
	color: #F0EFEC;
	font-family: BommerSans-Light;
	font-size: 32px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	max-width: 435px;
}

.topo .infos .destaques {
	display: flex;
	align-items: center;
	gap: 40px;
}

.topo .infos .destaques p {
	color: #F0EFEC;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
	position: relative;
}

.topo .infos .destaques p::after {
content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.60);
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.topo .infos .destaques p:last-child::after {
	display: none;
}

.topo .infos .botao {
	margin-top: 45px;
}

/* --- */


/* DIFERENCIAIS */

.diferenciais {
	padding: 80px 0;
	overflow: hidden;
}

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

.diferenciais .infos {
	width: 50%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.diferenciais .box-diferenciais {
	max-width: 200px;
	width: 100%;
max-height: 425px;
position: relative;
}

.diferenciais .box-diferenciais::before {
content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -200px;
    background: linear-gradient(180deg, #F0EFEC 20%, rgb(240 239 236 / 52%) 90%, #f0efec00 100%);
    width: 100%;
    height: 184px;
    z-index: 2;
}

.diferenciais .box-diferenciais::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: -200px;
    background: linear-gradient(180deg, #f0efec00 0%, rgb(240 239 236 / 51%) 20%, #F0EFEC 70%);
    width: 100%;
    height: 220px;
}

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

.diferenciais .item-diferencial {
	padding: 23px 30px;
	    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
	border: none !important;
}

.diferenciais .item-diferencial .icone {
	display: flex;
	border-radius: 32px;
background: #FFF;
	align-items: center;
	justify-content: center;
width: 64px;
height: 64px;
}

.diferenciais .item-diferencial .icone svg {
    max-width: 45px;
    width: 100%;
    max-height: 30px;
}

.diferenciais .item-diferencial .icone path {
	stroke: #808080;
}

.diferenciais .item-diferencial p {
	color: rgba(0, 0, 0, 0.60);
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.98px;
	text-transform: uppercase;
	/* min-height: 41.6px; */
}

.diferenciais .conteudo {
width: 100%;
max-width: 275px;
}

.diferenciais h2 {
color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 31.2px */
text-transform: uppercase;
    margin: 40px 0;
}

.diferenciais .texto {
	margin-bottom: 40px;
}

.diferenciais .texto p {
	color: rgba(31, 55, 79, 0.65);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 14px;
font-style: normal;
font-weight: 400;
margin-bottom: 15px;
line-height: 190%; /* 26.6px */
}

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

.diferenciais .slide-diferenciais-imagens {
	width: 50%;
}

/* --- */


/* VÍDEOS */

.videos {
	height: auto;
	padding: 74px 12px 47px 12px;
	position: relative;
	background-color: #D6C9B9;
	margin-top: 20px;
}

.videos::before {
	content: '';
	display: block;
	position: absolute;
	top: -20px;
	width: 100%;
	background-image: url(../images/barra-videos.svg);
	height: 20px;
	right: 0px;
	background-position: right;
}

.videos .slide-videos {
	max-width: 100%;
	height: auto;
}

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

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

.videos .video-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	height: 75vh;
	border-radius: 3px;
}

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

.videos .video-item a::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s;

	background:
		linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%),
		radial-gradient(
			116.61% 78.61% at 120% 56.71%,
			rgba(31, 55, 79, 0.00) 47.1%,
			rgba(9, 19, 29, 0.41) 100%
		);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.videos .video-item a::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
	opacity: 0;
	z-index: 1;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%),
		radial-gradient(
			116.61% 78.61% at 120% 56.71%,
			rgba(31, 55, 79, 0.00) 47.1%,
			rgba(9, 19, 29, 0.6) 100%
		);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 🔧 Escurece mais no hover */
.videos .video-item:hover a::after {
	
}

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

.videos .video-item:hover .play-button {
	border-color: transparent;
}

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

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

/* ✅ Botão play com rotação suave no hover */
.videos .video-item .play-button {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid transparent;
	transition: transform .5s;
}

/* 🔁 Anima o botão ao passar o mouse */
.videos .video-item:hover .play-button {
	transform: rotate(360deg);
}

/* ✅ Texto “ASSISTA AO VÍDEO” */
.videos .video-item p {
	color: #FFF;
	text-align: center;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 100;
	line-height: normal;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	transition: font-weight 0.3s ease;
}

/* 💪 Negrito no hover */
.videos .video-item:hover p {
	font-weight: bold;
}

/* GALERIA */

.galeria {
	padding: 47px 0 0px 0;
	    /* background: linear-gradient(180deg, #D6C9B9 70%, #f0efec 50%); */
		background: #D6C9B9;
		position: relative;
		height: 695px;
}

/* CSS: aparência de seta inativa */
.nav-galeria .prev.is-disabled {
  opacity: 0.45;
  pointer-events: none; /* evita cliques */
  cursor: default;
}


.galeria::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-image: url(../images/barra-galeria.svg);
	height: 20px;
}

.galeria .container {
	position: relative;
	z-index: 2;
}

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

.galeria .info-topo .nav-galeria {
		display: flex;
	align-items: center;
	gap: 8px;
}

.galeria .slide-galeria {
	width: 50%;
	margin-left: auto;
}

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

.galeria .slide-mosaico {
width: 595px;
	height: 745px;
}

.galeria .grid-mosaico {
    display: flex;
    flex-direction: column; /* garante uma embaixo da outra */
    gap: 10px;
    height: 100%;
	margin: 0 5px;
}

.galeria .grid-mosaico .item-mosaico {
	transition: all .5s;
	position: relative;
	padding: 32px 22px;
	cursor: pointer;
    display: flex;
    overflow: hidden;
    justify-content: end;
    flex-direction: column;
}

.galeria .grid-mosaico .item-mosaico::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
    background: radial-gradient(149.91% 93.38% at 66.5% 28.87%, rgba(31, 55, 79, 0.00) 67.62%, rgba(31, 55, 79, 0.50) 100%);
	transition: all .5s;
	opacity: 0;
	z-index: 2;
}

.galeria .grid-mosaico .item-mosaico:hover::after {
	opacity: 1;
}

.galeria .grid-mosaico.rows-1 .item-mosaico {
    flex: 1 1 100%;
	height: 100%;
}
.galeria .grid-mosaico.rows-2 .item-mosaico {
    flex: 1 1 50%;
	height: 50%;
}
.galeria .grid-mosaico.rows-3 .item-mosaico {
    flex: 1 1 33.33%;
	height: 33.33%;
}

.galeria .item-mosaico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	object-position: center;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .5s;
	z-index: 1;
}

.galeria .grid-mosaico .item-mosaico:hover img {
	transform: scale(1.03);
}

.galeria .info-bottom {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 4;
	transition: all .5s;
	opacity: 1;
	transform: translateY(90px);
	opacity: 0;
	justify-content: space-between;
}

.galeria .grid-mosaico .item-mosaico:hover .info-bottom {
	transform: translateY(0);
	opacity: 1;
}

.galeria .info-bottom p {
	color: #F0EFEC;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 21px;
	font-style: normal;
	font-weight: 100;
	line-height: 130%; /* 31.2px */
	text-transform: uppercase;
	white-space: nowrap;
}

.galeria .info-bottom .linha svg {
	width: 100%;
}

.galeria .grid-mosaico .item-mosaico button:hover path {
	stroke: #fff;
	fill: transparent;
}

/* PLANTAS */

.lazer-convivio {
	padding: 330px 0 90px 0;
}

.lazer-convivio .lazer-select {
		display: block;
		width: 100%;
		padding: 15px;
		padding-right: 40px; /* Ajusta espaço para a seta */
		cursor: pointer;
		transition: all 0.5s;
		color: var(--Primary-Light, #fff);
font-family: Inter;
background: #1F374F;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    max-width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-fff;
		border: 1px solid #fff;
		border-radius: 3px;
		appearance: none; /* Remove a seta padrão */
		background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTAgNiIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEgMS4wMjFMNSA1LjAyMUw5IDEuMDIxIiBzdHJva2U9IiNFMkQ3QkQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==');
		background-repeat: no-repeat;
		background-position: calc(100% - 15px) center; /* Move a seta para a esquerda */
		background-size: 10px 6px;
		    margin: 0 auto 20px auto;
}

.lazer-convivio .info-topo {
	display: flex;
	align-items: end;
	gap: 30px;
	justify-content: space-between;
	margin: 45px 0 50px 0;
}

.lazer-convivio h2 {
	color: #1F374F;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 24px;
	font-style: normal;
max-width: 530px;
	font-weight: 300;
	line-height: 130%; /* 31.2px */
	text-transform: uppercase;
}

.lazer-convivio .box-img {
position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: content-box;
	height: 350px;
}

.lazer-convivio .box-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
}

.lazer-convivio .box-img a.active-img {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out;
}

.lazer-convivio .box-img img {
    max-width: 950px;
	margin: 0 auto;
	width: 100%;
	    display: block;
		height: 100%;
		object-fit: contain;
}

.lazer-convivio .abas {
	display: flex;
	margin-top: 40px;
	justify-content: center;
}

.lazer-convivio .lazer-select {
	display: none;
}

.lazer-convivio .abas .left {
	display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
	align-self: start;
}

.lazer-convivio .aba-btn {
   color: #1F374F;
   white-space: nowrap;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 8px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	opacity: .4;
    border: none;
	transition: all .5s;
	width: 100%;
}

.lazer-convivio .aba-btn.active svg {
	transform: rotate(-90deg);
}

.lazer-convivio .aba-btn.active,
.lazer-convivio .aba-btn:hover {
	opacity: 1;
}

.lazer-convivio .linha {
    background: linear-gradient(0deg, rgba(31, 55, 79, 0.00) 0%, rgba(31, 55, 79, 0.22) 100%);
    width: 1px;
    margin: 0 60px;
}

.lazer-convivio .right {
	width: 60%;
}

.lazer-convivio .aba-conteudo {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazer-convivio .aba-conteudo.active {
    display: block;
    opacity: 1;
}

.lazer-convivio .aba-conteudo ol {
    padding-left: 20px;
    list-style-type: decimal;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
	list-style-position: inside;
}

.lazer-convivio .aba-conteudo ol li {
	color: rgba(31, 55, 79, 0.65);
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 190%; /* 24.7px */
	opacity: .7;
}

.lazer-convivio .aba-conteudo ol {
  counter-reset: item;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}

.lazer-convivio .aba-conteudo ol li {
  counter-increment: item;
  position: relative;
  padding-left: 36px; /* espaço para a bolinha azul à esquerda */
  color: rgba(31, 55, 79, 0.65);
  font-family: BommerSans-Light;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 190%;
  opacity: 0.7;
}

/* Número com bolinha azul */
.lazer-convivio .aba-conteudo ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 24px;
  height: 24px;
  background-color: #1F374F;
  color: #f0efec;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDES */
.slides {
	padding: 100px 0;
}

.slides .container {
	position: relative;
}

.slides .conteudo {
	width: 100%;
	position: relative;
}

.slides .conteudo.slide2 {
	margin-top: 43px;
}

.slides .conteudo a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	background: radial-gradient(216.42% 131.58% at 104.54% -16.53%, rgba(31, 55, 79, 0.00) 67.62%, rgba(31, 55, 79, 0.50) 100%);
    transition: all .5s;
    opacity: 0;
    z-index: 4;
}

.slides .conteudo a:hover::after {
	opacity: 1;
}

.slides .conteudo .container-interno {
		width: 100%;
	position: relative;
	background: #fff;
}

.slides .conteudo .infos {
    max-width: 37%;
    padding: 53px;
	    height: 600px;
}

.slides .conteudo.slide1 .infos {
	margin-left: auto;
    height: 600px;
    display: flex
;
    justify-content: center;
    flex-direction: column;
}

.slides .conteudo.slide2 .infos {
    margin-right: auto;
    height: 600px;
    display: flex
;
    justify-content: center;
    flex-direction: column;
}

.slides .nav-slide1 {
    position: absolute;
    z-index: 5;
    right: 510px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: 32px;
}

.slides .nav-slide2 {
    position: absolute;
    z-index: 5;
    left: 510px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: 32px;
}

.slides .conteudo h2 {
	color: #1F374F;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%; /* 31.2px */
	text-transform: uppercase;
	margin-bottom: 45px;
}

.slides .conteudo.slide1 h2 {
	max-width: 227px;
}

.slides .conteudo.slide2 h2 {
max-width: 273px;
}

.slides .conteudo .texto p {
		color: rgba(31, 55, 79, 0.65);
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 190%; /* 26.6px */
	margin-bottom: 30px;
}

.slides .conteudo .texto ul {
    list-style: disc;
    padding-left: 20px;
}

.slides .conteudo .texto ul li {
color: rgba(31, 55, 79, 0.65);
leading-trim: both;

text-edge: cap;
font-family: BommerSans-Light;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.84px;
text-transform: uppercase;
    margin-bottom: 10px;
}

.slides .conteudo .texto ul li:last-child {
	margin-bottom: 0;
}

.slides .conteudo .slide-itens1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 59%;
	z-index: 3;
}

.slides .conteudo .slide-itens1::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	background-image: url(../images/barra-slide1.svg);
	height: 100%;
	z-index: 1;
}

.slides .conteudo .slide-itens2::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	background-image: url(../images/barra-slide2.svg);
	height: 100%;
	z-index: 1;
}

.slides .conteudo .slide-itens2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 59%;
	z-index: 3;
}

.slides .conteudo a {
    position: relative;
    height: 600px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 32px 44px;
}

.slides .conteudo .itens a img {
	    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .5s;
    z-index: 1;
}

.slides .conteudo .info-bottom {
	    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 5;
    transition: all .5s;
    opacity: 1;
    transform: translateY(90px);
    opacity: 0;
    justify-content: right;
}

.slides .conteudo .itens:hover .info-bottom {
	transform: translateY(0);
	opacity: 1;
}

.slides .info-bottom p {
	color: #F0EFEC;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 21px;
	font-style: normal;
	font-weight: 100;
	line-height: 130%; /* 31.2px */
	text-transform: uppercase;
	white-space: nowrap;
}

.slides .info-bottom .linha svg {
	width: 100%;
}

.slides .info-bottom button:hover path {
	stroke: #fff;
	fill: transparent;
}

/* APARTAMENTOS */

.apartamentos {
	padding: 90px 0;
}

.apartamentos .container {
max-width: 1140px;
}

.apartamentos .info-topo {
	display: flex;
	align-items: end;
	gap: 30px;
	justify-content: space-between;
	margin: 45px 0 50px 0;
}

.apartamentos h2 {
	color: #1F374F;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 24px;
	font-style: normal;
	max-width: 384px;
	font-weight: 300;
	line-height: 130%; /* 31.2px */
	text-transform: uppercase;
}

.apartamentos .conteudo {
	display: flex;
}

.apartamentos .abas {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 255px;
	width: 100%;
}

.apartamentos .abas button {
color: #1F374F;
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
    border: 0;
    text-align: start;
    padding: 0;
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.apartamentos .abas button svg {
	        transform: rotate(-90deg);
}

.apartamentos .abas button.active svg {
	transform: rotate(0deg);
}

.apartamentos .abas .linha {
	width: 100%;
	height: 1px;
	background: linear-gradient(270deg, rgba(31, 55, 79, 0.00) 0%, rgba(31, 55, 79, 0.22) 100%);
	margin: 43px 0;
}

.apartamentos .aba-cont {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: relative;
  height: 0px;
}

.apartamentos .aba-botao.active + .aba-cont {
opacity: 1;
    visibility: visible;
    height: auto;
    margin-top: 25px;
}

.apartamentos .aba-cont ul {
	list-style: disc;
	padding-left: 20px;
}

.apartamentos .aba-cont ul li {
    color: rgba(31, 55, 79, 0.65);
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 7px;
}

.apartamentos .aba-cont ul li:last-child {
	margin-bottom: 0;
}

.apartamentos .aba-cont .img {
	display: none;
}

.apartamentos .box-img {
    width: 100%;
    height: 463px;
    text-align: end;
}

.apartamentos .box-img a {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease;
}

.apartamentos .box-img a.visible {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.apartamentos .box-img a img {
	    width: 100%;
    max-width: 750px;
}

/* TOUR */
.tour {
	padding: 30px 12px 180px 12px;
	position: relative;
}

.tour .box-tour {
    padding: 0 20px;
    max-width: 100%;
}

.tour .tour-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 75vh;
    border-radius: 3px;
}

.tour .tour-item a::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
background: linear-gradient(0deg, rgb(0 0 0 / 47%) 0%, rgba(0, 0, 0, 0.40) 100%), radial-gradient(176.61% 78.61% at 100% 56.71%, rgba(31, 55, 79, 0.00) 47.1%, rgb(31 55 79 / 65%) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

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

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

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

.tour .tour-item p {
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 13px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* --- */


/* FICHA TÉCNICA */

.ficha-tecnica {
	height: auto;
	padding: 0 0 100px 0;
	background: #fff;
	position: relative;
}

.ficha-tecnica::after {
	content: '';
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    background-image: url(../images/barra-ficha.svg);
    height: 20px;
}

.ficha-tecnica .ficha-wrapper {
display: flex;
    justify-content: space-between;
    position: relative;
    top: -50px;
	z-index: 4;
	gap: 50px;
}

.ficha-tecnica .ficha-menu {
    max-width: 200px;
	height: 575px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex
;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

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

.ficha-tecnica .subtitulo {
margin-bottom: 90px;
white-space: nowrap;
display: none; 
/* precaucao */
}

.ficha-tecnica .ficha-menu li {
    cursor: pointer;
    transition: all .5s;
    width: 100%;
white-space: nowrap;
	color: rgba(31, 55, 79, 0.40);
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 1.3px;
	text-transform: uppercase;

	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 13px 4px 13px 0;
	margin-bottom: 25px;
}

.ficha-tecnica .ficha-menu li:last-child {
	margin-bottom: 0;
}

.ficha-tecnica .ficha-menu li:hover,
.ficha-tecnica .ficha-menu .active {
color: #1F374F;
}

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

.ficha-tecnica .ficha-menu .active svg {
	transform: rotate(270deg);
}

.ficha-tecnica .ficha-conteudo {
    flex-grow: 1;
    padding: 48px;
    background-color: #1F374F;
	height: fit-content;
    width: 100%;
    max-width: 906px;
}

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

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

.ficha-tecnica .ficha-tab.active .item {
	display: flex;
	align-items: center;
	gap: 18px;
}

.ficha-tecnica .ficha-tab.active .item .icone {
	border-radius: 32px;
	border: 1px solid #FAF9F6;
	background: #FFF;
	display: flex;
	width: 64px;
	height: 64px;
	justify-content: center;
	align-items: center;
}

.ficha-tecnica .ficha-tab.active .item h4 {
color: #FAF9F6;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 160%; /* 19.2px */
letter-spacing: 1.2px;
text-transform: uppercase;
max-width: 280px;
}

.ficha-tecnica .ficha-tab.active .item h4 span {
    color: rgba(250, 249, 246, 0.50);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    text-transform: none;
    display: block;
    margin-top: 6px;
}

.ficha-tecnica .ficha-tab.geral.active {
display: block;
}

.ficha-tecnica .ficha-tab.geral .info-topo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	margin-bottom: 34px;
}

.ficha-tecnica .ficha-tab.geral .info-topo .linha {
	width: 100%;
	height: 1px;
	background: rgba(250, 249, 246, 0.09);
}

.ficha-tecnica .ficha-tab.geral .info-topo h5 {
	color: #FAF9F6;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.ficha-tecnica .ficha-tab.geral .meio-topo {
	    display: flex
;
    justify-content: space-around;

    gap: 20px;
	margin-bottom: 35px;
}

.ficha-tecnica .ficha-tab.geral .meio-topo .box {
	align-self: center;
	padding: 15px 0;
}

.ficha-tecnica .ficha-tab.geral .meio-topo h5 {
	color: #FAF9F6;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 1.3px;
margin-bottom: 28px;
text-transform: uppercase;
}

.ficha-tecnica .ficha-tab.geral .meio-topo .itens {
	display: flex;
	justify-content: center;
	gap: 30px;
	text-align: center;
}

.ficha-tecnica .ficha-tab.geral .meio-topo .itens .icone,
.ficha-tecnica #diferenciais.ficha-tab.active .item .icone
 {
	display: flex;
width: 64px;
height: 64px;
justify-content: center;
align-items: center;
border-radius: 32px 0 32px 32px;
border: 1px solid #FAF9F6;
background: #FAF9F6;
}

.ficha-tecnica .ficha-tab.geral .meio-topo p {
	color: #FAF9F6;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 160%; /* 19.2px */
letter-spacing: 1.2px;
text-transform: uppercase;
margin-top: 8px;
}

.ficha-tecnica .ficha-tab.geral .meio-topo .item {
	display: block;
}

.ficha-tecnica .ficha-tab.geral .meio-topo .linha-meio {
	width: 1px;
	background: rgba(250, 249, 246, 0.09);
}

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

.ficha-tecnica .ficha-tab.geral .info-bottom p {
color: #FAF9F6;
text-align: center;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 160%; /* 19.2px */
letter-spacing: 1.2px;
text-transform: uppercase;
}

.ficha-tecnica .ficha-tab.geral .info-bottom p span {
color: rgba(250, 249, 246, 0.50);
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 160%; /* 22.4px */
display: block;
margin-top: 7px;
    letter-spacing: normal;
    text-transform: none;
}

/* --- */


/* LOCALIZAÇÃO */

.localizacao {
	padding: 50px 0 300px 0;
    height: auto;
	background: #fff;
}

.localizacao h2 {
color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 31.2px */
text-transform: uppercase;
margin: 55px 0 38px 0;

}

.localizacao .texto p {
color: rgba(31, 55, 79, 0.65);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 190%; /* 26.6px */
	margin-bottom: 15px;
}

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

.localizacao .linha {
background: linear-gradient(270deg, rgba(31, 55, 79, 0.00) 0%, rgba(31, 55, 79, 0.22) 100%);
    width: 100%;
    height: 1px;
    margin: 35px 0;
}

.localizacao .endereco {
color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 15.6px */
letter-spacing: 5.76px;
text-transform: uppercase;
}

.localizacao .endereco span {
color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 31.2px */
text-transform: uppercase;
	display: block;
	    letter-spacing: normal;
    margin-top: 15PX;
}

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

.localizacao .botoes .icon {
	border-radius: 1503.906px;
border: 1.504px solid rgba(31, 55, 79, 0.10);
	background: transparent;
	display: flex;
width: 48px;
height: 48px;
flex-direction: column;
justify-content: center;
align-items: center;
	transition: all .5s;
}

.localizacao .botoes .icon:hover {
	background: #1F374F;
	border-color: #1F374F;
}

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

.localizacao .botoes .icon:hover path {
	fill: #fff;
}

.localizacao .escolha {
	background-color: #FAF9F6;
	padding: 31px;
}

.localizacao .escolha .conteudo {
	position: relative;
	height: 520px;
	width: 100%;
}

.localizacao .escolha .imagem, 
.localizacao .escolha .iframe-mapa {
	opacity: 0;
	position: absolute;
	left: 0;
	margin-top: 0;
	width: 100%;
	height: 100%;
	transition: all .5s;
	cursor: pointer;
}

.localizacao .escolha .imagem img {
	    width: 100%;
    height: 100%;
    object-fit: cover;
object-position: 0% 60%;
}

.localizacao .escolha iframe {
	width: 100%;
	height: 100%;
}

.localizacao .escolha .imagem.active, 
.localizacao .escolha .iframe-mapa.active {
	opacity: 1;
	z-index: 4;
}

.localizacao .escolha .info-bottom {
	display: flex;
	justify-content: center;
	margin-top: 28px;
	align-items: center;
}

.localizacao .escolha .info-bottom button {
color: rgba(31, 55, 79, 0.40);
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	width: 50%;
	transition: all .5s;
	padding: 10px;
	    height: fit-content;
	    background: transparent;
	border: 0;
}

.localizacao .escolha .info-bottom .linha {
	background: linear-gradient(0deg, rgba(31, 55, 79, 0.00) 0%, rgba(31, 55, 79, 0.22) 100%);
	height: 34px;
	width: 1px;
	    margin: 0 10px;
}


.localizacao .escolha .info-bottom button.active {
color: #1F374F;
}

.localizacao .escolha .info-bottom button:hover {
	transform: scale(1.05);
}

/* --- */


/* CONTATO */

.contato {
    padding: 0 0 250px 0;
	height: auto;
	position: relative;
}

.contato video {
	    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

.contato::after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background-image: url(../images/barra-contato.svg);
    height: 20px;
}

.contato .container {
	position: relative;
	z-index: 5;
}

.contato .conteudo {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: center;
	top: -190px;
}

.contato .conteudo .familia {
	/* position: absolute;
	left: 0;
	bottom: 0;
	height: 575px;
	width: 471px; */
	position: relative;
    left: 2px;
}

.contato .info-right {
	background-color: #FAF9F6;
	padding: 60px;
	max-width: 700px;
	height: 493px;
}


.contato h2 {
color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 31.2px */
text-transform: uppercase;
margin: 24px 0 0 0;
}

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

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

.contato .infos .icon {
display: flex;
width: 48px;
height: 48px;
justify-content: center;
align-items: center;
background: #F0EFEC;
transition: all .5s;
}

.contato .infos .icon:hover {
	background: #1F374F;
}

.contato .infos .icon.wpp:hover {
	background: #25D366;
}

.contato .infos .icon path {
	transition: all .5s;
}

.contato .infos .icon:hover path {
	fill: #fff;
}


.contato .logo-marine {
	margin: 0 auto 0 auto;
	display: block;
}

/* --- */


/* FOOTER */

footer {
    background-color: #1E5949;
    padding: 65px 0 0 0;
	position: relative;
}

footer::before {
content: '';
    display: block;
    position: absolute;
    top: -20px;
    width: 100%;
	background-image: url(../images/barra-footer.svg);
	height: 20px;
	    right: 0px;
    background-position: right;
}

footer .conteudo {
	display: flex;
}

footer .conteudo .linha {
	width: 1px;
	background: rgba(255, 255, 255, 0.10);
	margin: 0 26px;
}

footer .conteudo .um h2 {
	color: #F0EFEC;
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 32.5px */
text-transform: uppercase;
margin-top: 70px;
}

footer .conteudo .um h2 span {
	font-weight: 700;
}

footer .conteudo .texto {
	color: #F0EFEC;
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 18.2px */
    max-width: 905px;
margin-bottom: 25px;
}

footer .conteudo .texto b {
	font-weight: 700;
}

footer .conteudo .box {
	background: #175444;
	text-align: center;
	padding: 30px;

	color: rgba(255, 255, 255, 0.70);
text-align: center;
font-family: Inter;
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 1.3px;
text-transform: uppercase;
}

footer .conteudo .dois .box {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

footer .conteudo .box span {
	color: #FFF;
text-align: center;
font-family: Inter;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -1.6px;
text-transform: uppercase;
white-space: nowrap;
}

footer .conteudo .cima {
	    display: flex;
    gap: 8px;
}

footer .conteudo .baixo {
	 display: flex;
	 margin-top: 8px;
    gap: 8px;
}

footer .conteudo .tres span {
margin-bottom: 7px;
    display: block;
}

footer .info-bottom {
	background: #F0EFEC;
	padding: 32px 0;
	    margin-top: 60px;
}

footer .info-bottom  .container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

footer .info-bottom p,
footer .info-bottom a {
color: rgba(31, 55, 79, 0.40);
text-align: right;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
transition: all .5s;
}

footer .info-bottom svg {
	transition: all .5s;
}

footer .info-bottom svg:hover {
	transform: scale(1.07);
}

footer .info-bottom a:hover {
	color: #1F374F;
	text-decoration: underline;
}

/* --- */


/* FORMULÁRIOS */

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

.formpadrao .topo-form {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 8px;
	margin-bottom: 8px;
}

.formpadrao input {
	width: 33.33%;
}

.formpadrao input, .formpadrao textarea {
	padding: 15px 18px;
	    border: 0;
border-left: 2px solid rgba(31, 55, 79, 0.08);
    background: rgba(240, 239, 236, 0.20);
color: rgba(31, 55, 79, 0.708);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 190%; /* 22.8px */
}

.formpadrao textarea {
	width: 100%;
	height: 135px;
}

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

.formpadrao .botao {
	border-radius: 0;
	background: #F0EFEC;
	color: #1F374F;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: BommerSans-Light;
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	padding: 12px 16px;
    width: fit-content;
    margin: 0;
	border: 0;
}

.formpadrao .botao:hover {
	background: #1F374F;
	color: #fff;
}

.formpadrao input::placeholder, .formpadrao textarea::placeholder{
color: rgba(31, 55, 79, 0.40);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 190%; /* 22.8px */
}

.formpadrao .politica input[type="checkbox"], .wpcf7-acceptance input[type="checkbox"]{
    float: left;
    width: 22px !important;
    height: 22px !important;
    margin-right: 15px;
	margin-bottom: 0;
}
.formpadrao .politica span, .wpcf7-acceptance .wpcf7-list-item-label{
color: #1f374fa1;
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 150px;
    margin-top: -5px;
    display: block;
}

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



/* --- */


/* NAV-FIXO E MODAIS */

.barrafixa {
	padding: 0 0 8px 0;
	height: auto;
	right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    position: fixed;
    align-items: center;
	gap: 8px;
    top: auto;
    margin: 0;
    z-index: 30;
	transition: all .5s;
border-radius: 1000px;
background: #FFF;
    overflow: visible;
	border: 1px solid #f0efec;
	width: fit-content;
}

.barrafixa .item-brand {
	display: flex;
	width: 68px;
	height: 68px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 102px;
position: relative;
    background: #1F374F;
    top: -1px;
}

.barrafixa .item {
	cursor: pointer;
	transition: all .5s;
		display: flex;
	width: 48px;
	height: 48px;
	justify-content: center;
	align-items: center;
border-radius: 1000px;
background: #F0EFEC;
}

.barrafixa .item:hover {
	transform: scale(1.08);
	background: #1F374F;
}

.barrafixa .item svg path {
  transition: fill 0.3s;
  fill: #1F374F; /* Cor padrão (azul escuro) */
}

.barrafixa .item:hover svg path {
  fill: #F0EFEC !important; /* Cor clara no hover */
}




.barrafixa .item.wpp {
	background: #25D366;
}
.barrafixa .item.wpp:hover {
	background: #1AA34A; /* um tom mais escuro de verde */
}
.barrafixa .item.wpp svg path {
	fill: #fff !important;
}




.form-modal .fancybox-close-small {
	right: 10px !important;
}

.form-modal {
	border-radius: 0px !important;
	background: var(--100, #FFF) !important;
	position: relative !important;
overflow: visible !important;
	padding: 45px !important;
	max-width: 492px !important;
	width: 100%;
}

.form-modal.form-modal-email {
	max-width: 753px !important;
}

.form-modal::before {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    width: 100%;
    background-image: url(../images/barra-modal-outros.svg);
    height: 20px;
    right: 0px;
    background-position: right top;
}

.form-modal-email::before {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    width: 100%;
    background-image: url(../images/barra-modal-email.svg);
    height: 20px;
    right: 0px;
    background-position: right top;
}

.form-modal .icon {
	display: flex;
	width: 64px;
	height: 64px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 32px;
	background: #1F374F;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -52px;
}


.form-modal.form-modal-email.form-modal .icon {
	    transform: none;
    left: 45px;
}

.form-modal.form-modal-whatsapp .icon {
	background: #25D366;
}

.form-modal .conteudo p {
	color: #1F374F;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 15.6px */
letter-spacing: 5.76px;
text-transform: uppercase;
}

.form-modal .conteudo p span {
	display: block;
	color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 31.2px */
text-transform: uppercase;
margin-top: 6px;
}

.form-modal-email .conteudo p {
text-align: start;
}

.form-modal .conteudo .numero {
	color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 32px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 41.6px */
text-transform: uppercase;
margin: 60px auto;
letter-spacing: normal;
display: block;
    text-align: center;
}

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

.form-modal .botao {
background: #F0EFEC;
    margin: 0;
}

.form-modal-telefone .botao {
    margin: 0 auto;
}

.form-modal .botao:hover {
	background: #1F374F;
	color: #fff;
}

.form-modal.form-modal-whatsapp .formpadrao input, .form-modal.form-modal-whatsapp .formpadrao textarea {
	width: 100%;
	margin-bottom: 8px;
}

.form-modal.form-modal.form-modal-whatsapp .formpadrao .botao {
	width: fit-content;
	margin: 0;
}

.form-modal .formpadrao .botao:hover {
	transform: scale(1.05);
}



.modal-politica {
	max-width: 900px !important;
	padding-right: 20px !important;
}

.modal-politica h1 {
	display: block;
    color: #1F374F;
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
	margin-bottom: 20px;
    text-transform: uppercase;
}

.modal-politica .content {
max-height: 70vh;
    overflow: auto;
	padding-right: 24px;
	scrollbar-width: thin; /* Firefox */
  scrollbar-color: #1F374F transparent; /* Firefox */
}

.modal-politica .content::-webkit-scrollbar {
  width: 8px; /* largura da barra vertical */
  height: 8px; /* altura da barra horizontal */
  background: transparent; /* fundo da scrollbar */
}

.modal-politica .content::-webkit-scrollbar-thumb {
  background-color: #1F374F; /* cor da barrinha */
  border-radius: 10px;       /* borda arredondada */
  border: 2px solid transparent; /* dá espaçamento interno */
}

.modal-politica .content::-webkit-scrollbar-track {
  background: transparent; /* fundo da trilha */
}

.modal-politica::before {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    width: 100%;
    background-image: url(../images/barra-modal-email.svg);
    height: 20px;
    right: 0px;
    background-position: right top;
	background-size: cover;
}

.modal-politica .content p {
    color: rgba(31, 55, 79, 0.65);
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 190%;
    margin-bottom: 15px;
}

.modal-politica .content strong {
    font-weight: 700;
}

.modal-politica .content a {
    color: rgba(31, 55, 79, 0.65);
    font-weight: 400;
}

.modal-politica .content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.modal-politica .content li {
    color: rgba(31, 55, 79, 0.65);
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 190%;
    margin-bottom: 10px;
}

.modal-politica .content h2, .modal-politica .content h3, .modal-politica .content h4, .modal-politica .content h5, .modal-politica .content h6 {
    color: #1F374F;
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 15px;
    margin-top: 10px;
}


.erro404,
.obrigado {
	text-align: center;
	padding: 90px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.erro404 h1 {
	font-size: 250px;
	line-height: 80%;
	color: #1F374F;
font-family: BommerSans-Light;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.obrigado h1 {
	font-size: 150px;
	line-height: 80%;
    color: #1F374F;
font-family: "BommerSans-Light";
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.erro404 p,
.obrigado p {
color: rgba(31, 55, 79, 0.65);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 26.6px */
}

.erro404 .botao,
.obrigado .botao {
	display: block;
    margin: 30px auto 0 auto;
	color: #1F374F;
}

.erro404 .botao:hover,
	.obrigado .botao:hover {
		background-color: #1F374F;
		color: #fff;
	}

section.default {
    padding: 100px 0;
}

section.default h1 {
color: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 35px;
font-style: normal;
font-weight: 300;
line-height: 130%; /* 31.2px */
text-transform: uppercase;
	margin-bottom: 30px;
}

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: #1F374F;
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 31.2px */
	margin-bottom: 15px;
	margin-top: 10px;
}

section.default .content-default p {
color: rgba(31, 55, 79, 0.65);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 190%; /* 26.6px */
	margin-bottom: 15px;
}

section.default .content-default li {
	color: rgba(31, 55, 79, 0.65);
leading-trim: both;
text-edge: cap;
font-family: BommerSans-Light;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 190%; /* 26.6px */
	margin-bottom: 10px;
}

section.default .content-default strong {
	font-weight: 700;
}

section.default .content-default a {
	color: rgba(31, 55, 79, 0.65);
	font-style: 400;
}

section.default .content-default ul {
	list-style-type: disc;
	padding-left: 20px;
}

  /* --- */
@media (width < 1400px ) {
	.slides .conteudo .slide-itens1,
	.slides .conteudo .slide-itens2 {
		    width: 62%;
	}
}

  /* --- */
@media (width < 1200px ) {
	.galeria .slide-mosaico {
width: 470px;
}
	.slides .nav-slide1 {
    right: 390px;
	}

	.slides .nav-slide2 {
    left: 390px;
	}
}

/* --- */
@media (width < 991px ) {
	.yes-mobile {
		display: block;
	}

	.yes-desk {
	display: none;
} 

	.container {
		padding: 0 17px;
	}

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

	.obrigado h1 {
		font-size: 60px;
	}

	header {
    height: 60px;
	}

	header .laterais {
        width: auto;
        position: absolute;
        left: 17px;
        top: 50%;
        transform: translateY(-50%);
	}

	header .container {
		position: static;
		justify-content: space-between;
	}

	header.header-scroll .container {
		justify-content: space-between;
	}

	header .laterais:last-child {
		width: auto;
		    position: absolute;
    right: 17px;
	top: 50%;
	transform: translateY(-50%);
	left: auto;
	opacity: 0;
	} 

		header.header-scroll .laterais:last-child {
	opacity: 1;
	} 

	header.header-scroll .laterais:last-child svg {
		    width: 100px;
	}

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

	header .logo svg {
height: 18px !important;
    width: auto;
	}

header .logo svg.torresani-logo {
	display: block;
}

	header.header-scroll .logo {
        left: 70px;
        transform: translate(0%, -50%);
	}
	

	header.header-scroll .logo .torresani-logo {
		opacity: 0;
		transform: translateY(-20px);
	}

	header .menu {
		    max-width: 100vw;
    padding: 40px 20px;
	}

	header .logo svg:first-of-type {height: 22px !important;width: auto;}
header .logo svg {height: 16px !important;width: auto;}

	.topo {
		padding-bottom: 80px;
	}

	.topo .slide-topo .item::after {
    background: radial-gradient(96.61% 0% at 100% 56.71%, rgba(0, 0, 0, 0.00) 47.1%, rgb(0 0 0 / 32%) 100%);
}

	.topo .infos .local {
		justify-content: center;
	}

		.topo .infos h1 {
        font-size: 28px;
        max-width: 300px;
		text-align: center;
margin: 40px auto 30px auto;
	}

	.topo .infos h1 br {
		display: none;
	}

	.topo .infos .destaques {
		justify-content: center;
	}

	.topo .infos .botao {
		margin-left: auto;
		margin-right: auto;
		font-size: 12px;
	}

	.diferenciais {
		height: auto;
padding: 110px 0 70px 0;
	}

	.diferenciais .container {
		flex-direction: column;
		justify-content: center;
		        gap: 50px;
	}

	.diferenciais .infos {
		flex-direction: column-reverse;
		gap: 70px;
		    width: 100%;
	}

	.diferenciais .conteudo {
		    max-width: 450px;
	}

	.diferenciais h2 {
        margin: 35px auto;
    }

	.diferenciais h2 br {
		display: none;
	}

	.diferenciais .texto p br {
		display: none;
	}

	.diferenciais .botao {
margin: 0 auto;
        width: 100%;
        text-align: center;
        justify-content: center;
	}

.diferenciais .box-diferenciais {
	width: 100%;
    max-height: 100%;
	max-width: 100%;
	        overflow: hidden;
	position: relative;
}

.diferenciais .box-diferenciais::before {
		content: '';
        display: block;
        position: absolute;
        left: 0%;
        top: 0;
        background: linear-gradient(90deg, #F0EFEC 0%, rgb(240 239 236 / 52%) 80%, #f0efec00 100%);
		width: 30%;
		min-width: 100px;
        height: 100%;
        z-index: 2;
}

.diferenciais .box-diferenciais::after {
	content: '';
    display: block;
    position: absolute;
    right: 0%;
    bottom: 0;
    background: linear-gradient(90deg, #f0efec00 0%, rgb(240 239 236 / 51%) 20%, #F0EFEC 100%);
    width: 30%;
    height: 100%;
	z-index: 2;
	min-width: 100px;
}

	.diferenciais .item-diferencial {
		padding: 0 15px;
		width: 130px;
	}

.diferenciais .slide-diferenciais-imagens {
	width: 100%;
	left: -11px;
	}

	.videos {
    padding: 90px 0 0 0;
	}

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

.galeria {
	padding-top: 100px;
	    height: auto;
    padding-bottom: 70px;
}

	.galeria .slide-mosaico {
width: 350px;
}

.lazer-convivio {
	    padding: 80px 0;
}

.lazer-convivio .icon-nav {
    display: none;
}

.lazer-convivio .subtitulo {
	text-align: center;
}

.lazer-convivio .info-topo svg {
	display: none;
}

.lazer-convivio .info-topo {
	    justify-content: center;
    text-align: center;
}

.lazer-convivio .box-img {
padding: 0;
    height: auto;
}

.lazer-convivio .abas {
		    flex-direction: column;
    gap: 20px;
}

 .lazer-convivio .abas .left {
display: none;
 }

 .lazer-convivio .lazer-select {
	display: block;
 }

 .lazer-convivio .linha {
	display: none;
 }

 .lazer-convivio .aba-btn {
	width: fit-content;
 }

 .lazer-convivio .aba-conteudo ol {
	    grid-template-columns: repeat(1, 1fr);
		gap: 10px;
 }

 .lazer-convivio .aba-conteudo ol li {
	    width: fit-content;
    margin: 0 auto;
 }

 .slides {
	padding: 50px 0 10px 0;
 }

 .slides .conteudo .slide-itens1, .slides .conteudo .slide-itens2 {
        width: 100%;
	position: static;
 }

 .slide1 .conteudo {
    display: flex;
    flex-direction: column-reverse;
 }

 .slides .conteudo.slide1 .infos,
 .slides .conteudo.slide2 .infos {
	    margin: 0 auto;
    height: auto;
    max-width: 100%;
    padding: 40px 30px;
	width: 95%;
 }

 .slides .conteudo.slide1 h2,
 .slides .conteudo.slide2 h2 {
        max-width: 100%;
        margin-bottom: 25px;
        font-size: 22px;
 }

 .slides .conteudo .slide-itens1::after,
 .slides .conteudo .slide-itens2::before {
	display: none;
 }

 .slides .conteudo a {
	    height: 300px;
		PADDING: 30px;
 }

 .slides .conteudo a::after {
	opacity: 1;
	    background: radial-gradient(216.42% 131.58% at 104.54% -16.53%, rgba(31, 55, 79, 0.00) 67.62%, rgb(31 55 79 / 80%) 100%);
 }

 .slides .info-bottom p {
	    font-size: 13px;
 }

 .slides .nav-slide1,
 .slides .nav-slide2 {
	        right: 0;
			left: auto;
			bottom: auto;
        top: -60px;
        flex-direction: row-reverse;

 }

.slides .conteudo .info-bottom {
	opacity: 1;
	transform: translatey(0);
}

 .slides .conteudo .info-bottom .linha,
 .slides .conteudo .info-bottom .botao {
	display: none;
 }

.apartamentos {
	padding: 110px 0 90px 0;
}

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

.apartamentos .info-topo {
	margin: 35px auto;
	justify-content: center;
}

.apartamentos h2 {
	font-size: 23px;
	text-align: center;
	margin: 0 auto;
}

.apartamentos .info-topo svg {
	display: none;
}

.apartamentos .box-img {
	    height: auto;
    text-align: center;
	display: none !important;
}

.apartamentos .box-img img {
	    margin: 0 auto;
    width: 100%;
    max-width: 420px;
}

.apartamentos .abas {
	    margin: 0 auto;
		    max-width: 300px;
}

.apartamentos .abas button {
	font-size: 20px
}

.apartamentos .abas button br {
	display: none;
}

.apartamentos .conteudo {
	flex-direction: column-reverse;
	    gap: 30px;
}

.apartamentos .abas .linha {
	    margin: 30px auto;
		max-width: 300px;
}

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

	.ficha-tecnica .subtitulo {
		text-align: center;
    margin-bottom: 50px;
	}

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

	.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;
		color: var(--Primary-Light, #fff);
font-family: Inter;
background: #1F374F;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    max-width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-fff;
		border: 1px solid #fff;
		border-radius: 3px;
		appearance: none; /* Remove a seta padrão */
		background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTAgNiIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEgMS4wMjFMNSA1LjAyMUw5IDEuMDIxIiBzdHJva2U9IiNFMkQ3QkQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==');
		background-repeat: no-repeat;
		background-position: calc(100% - 15px) center; /* Move a seta para a esquerda */
		background-size: 10px 6px;
		    margin: 0 auto 30px auto;
	}

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

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

	.ficha-tecnica .ficha-tab.active .item {
        flex-direction: column;
		gap: 15px;
align-items: center;
        text-align: center;
	}

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

	.ficha-tecnica .ficha-tab.active .item h4 span,
	.ficha-tecnica .ficha-tab.geral .info-bottom p span {
	    font-size: 16px;
	}

.ficha-tecnica .ficha-tab.geral .meio-topo {
	flex-direction: column;
}

.ficha-tecnica .ficha-tab.geral .meio-topo .linha-meio {
	height: 1px;
	width: 100%;
}

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

	.localizacao {
padding: 110px 0 300px 0;
		height: auto;
	}

	.localizacao .infos {
        text-align: center;
		        max-width: 360px;
        margin: 0 auto;
		        margin-bottom: 30px;
	}

	.localizacao .botoes {
		justify-content: center;
		gap: 15px;
	}

	.localizacao .escolha .conteudo {
		    height: 400px;
	}

	.localizacao .escolha {
		padding: 20px;
	}

	.localizacao .escolha .imagem img {
		    object-position: 50%;
			    object-fit: contain;

	}

	.localizacao .escolha .info-bottom button {
		font-size: 10px;
    padding: 8px;
	}

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

	.contato .conteudo {
top: -230px;
    flex-direction: column;
	    gap: 30px;
		    align-items: center;
		margin: 0 auto;
	}

	.contato .info-right {
        padding: 40px 25px;
		        height: auto;
				width: 93%;
	}

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

	.contato .infos {
		    flex-direction: column;
    justify-content: center;
    align-items: center;
	}

	.contato h2 {
		text-align: center;
		font-size: 22px;
	}

	.formpadrao .topo-form {
		    flex-direction: column;
	}

	.formpadrao input {
		width: 100%;
		        padding: 13px 17px;
				font-size: 16px;
	}

	.formpadrao input::placeholder, .formpadrao textarea::placeholder {
		font-size: 16px;
	}

	.formpadrao textarea {
		height: 90px;
	}

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

footer .conteudo {
	flex-direction: column;
	    text-align: center;
}

footer .conteudo .um h2 {
	    font-size: 22px;
    max-width: 300px;
    margin: 40px auto 25px auto;
}

footer .conteudo .linha {
	display: none;
}

footer .conteudo .texto {
	    max-width: 390px;
    margin: 0 auto 25px auto;
}

footer .conteudo .dois .box {
	    flex-direction: column;
    width: 90%;
margin: 0 auto 10px auto;
}

footer .conteudo .box {
        width: 90%;
        margin: 0 auto 10px auto;
}

footer .conteudo .cima,
footer .conteudo .baixo {
	display: block;
}



	footer .info-bottom {
        width: 100%;
		margin-top: 0;
	}

	footer .container {
		flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
	}

	.barrafixa {
        right: auto;
        transform: translateX(-50%);
        left: 50%;
        gap: 15px;
        background: #fff;
        border-radius: 50px;
        padding: 8px 6px;
        flex-direction: row-reverse;
        bottom: 20px;
	}

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

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

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

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

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

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

	.form-modal .botao {
		width: 100% !important;
		justify-content: center;
	}

	.formpadrao .politica span, .wpcf7-acceptance .wpcf7-list-item-label {
    max-width: 100%;
    white-space: nowrap;
    margin-top: 2px;

	}

	.formpadrao .form-bottom .politica {
width: 100%;
    max-width: 250px;
	}

	.formpadrao .form-bottom .politica label {
		 width: 100%;
	}
}

/* --- */
@media (width < 991px) {
	header.header-scroll {
	padding: 22px 0;
} 


.galeria .info-topo {
	justify-content: center;
}

.galeria .info-topo .nav-galeria {
	display: none;
}

.galeria .slide-galeria {
    width: 95%;
    margin: 0 auto;
}

.galeria .slide-mosaico {
	    height: auto;
		margin: 0 auto;
		width: 100%;
}

.galeria .grid-mosaico {
	margin: 0;
	gap: 0;
}

.galeria .grid-mosaico .item-mosaico {
        flex: none !important;
	    height: 300px !important;
		        margin: 0 0 10px 0 !important;
}
	
.galeria .info-bottom .linha {
	display: none;
}

.galeria .info-bottom p {
	font-size: 16px;
}

.galeria .info-bottom {
	flex-wrap: wrap;
	gap: 15px;
}

.fancybox__container[data-fancybox="galeria"] .fancybox-toolbar {
	opacity: 0 !important;
}
} 

@media (width < 400px) {
	.contato .info-left .botoes {
		flex-direction: column;
	}

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

/* botao */

    .topo .infos .botao {
        display: flex;
		border-radius: 100px;
    }

	.topo .infos .botao.mbl{
        display: none;
    }

@media (width < 991px) {
	.topo .infos .botao.mbl {
        text-align: start;
        max-width: 300px;
        padding: 12px 20px 12px 8px !important;
        border-radius: 100px;
        border: 1px solid #fff;
        color: #fff;
		 animation: pulse-scale 1.6s ease-in-out infinite;
        background: transparent;
	}

	/* keyframes */
@keyframes pulse-scale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
  50% {
    transform: scale(1.08); /* aumenta levemente - ajuste conforme quiser */
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

/* respeito a preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  .topo .infos .botao.mbl {
    animation: none;
  }
}

	.topo .infos .botao.mbl svg {
		    width: 30px;
	}

	.topo .infos .botao.mbl path {
		fill: #fff;
	}

	.topo .infos .botao {
        display: none;
    }

	.topo .infos .botao.mbl{
        display: flex;
    }
}

.topo .infos .botao:hover {
	background: #25D366;
	color: #fff;
	border-color: #25D366;
}

@media (width < 991px){
#fichatecnica {
  scroll-margin-top: 50px; 
}
.fancybox-button--zoom,
.fancybox-button--play,
.fancybox-button--thumbs {
  display: none !important;
}
}


@media (width > 991px){
#fichatecnica {
  scroll-margin-top: 150px; 
}

#lazer-e-convivio{
	scroll-margin-top: -250px; 
}

#contato{
	scroll-margin-top: -100px; 
}
#galeria_{
	scroll-margin-top: 30px; 
}






.videos h3{
	display: none;
}}

.lazer-convivio h2 {
    color: #1F374F;
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 22px;
    font-style: normal;
max-width: 530px;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
}

.ficha-tecnica .ficha-menu .active {
    color: #1F374F;
    font-weight: 700;
    text-decoration: underline;
}


@media (width < 991px){
.lazer-convivio .right {
	width: 100%;
}}

@media (width < 991px) {
    .contato .conteudo img {
        display: none;
    }
	    .contato .conteudo {
        top: -50px;
    }
	.localizacao {
        padding: 110px 0 110px 0;
    }
	#grupo-torresani{
	scroll-margin-top: 60px; 
}
#video{
	scroll-margin-top: 50px;
}
#lazer-e-convivio{
scroll-margin-top: 30px;
}

#grupo-torresani{
	scroll-margin-top: 100px;
}
}

@media (width < 991px) {
    .form-modal .botao, .diferenciais .botao.mbl {
    border-radius: 30px;
    background: rgb(31, 55, 79); 
    color: #f0efec;              
    border: 2px solid rgb(31, 55, 79);
    transition: all 0.3s ease;   
}

.form-modal .botao:hover, .diferenciais .botao.mbl:hover {
    background: #f0efec;         
    color: rgb(31, 55, 79);      
    border: 2px solid rgb(31, 55, 79);
}


/* wpp */

.form-modal .botao.wpp {
    border-radius: 30px;
    background: #25D366; 
    color: #f0efec;              
    border: 2px solid #25D366;
    transition: all 0.3s ease;   
}

.form-modal .botao.wpp:hover {
    background: #f0efec;        
    color: #25D366;
    border: 2px solid #25D366; 
}





    .diferenciais .box-diferenciais .slick-slider .slick-slide img{
	width: 40%;
}
.diferenciais .item-diferencial p{
	font-size: 12px;
}
}

.fancybox-bg {
    background: rgb(31, 55, 79) !important;
}

/* Esconde o botão mobile por padrão (desktop) */
.diferenciais .botao.mbl {
    display: none;
}

/* Mostra o botão desktop por padrão */
.diferenciais .botao.dsk {
    display: inline-block;
}

/* Quando estiver no mobile (largura até 991px), inverte a lógica */
@media (max-width: 991px) {
    .diferenciais .botao.mbl {
        display: inline-block;
    }

    .diferenciais .botao.dsk {
        display: none;
    }
}

@media (width < 991px) {
    .diferenciais .infos {
        flex-direction: column-reverse;
        gap: 0px;
        width: 100%;
    }
}

.videos h3{
	MAX-WIDTH: 1220px;
    margin: 0 auto;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .diferenciais .botao.mbl {
        display: flex;
        /* max-width: 80%; */
        text-align: center;
        justify-content: center;
        margin-top: 30px;
        z-index: 9;
        position: relative;
    }
	.videos h3{
	text-align: center;
}
}

@media (width < 991px) {
    .videos {
        padding: 60px 0 0 0;
    }
}

@media (width < 991px) {
    footer .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 80px;
    }
	footer .info-bottom p, footer .info-bottom a{
    font-size: 12px;
}
footer .info-bottom .container {
    gap: 15px;
}

footer .info-bottom a{
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .info-bottom a:hover {
  color: #1F374F;
  text-decoration: underline;
}
}

/* MOBILE */
@media (max-width: 991px) {
  footer .info-bottom.dsk {
    display: none;
  }

  footer .info-bottom.mbl {
    display: block;
  }
  .contato .logo-marine {
    max-width: 80%;
}

.contato .infos .botoes {
    display: none;
}


.ficha-tecnica .subtitulo {
        text-align: center;
        margin-bottom: 30px;
        color: #999;
    }

.ficha-tecnica .ficha-select {
  width: 100%;
  padding: 15px 36px 8px 0;
  cursor: pointer;
  transition: all 0.5s;
  color: var(--Primary-Light, #1F374F);
  font-family: 'BommerSans-Light';
  background: #FFF url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1.021L5 5.021L9 1.021' stroke='%231F374F' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 15px center / 10px 6px;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  max-width: 100%;
  display: flex;
  align-items: center;
  border-radius: 3px;
  appearance: none;
  margin: 0 auto 5px;
  border-style: solid;
  border-color: #d9d9d9 #fff #1F374F #fff;
  border-width: 1px 1px 3px 1px;
}

}

/* DESKTOP */
@media (min-width: 992px) {
  footer .info-bottom.dsk {
    display: block;
  }

  footer .info-bottom.mbl {
    display: none;
  }
}

@media (width < 991px) {
    .formpadrao input {
        font-size: 12px;
    }

	
}

@media (width < 500px) {
    .localizacao .escolha .conteudo {
        height: 340px;
    }
}

@media (width < 400px) {
    .localizacao .escolha .conteudo {
        height: 295px;
    }
}

/* Esconde no desktop, mostra no mobile */
.lazer-convivio .right.mbl {
    display: block;
}

.lazer-convivio .right.dsk {
  display: none;
}

/* A partir de 768px (desktop): inverte */
@media (min-width: 768px) {
  .lazer-convivio .right.mbl {
    display: none;
  }

  .lazer-convivio .right.dsk {
    display: block;
  }
}

@media (width < 991px) {
    .lazer-convivio {
        padding: 80px 0 30px 0;
    }
}





/* DESKTOP: mostrar .conteudo.dsk, ocultar .conteudo.mbl */
@media (min-width: 991px) {
  .conteudo.dsk {
    display: block;
  }

  .conteudo.mbl {
    display: none;
  }
}

/* MOBILE: mostrar .conteudo.mbl, ocultar .conteudo.dsk */
@media (max-width: 991px) {
  .conteudo.dsk {
    display: none;
  }

  .conteudo.mbl {
    display: block;
  }

  .lazer-convivio .lazer-select{
	    margin: 0 auto 30px auto;
  }

  .legenda-img p {
  display: none;
}

.legenda-img p.active-legenda {
  display: block;
  padding-top: 30px;
}
}

@media (max-width: 991px) {
    .legenda-img p.active-legenda {
        display: block;
        padding-top: 30px;
        text-align: center;
        line-height: 130%;
		    color: rgba(31, 55, 79, 0.65);
    leading-trim: both;
    text-edge: cap;
    font-family: BommerSans-Light;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
    margin-bottom: 15px;
    }
}

@media (width < 991px) {
    .apartamentos .conteudo {
        flex-direction: column;
        gap: 30px;
    }
}

@media (width < 991px) {
    .slides .nav-slide1, .slides .nav-slide2 {
        right: 0;
        left: auto;
        bottom: auto;
        top: -60px;
        flex-direction: row-reverse;
        display: none;
    }
}

@media (width < 991px) {
    .slides .conteudo .slide-itens1, .slides .conteudo .slide-itens2 {
        width: 91%;
        position: static;
        height: 300px;
        margin: 0 auto;
    }
}



@media (width < 991px) {
    .slides .conteudo.slide1 h2, .slides .conteudo.slide2 h2 {
        font-size: 20px;
    }
}

@media (width > 991px){
.slides .conteudo .slide-itens2 .info-bottom {
    justify-content: left;
}
}


    header.header-scroll .laterais:last-child {
        opacity: 0.5;
    }

@media (width < 991px) {
    header.header-scroll .laterais:last-child svg {
        width: 75px;
    }
.galeria .info-bottom {
    justify-content: space-between;
}}

	@media (width < 991px) {

	.lazer-convivio .info-topo {
	margin: 45px 0 30px 0;
}
}

.galeria .botao{
	display: none;
}

@media (width > 991px) {
.galeria .info-bottom {
    justify-content: right;
}}

    footer .info-bottom a {
        text-decoration: underline;
        
    }

@media (width < 991px) {
    .apartamentos h2 {
        font-size: 20px;
    }
}

@media (width < 991px) {
    .apartamentos .abas .aba-botao svg {
        font-size: 20px;
		transform: rotate(-90deg); 
		transition: all .5s;
    }
	.ficha-tecnica .ficha-wrapper {
    gap: 5px;
}
.ficha-tecnica .ficha-tab.active .item h4 span{
	font-size: 12px;
}
.ficha-tecnica .ficha-tab.active .item h4 {
    font-weight: 600;
}
@media (max-width: 991px) {
    .ficha-tecnica .subtitulo {
        text-align: center;
        margin-bottom: 30px;
        color: #999;
        display: block;
    }
}
}

@media (width > 991px){
.apartamentos .abas .aba-botao svg{
	transform: rotate(-90deg);
	transition: all .5s;
}
}



@media (width < 991px){

	.apartamentos .abas {
		max-width: 100%;
	}

.apartamentos .aba-cont .img {
	display: block;
	max-width: 420px;
	margin: 0 auto;
}
	.apartamentos .abas button {
		max-width: 300px;
		        margin: 0 auto;
	}

	.apartamentos .aba-cont ul {
		max-width: 300px;
		        margin: 0 auto;
	}

.apartamentos .aba-cont .img img {
	width: 100%;
	height: auto;
	margin-top: 40px;
}}

    header .logo svg.torresani-logo {
        opacity: 0.5;
    }

header .close {
    border-color: #1F374F;
    position: absolute;
    left: 17px;
    top: 24px;
}

@media (width > 2000px){
	.slides .container {
        max-width: 2010px;
    }
	.slides .nav-slide1 {
    right: 810px;
}
.slides .nav-slide2 {
    left: 650px;
}
}