body {
  margin: 0;
  padding: 0;
  font-family: "widescreen", sans-serif;
  font-weight: 400;
  background-color: #F5F5F5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "widescreen", sans-serif;
  font-weight: 900;
  font-style: normal;
}

p {
  font-family: "widescreen", sans-serif;
  font-weight: 400;
}

.hero {
  position: relative;
  height: 90vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.logo-container {
  background-color: #CFB699;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  margin-bottom: 30px;
}

.logo {
  height: 40px;
}

.hero-conteudo {
  margin-top: 236px;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
}

.botoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.botao {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  color: white;
}

.botao:hover {
  transform: scale(1.05);
  color: #fff;
}

.botao img {
  height: 20px;
  margin-right: 10px;
}

.botao.airbnb {
  background-color: #B8666C;
}

.botao.whatsapp {
  background-color: #6CC3B5;
}

.video-container {
  border: 6px solid white;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.video-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

.bloco-destaques {
  background-color: #f7f4f0;
  padding: 80px 0;
}

.bloco-destaques h2 {
  font-size: 56px;
  color: #CFB699;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: left;
}

.destaque-item {
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaque-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.destaque-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.destaque-item img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.destaque-item h3 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom:0;
  color: #CEA583;
}

.destaque-item .bairro {
  font-size: 0.875rem;	
  color: #B9B9B9;
  font-weight: 200;
  margin-bottom: 8px;
}

.destaque-item .descricao {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 16px;
}

.destaque-item .preco {
  font-weight: 300;
  color: #CEA583;
  font-size: 0.8rem;
}
.bloco-lagos,
.bloco-serra{
	padding: 40px 0;
}

/* Slider horizontal no mobile */
.slider-mobile {
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider-wrapper {
  display: flex;
  gap: 16px;
  width: max-content;
}

.slider-mobile .destaque-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Destaque do mês */
.destaque-do-mes {
  background-image: url('../img/imoveis/destaque-vista-leme.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: white;
  position: relative;
}

.destaque-do-mes::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.10), rgba(0,0,0,0.1));
  z-index: 0;
}

.destaque-do-mes .grid-container {
  position: relative;
  z-index: 1;
}

.destaque-titulo h2 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.1;	
}

.destaque-titulo .nome-imovel {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  display: inline-block;
}

.destaque-conteudo p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Bloco horizontal reutilizável */
.bloco-destaque-horizontal {
  background-image: url('../img/imoveis/bloco-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: white;
  position: relative;
}

.bloco-destaque-horizontal::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.10), rgba(0,0,0,0.1));
  z-index: 0;
}

.bloco-destaque-horizontal .grid-container {
  position: relative;
  z-index: 1;
}

.bloco-destaque-horizontal .destaque-titulo h2 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.1;
}

.bloco-destaque-horizontal .destaque-titulo .nome-imovel {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  display: inline-block;
}

.bloco-destaque-horizontal .destaque-conteudo p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}
.bloco-2{
  background-image: url('../img/imoveis/bloco-2.jpg');
}
.destaque-mes h2,
.bloco-2 h2{
	font-size: 60px;
	line-height: 1.1;
}
.subtitulo-destaque{
	display: inline-block;
    background: #000;
    border-radius: 20px;
    padding: 0 20px;
	font-size: 0.8rem;
}
.destaque-mes .subtitulo-destaque{
	background: #8FB9D1;
}
.bloco-2 .subtitulo-destaque{
	background: #935C39;
}
.bloco-lagos h2,
.bloco-serra h2{
	font-size: 52px;
}
.bloco-depoimentos {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.bloco-depoimentos h2 {
  font-size: 52px;
  font-weight: 900;
  color: #CFB699;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bloco-depoimentos h2 span {
  display: block;
}

.bloco-depoimentos .texto-depoimento {
  font-size: 1rem;
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}

.depoimento-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.foto-usuario {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.nome-usuario {
  font-weight: 700;
  color: #CEA583;
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.imovel-usuario {
  font-size: 0.85rem;
  color: #777;
  font-weight: 300;
}

.texto-depoimento {
  font-size: 0.95rem;
  color: #444;
  font-weight: 300;
  line-height: 1.6;
}

.footer-site {
  background-color: #CFB699;
  padding: 80px 0;
  color: white;
}

.footer-site .footer-logo {
  height: 48px;
  margin-bottom: 40px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 22px 0;
  position: relative;
}

.footer-links li::after {
  content: "";
  display: block;
  width: 310px;
  height: 1px;
  background-color: white;
  margin: 10px auto 0 auto;
  opacity: 0.4;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-weight: 300;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  opacity: 0.85;
}


/* Responsivo */
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 40px;
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
  }

  .hero-conteudo {
    margin-top: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .logo-container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 24px;
  }

  .botoes {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    width: 100%;
  }

  .botao {
    width: 90%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 18px;
  }

  .video-container {
    margin-top: 30px;
    width: 90%;
    max-width: 100%;
  }
  .bloco-destaques{
      padding: 40px 0;
	}
  .bloco-destaques h2 {
	 font-size: 2.5rem; 
     line-height: 3rem;
     margin-bottom: 0;
  }

  .destaque-item {
    margin-bottom: 20px;
  }

  .destaque-titulo h2 {
    font-size: 2rem;
    text-align: center;
  }

  .destaque-titulo .nome-imovel {
    display: block;
    text-align: center;
    margin: 0 auto 20px auto;
  }

  .destaque-conteudo p {
    text-align: center;
    font-size: 1rem;
  }

  .destaque-conteudo .botoes {
    justify-content: center;
  }

  .bloco-depoimentos {
    padding: 60px 20px;
  }

  .bloco-depoimentos h2 {
    font-size: 2.5rem;
  }

  .depoimento-box {
    padding: 20px;
  }

  .texto-depoimento {
    font-size: 0.95rem;
    text-align: left;
  }

  .nome-usuario,
  .imovel-usuario {
    text-align: center;
  }
	.destaque-mes h2, .bloco-2 h2{
		font-size: 2.5rem;
	}	
}
