/* ===================== */
/* === Estilo Global === */
/* ===================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'museo-sans', sans-serif;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'broadacre-regular-0', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.row {
  max-width: 90em !important;
}

p {
  font-weight: 300;
  color: #10141A;
  line-height: 1.65;
  font-size: 17px;
  margin-bottom: 15px;
}

/* =================== */
/* === Header === */
/* =================== */
header {
  background: url("../img/banner.jpg") no-repeat center top;
  background-size: cover;
  padding: 20px 0 400px;
  position: relative;
}

header ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 10px 20px;
  border-radius: 30px;
  background: #F2F2F0;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}

header li a {
  color: #7B5E3B;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}

header li a:hover {
  color: #C59F61;
}

header .logo {
  margin: 30px 0;
  display: block;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

header h1 {
  font-size: 60px;
  text-align: center;
  color: #7B5E3B;
  margin-bottom: 30px;
  line-height: 1.1;
  font-weight: 500;
}

header p {
  color: #fff;
  text-align: center;
  margin: 0 auto 30px;
}

header .video {
  position: absolute;
  bottom: -500px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  border: 5px solid #fff;
  border-radius: 12px;
  overflow: hidden;
}

header .video iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

header .video-mobile {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  border: 5px solid #fff;
  border-radius: 12px;
  overflow: hidden;
}

header .video-mobile iframe {
  width: 100%;
  height: 215px;
  display: block;
  border: none;
}

/* ========================= */
/* === Menu Off-Canvas ==== */
/* ========================= */
.offcanvas-menu {
  display: none;
}

.offcanvas-overlay {
  display: none;
}

/* === Botão WhatsApp === */
.btn-whatsapp {
  display: inline-block;
  color: #fff;
  background-color: #7B5E3B;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 200ms ease-in-out;
}

.btn-whatsapp:hover {
  background-color: #C59F61;
  color: #fff;
}

/* =================== */
/* === Atrações === */
/* =================== */
#atracoes {
  padding: 150px 0 50px;
}

#atracoes h2 {
  font-size: 38px;
  color: #7B5E3B;
  margin-bottom: 30px;
}

#atracoes img {
  width: 100%;
  display: block;
}

#atracoes .foto-um {
  margin: 67px 0 23px;
}

/* =================== */
/* === Andamento === */
/* =================== */
#andamento {
  padding: 20px 0 80px;
}

#andamento h2 {
  font-size: 38px;
  color: #7B5E3B;
  margin-bottom: 20px;
}

#andamento .box {
  background: #EDEBE7;
  padding: 110px;
  border-radius: 30px;
}

.lista-andamento {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-andamento li {
  border: 1px solid #E7E7E3;
  border-radius: 30px;
  padding: 14px 24px;
  margin-bottom: 10px;
}

.lista-andamento .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.lista-andamento .titulo,
.lista-andamento .percentual {
  font-size: 18px;
  color: #1C1C1C;
}

.lista-andamento .barra {
  background-color: #F2F2F0;
  height: 6px;
  border-radius: 30px;
}

.lista-andamento .progresso {
  background-color: #7B5E3B;
  height: 100%;
  width: 0;
  border-radius: 30px;
  transition: width 1s ease-in-out;
}

/* =================== */
/* === Espaços === */
/* =================== */
#espacos {
  background: #EDEBE7;
  padding: 80px 0;
}

#espacos h2 {
  color: #7B5E3B;
  font-size: 38px;
  margin-bottom: 30px;
}

.menu-espacos {
  text-align: center;
  margin-bottom: 40px;
}

.menu-espacos ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.menu-espacos li a {
  display: inline-block;
  background: #D9D8D2;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-espacos li a.ativo {
  background: #7B5E3B;
}

.menu-espacos li a:hover:not(.ativo) {
  background: #c5c4bf;
}

.container-desktop {
  display: none;
}

.container-desktop.ativo {
  display: block;
}

.bloco-galeria {
  display: none;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bloco-galeria.ativo {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.bloco-galeria img {
  width: calc(25% - 15px);
  border-radius: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloco-galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bullets {
  text-align: center;
  margin-top: 20px;
}

.bullets span {
  width: 12px;
  height: 12px;
  background: #D9D8D2;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.bullets span.ativo {
  background: #7B5E3B;
}

.container-mobile {
  display: none;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.slider::-webkit-scrollbar {
  height: 6px;
}

.slider::-webkit-scrollbar-thumb {
  background-color: #C5C5C5;
  border-radius: 10px;
}

.slider::-webkit-scrollbar-track {
  background: transparent;
}

/* =================== */
/* === Lightbox === */
/* =================== */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#lightbox.mostrar {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* =================== */
/* === Funcionalidades === */
/* =================== */
#funcionalidades {
  padding: 70px 0;
  background: #fff;
}

#funcionalidades h2 {
  color: #7B5E3B;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.menu-funcionalidades {
  margin-bottom: 30px;
}

.menu-funcionalidades ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.menu-funcionalidades li a {
  display: inline-block;
  background: #D9D8D2;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-funcionalidades li a.ativo {
  background: #7B5E3B;
}

.menu-funcionalidades li a:hover:not(.ativo) {
  background: #c5c4bf;
}

.blocos-funcionalidades .bloco-icone {
  display: none;
  list-style: none;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.blocos-funcionalidades .bloco-icone.ativo {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.blocos-funcionalidades .bloco-icone li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E7E7E3;
}

.blocos-funcionalidades .bloco-icone li:last-child {
  border-bottom: none;
}

.blocos-funcionalidades .bloco-icone li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* =================== */
/* === Facilidades === */
/* =================== */
#facilidades {
  padding: 100px 0;
  background: #EDEBE7;
}

#facilidades h2 {
  color: #7B5E3B;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
}

.grid-facilidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.grid-facilidades .box {
  background-color: #7B5E3B;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
}

.grid-facilidades .box h3 {
  color: #EDEBE7;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.grid-facilidades .box .spacer {
  width: 100%;
  height: 1px;
  background-color: #EDEBE7;
  margin: 10px 0;
}

.grid-facilidades .box p {
  color: #EDEBE7;
  font-size: 14px;
  margin: 0;
}

/* =================== */
/* === Empreendimentos === */
/* =================== */
#empreendimentos {
  background: #D8CDB8;
  padding: 80px 0;
}

#empreendimentos h2 {
  color: #7B5E3B;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 50px;
  text-align: center;
}

.grid-empreendimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.card-empreendimento {
  background-color: #D8CDB8;
  border-radius: 20px;
  text-align: left;
}

.card-empreendimento img {
  width: 100%;
  display: block;
  border-radius: 20px;
  margin-bottom: 20px;
}

.card-empreendimento h3 {
  color: #7B5E3B;
  font-size: 24px;
  margin-bottom: 10px;
}

.card-empreendimento p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
}

.card-empreendimento .btn {
  display: inline-block;
  background: #7B5E3B;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card-empreendimento .btn:hover {
  background: #C59F61;
}

/* =================== */
/* === Footer === */
/* =================== */
#footer {
  background: #EDEBE7;
  padding: 80px 0;
}

#footer .logo-footer {
  max-width: 200px;
  margin: 0 auto 40px;
  display: block;
}

.menu-footer,
.spin{
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-footer li {
  margin-bottom: 22px;
}

.menu-footer a {
  font-family: 'broadacre-regular-0', sans-serif;
  color: #7B5E3B;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}

.menu-footer a::after {
  content: "";
  display: block;
  width: 310px;
  height: 1px;
  background-color: #7B5E3B;
  margin: 6px auto 0;
}

.menu-footer a:hover {
  color: #C59F61;
}

footer .designideal a {
  font-family: 'museo-sans', sans-serif;
  color: #7B5E3B;
  font-size: 12px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: block;
  padding-top: 30px;	
}

footer .designideal a:hover {
  opacity: 1;
  color: #C59F61;
}

/* ================= */
/* === Responsivo === */
/* ================= */
@media (max-width: 768px) {
  .container-desktop {
    display: none !important;
  }

  .container-mobile {
    display: block;
  }

  .menu-espacos ul,
  .menu-funcionalidades ul {
    gap: 14px;
  }

  .grid-empreendimentos {
    grid-template-columns: 1fr;
  }
	header{
		padding: 20px 0;
	}
  header h1 {
    font-size: 40px;
  }

  .btn-whatsapp {
    padding: 12px 30px;
  }
	#atracoes,
	#espacos,
	#facilidades,
	#empreendimentos{
		padding: 50px 0;
	}
	#atracoes h2,
	#andamento h2,
	#espacos h2,
	#funcionalidades h2,
	#facilidades h2,
	#empreendimentos h2{
		font-size: 28px;
	}
	#andamento .box{
		padding: 20px;
		margin-bottom: 20px;
	}
	#atracoes img{
		margin-bottom: 15px;
	}
  .offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #F2F2F0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 40px 20px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .offcanvas-menu.ativo {
    right: 0;
  }

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

  .offcanvas-menu li {
    margin-bottom: 20px;
  }

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

  .offcanvas-menu a {
    color: #7B5E3B;
    font-family: 'broadacre-regular-0', sans-serif;
    font-size: 18px;
    text-decoration: none;
    display: block;
  }

  .offcanvas-menu a:hover {
    color: #C59F61;
  }

  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #7B5E3B;
    width: 40px;
    height: 40px;
    z-index: 10000;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: white;
    transition: 0.3s;
  }

  .menu-toggle span::before {
    transform: translateY(-7px);
  }

  .menu-toggle span::after {
    transform: translateY(7px);
  }

  .menu-toggle.ativo span {
    background: transparent;
  }

  .menu-toggle.ativo span::before {
    transform: rotate(45deg);
  }

  .menu-toggle.ativo span::after {
    transform: rotate(-45deg);
  }

  .offcanvas-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .offcanvas-overlay.ativo {
    opacity: 1;
    pointer-events: all;
  }

  /* Esconde o menu antigo no mobile */
  header nav {
    display: none;
  }
}
	


/* ========================= */
/* === Galeria Mobile com Categorias === */
/* ========================= */

.container-mobile {
  display: none;
}

.container-mobile.ativo {
  display: block;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Scrollbar */
.slider::-webkit-scrollbar {
  height: 6px;
}

.slider::-webkit-scrollbar-thumb {
  background-color: #C5C5C5;
  border-radius: 10px;
}

.slider::-webkit-scrollbar-track {
  background: transparent;
}

/* ========================= */
/* === Ativação no Mobile === */
/* ========================= */
@media (max-width: 768px) {
  .container-desktop {
    display: none !important;
  }

  /*.container-mobile {
    display: block;
  }*/
}
