@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
  }

body {
    scroll-behavior: smooth; /* Habilita rolagem suave */
    font-family: 'poppins';
}

/* Area Topo - topo */
header{
    width: 100%;
}
/* Buton fixo - Wpp */

.fixed-container a {
  position: fixed;
  text-decoration: none;
  bottom: 13px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: blink 3s infinite;
  z-index: 1000;
}

@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}

.fixed-container img {
  width: 45px;
  margin-bottom: 3px;
  border-radius: 8px;
}

.fixed-container p {
  margin: 5px 0 0;
  padding: 3px 5px;
  border-radius: 10px;
  font-size: 12px;
  color: #029909;
  background-color: #000000;
  text-align: center;
}

/* Texto mudando - topo */
  .texto {
    width: 100%;
    padding: 10px 0px;
    font-weight: 500;
    color: #fff;
    background-color: #029909;
    text-align: center;
}

/* Navbar - topo */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    background-color: #000000;
    color: white;
    z-index: 1000;
    position: relative;
  }
  
  .logo img{   
    width: 130px;
    transition: all 0.5s;
    margin-top: 5px;
  } 

  .logo img:hover{
    transform: scale(1.1);
  }
  
  .hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  /* Overlay Menu */
  .overlay-menu {
    position: fixed;
    top: 0;
    right: -50%; /* Inicialmente fora da tela à direita */
    width: 25%; /* Ocupa metade da tela */
    height:530px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0px 0px 0px 30px ;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 9999; /* Garante que o menu fique sobre o conteúdo */
  }
  
  .overlay-menu.active {
    right: 0; /* Move o menu para a tela */
  }
  
  .overlay-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  .overlay-menu ul {
    list-style: none;
    padding: 10px;
    text-align: center;
    margin-top: 50px;
  }
  
  .overlay-menu ul li {
    margin: 50px 0;
  }
  
  .overlay-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .overlay-menu ul div a {
    color: white;
    text-decoration: none;
    font-size: 38px;
    padding: 0px 10px;
  }

  .overlay-menu ul div a:hover {
    color: #4CAF50;
  }

  
  .overlay-menu ul li a:hover {
    color: #4CAF50;
  }


/* Area Corretor - topo */

.area-corretor {
  width: 100%;
}

.area-corretor .conteudo-corretor {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: center;
  background-color: #081769;
}

.space-corretor {
  margin-bottom: 10px;
}

.Corretor-texto {
  width: 550px;
  padding: 15px 30px;
  color: #ffffff;
  border-radius: 5px;


}

.Corretor-texto h1 {
  font-size: 23px;
}

.Corretor-texto h4 {
  font-size: 17px;
  margin-bottom: 5px;
}



.Corretor-texto p{
  font-size: 15px;
  font-weight: 800;
}


.corretor-img {
  width: 100%;
  text-align: center;
}

.corretor-img img{
  width: 490px;
  margin-top: -60px;
  margin-left: -50px;

}


/* SLide - topo */

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    height: 450px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 30px;
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    align-items: center;
    justify-content: center;

  }
  
  .grid-item {
    font-size: 18px;
    gap: 10px; 
  }

/* TEXTO SLIDE */

  .grid-item h1{
    font-size: 29px;
  }

  .grid-item h2{
    font-size: 22px;
    margin-bottom: 10px;
  }

  .grid-item h3{
    font-size: 32px;
    margin-bottom: 40px;
  }

  .grid-item a{
    width: 100px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    padding: 5px 10px;
    color: #ffffff;
    background-color: rgb(37, 50, 224);
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.418);
  }

  .grid-item a:hover{
    background-color: #16e443;
  }

  .grid-item p{
    font-size: 22px;
    margin-bottom: 10px;
  } 
  
  .grid-item span {
    color: #16e443;
  }

  .grid-item img{
    width: 450px;
    height: 350px; 
  }

  .grid-item video{
    width: 100%;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    width:25px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.384);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 12px;
    z-index: 1000;
    display: none;
  }
  
  .nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .nav-button.prev {
    left: 12px;
  }
  
  .nav-button.next {
    right: 12px;
  }
 

  /* LOTE MENU*/
  
  .lotes-menu {
    width: 100%;
    background-color: #081769;
  }

  .lotes-menu .menu{
    display: flex;
    padding: 30px 30px;
    gap: 90px; /* Espaçamento entre as imagens */
    justify-content: center; /* Centraliza o conteúdo */
    align-items: center; /* Alinha verticalmente */
  }

  .lotes-menu img {
    width: 180px; /* Largura das imagens */
    height: auto; /* Mantém a proporção */
    border-radius: 8px; /* Apenas para adicionar estilo */
    transition: all 0.5s;
  }

  .lotes-menu img:hover{
    transform: scale(1.1);
  }


/*  LOTES CONTEUDOS */ 

section {
    margin-top: -10px;
  }

  .lote .lote-topo {
    text-align: center;
  }

  .lote .lote-topo p{
    color: #ffffff;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lote .lote-topo img{
    width: 350px;
    margin-top: 20px;
    cursor: pointer;
  }

  .img-logos {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .lote .lote-topo .img-logo {
    width: 300px;
  }

  .lote .lote-topo .img-logo1 {
    width: 275px;
    margin-top: 0px;
  }

  .lotes-footer {
    width: 100%;
    height: 370px;
  }

  
/*  Botões lote - Localização   */ 
  .lote-buttons {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 90px;
    
  }

  .lote-buttons a{
    padding: 10px 15px;
    gap: 90px;
    color: #fff;
    background-color: #1aa71f;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.5s;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.418);
  }

  .lote-buttons a:hover{
    transform: scale(1.1);
    background-color: #0f6e12;
  }

/*  Divs de texto - LOTEAMENTO */ 

  .div-marbello{
    background-color: #536437;
  }

  .div-lagoinha {
    background-color: #1483cc;
  }

  .div-portal {
    background-color: #149e5e;
  }

  .div-bosque {
    background-color: #b91aa4;
  }

  .div-marbello span {
    color: #ffdb3b;
  }

  .div-lagoinha span {
    color: #ffdb3b;
  }

  .div-portal span {
    color: #ffdb3b;
  }

  .div-bosque span {
    color: #ffdb3b;
  }


  



/*  BACKGROUND - LOTEAMENTO */ 
  .marbello {
    background-color: #2c3f25;
  }

  .enseada-lagoinha {
    margin-top: -6px;
    background-color: #014a7a;
  }

  .portallagoinha {
    margin-top: -6px;
    background-color: #031877;
  }

  .bosqueloteamento{
    margin-top: -6px;
    background-color: #ce5dbf;;
  }

  /* LOTES CONTEUDOS -IMAGENS */

  .lotes-imgs {
    width: 100%;
    gap: 10px;
  }

  .lotes-imgs div{
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding: 0px 40px;
    margin-bottom: 30px;
  }

  .lotes-imgs img{
    width: 350px;
    height: 200px;
    border-radius: 15px;
    transition: all 0.5s;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.418);
  }

  .lotes-imgs img:hover{
    transform: scale(1.1);
  }


  .lotes-videos .video-conteudo {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .video-conteudo {
    width: 100%;
  }
  .lote-videotexto p{
    margin-top: 10px;
    font-size:15px;
  }

  .lote-videotexto h4::after{
    content: '';
    display: block;
    width: 440px;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
  }

  .lote-videotexto {
    margin-top: 26px;
    width: 470px;
    height: 250px;
    color: #fff;
    padding: 30px 30px;
    background-color: #536437 ;
    margin-left: 42px;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.418);
  }


  .lotes-videos .lotes-vdo {
    width: 100%;

  }

  .lotes-videos .lotes-vdo video {
    margin-top: 25px;
    width: 560px;
    border-radius: 10px;

  }
  
 

/* LOTES CONTEUDOS - TEXTOS */


.textos-conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 40px;
  justify-content: center;
  gap: 30px;
}

.textos-conteudo div{
  width: 310px;
  border-radius: 10px;
  padding: 20px;
  color: #ffffff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.418);
}

.textos-conteudo div h1 {
  font-size: 46px;
}

.textos-conteudo div h2 {
  margin-top: -10px;
  margin-bottom: 20px;
}

.space{
  margin-bottom: 10px;
}

.textos-conteudo .valor-parcela{
  margin-top: 35px;
  font-size: 23px;
}


.textos-conteudo div h3 {
  margin-bottom: 20px;
}

.textos-conteudo  a{
  margin-top: 1000px;
  width: 160px;
  padding: 7px 20px;
  border-radius: 15px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: #ffffff;
  text-align: center;
  transition: all 0.5s;
}

.textos-conteudo div a:hover {
  background-color: #1e5c20;
  color: aqua;
  transform: scale( 1.1);
}

/* CONTATOS */

.contatos {
  width: 100%;
  height: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  background-color: #000000;
  margin-top: -30px;
  align-items: center;
  justify-content: center;
}

.contatos .conteudos-contatos{
  padding: 0px 40px;
  margin-top: 10px;
}

.container-contato {
  display: flex;
  align-items: center; /* Alinha verticalmente */
  margin-top: 25px;
}

.container-contato h3 {
   color: #000000;
   font-size: 13px;
 }

.icon-contato {
  padding: 10px;
  background-color: #363636;
  color: #90e034; 
  font-size: 25px;
}

.icon-email{
  font-size: 25px;
}

.icon-local{
  width: 25px;
  text-align: center;
}

.titu-contato {
  background-color: #90e034;
  padding: 10px;
}

.contatos .img-meio {
  width: 100%;
  text-align: center;

}

.img-meio img {
  width: 270px;
  margin-top: 30px;
  transition: all 0.5s;
}

.img-meio img:hover {
  transform: scale(1.1);
}

.email-form {
  color: #fff;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.email-form h1{
  display: none;
}

form {
  width: 250px;
  background-color: #6eaa29;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  margin-top: 10px;
}

input, textarea, button {
  background-color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  padding: 5px;
  resize: none;
}

button:hover{
  background-color: #16e443;
}

/* ARTE FINAL */
.arte-final {
  width: 100%;
  margin-top: -15px;
}

.arte-final img {
  width: 100%;
  height: 350px;
}


.arte-final2 {
  width: 100%;
  position: relative; /* Cria um contexto para posicionamento */
}


.arte-final2 img {
  width: 100%;
  height: 350px;
}


.arte-final2 a{
  text-decoration: none; 
  position: absolute; /* Permite posicionamento livre */
  top: 290px; /* Ajuste a posição vertical */
  left: 1000px; /* Ajuste a posição horizontal */
  color: rgb(255, 255, 255); /* Cor do link */
  background-color: #025099;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.418);
  padding: 7px 15px;
  border-radius: 20px;
  font-style: none;
  font-size: 17px; 
  transition: all 0.5s;
}


.arte-final2 a:hover{
  transform: scale(1.1);
  background-color: #ff8521;
}



.footer-navegação {
  width: 100%;
  margin-top: -9px;
  color: #fff;
  background-color: #000000;
  text-align: center;
  text-decoration: none;
}

.nav-footer ul{
  width: 100%;
  gap: 8px;  
  list-style: none;
  text-decoration: none;
}

.nav-footer ul li {
  padding: 5px;
  display: inline-block; /* Coloca os itens na mesma linha */
  margin-right: 85px; 
}

.nav-footer ul a{
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}




.footer2{
  width: 100%;
  height: 200px;

}

.footer2-conteudo{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 20px 40px;
}

.footer2-weblotes p{
  font-size: 15px;
  margin-bottom: 10px;
}



.footer2-sede{
  text-align: center;
  gap: 7px;
}

.footer2-sede div{
  display: grid;
}

.footer2-sede i{
  font-size: 30px;
}
.footer2-sede h2{
  margin-bottom: 10px;
}


.footer2-sede p {
  margin-bottom: 10px;
}

.footer2-conteudo .rede-buttons {
  gap: 30px;
  color: #000000;
  text-align: center;
}


.footer2-conteudo .rede-buttons .h2 {
  font-size: 18px;
}

.footer2-conteudo .rede-buttons a{
  color: #000000; 
  margin-top: 20px;
  margin-left: 20px;
  font-size: 45px;
  transition: all 0.7s;
}

.footer2-conteudo .rede-buttons i:hover{
  transform: translateY(-10px);
  color: #16e443;
}

/* CREDITOS FINAIS*/
.creditos{
  margin-top: 35px;
  width: 100%;
  color: #71d400;
  font-size: 14px;
  background-color: #000000;    
}

.creditos div{
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
