@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* CSS Document */

:root {
    --bg-color: white;
    --v-claro:#198877;
    --v-escuro:#203842;
    --c-claro:#EDF3F3;
    --c-escuro:#666;
    --shadow: 0 0 03px 0px rgba(119,121,147,0.5);
}
*,html,body{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
    font-family:Poppins;
    text-decoration: none;
}
html{
    scroll-behavior: smooth !important;
    font-size: 12px;
    width:100vw;
    overflow-x: hidden;
}
body{
    min-height:100vh;
    width:100vw;
}
a:-webkit-any-link:active,a:-webkit-any-link:visited, a:-webkit-any-link   {
    color: inherit;
}
/*------ SCROLLBAR -------*/
/* width */
::-webkit-scrollbar {
    width: 8px;
    
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--c-claro);    
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--v-claro);
    border-radius:5px;
}
/* FLEX BASE CONFIGS */
.center,.space-b,.space-a,.start,.end,.column,.flex{
    display:flex;
}
.center{
    justify-content:center;
    align-items: center;
    align-content: center;
}
.space-b{
    justify-content:space-between;
    align-items:space-between;
    align-content:space-between;
}
.space-a{
    justify-content:space-around;
    align-items:space-around;
    align-content:space-around;
}
.space-e{
    justify-content:space-evenly;
    align-items:space-evenly;
    align-content:space-evenly;
}
.start{
    justify-content:flex-start;
    align-items:flex-start;
    align-content:flex-start;
}
.end{
    justify-content:flex-end;
    align-items:flex-end;
    align-content:flex-end;
}
.column{
    flex-direction: column;
}
/*   WIDTH BASE CONFIGS */
.w100{
    width:100vw;
}
.w75{
    width:75vw;
}
.w50{
    width:50vw;
}
.w25{
    width:25vw;
}
.w20{
    width:20vw;
}
.w10{
    width:10vw;
}
.p100{
    width:100%;
}
/*   GENERIC CONFIGS */
h2{
    text-align:center;
    font-size:2.5vw;
    color:var(--v-escuro);
}
h4{
    font-size:1.5rem;
    color:var(--v-escuro);
}
p{
    color:var(--c-escuro);
}
button, .button{
    padding:15px 20px;
    background-color:var(--v-claro);
    border:solid 3px var(--v-claro);
    font-size:12px;
    color:white;
    font-weight:600;
    
}
button:hover, .button:hover{
    background-color:white;
    color:var(--v-claro);
    cursor:pointer;
}
/* ------------------- HOME PAGE ----------------------*/
nav,#hero,#menu,#logo,#slogan,.sessao,#map,#blocks,footer,.links-footer{
    display:flex;
}
/* MENU */
nav{
    width:100%;
    padding:30px 20px;
    justify-content: space-between;
    align-items: center;
}
.home nav{
    padding:50px 20px 0;
}
#logo{
    width:20%;
    justify-content: center;
    
}
#logo img,#logo-mobile img{
    max-width:120px;
}

#menu{
    justify-content:space-around;
    width:80%;
    max-width:680px;
}
#menu li a{
    padding:10px 0;
}
#dropdown li a, #dropdown li,#menu li a{
    color:var(--v-escuro);
    font-size:14px;
    font-weight:600;
}
#menu li a:hover, #dropdown li a:hover, .links-footer a:hover{
    color:var(--v-claro); 
}
#menu-mobile,#dropdown{
    display:none;
}
#user{
    display:flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
}
#user div{
    justify-content: center;
    align-items:flex-start;
}
/* HERO */

#hero{
    width:100vw;
    height:80vh;
    align-items:center;
}
#hero-left, #hero-right {
    transition: flex-basis 0.5s ease;
    height:80vh;
    
}
#hero-left {
    flex-basis: clamp(50%, 60%, 70%);
}

#hero-right {
    flex-basis: clamp(50%, 40%, 30%);
}
#hero-right{
    border-radius:20px 0 0 20px  ;
    background-image:url("../imagens/AdobeStock_209124760.webp");
    background-position:center left;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#hero-left div{
    max-width:730px;
    margin:0 auto;
}
#slogan{
    width:70%;
    height:calc(100% - 190px);
    margin:0 auto;
    flex-direction:column;
    justify-content: center;
    align-items:flex-start;
}
#hero-left h1{
    color:var(--v-escuro);
    font-size:3.5vw;
    font-weight:600;
}
#hero-left p{
    margin:20px 0;
    color:var(--c-escuro);
    font-size:1.5vh;
    font-weight:400;
    line-height: 2;
}

/* SESSOES BASIC CONFIGS*/
.sessao{
    width:100%;
    margin-top:50px;
    align-items: center;
    flex-direction:column;
}
/* OPORTUNIDADES */
#oportunidades a, #lancamentos a{
    color:var(--c-escuro);
    font-weight:400;
}
#a-1 a:hover,#a-2 a:hover,.active{
    
    color:var(--v-escuro)!important;
    font-weight:600!important;
}
#a-1,#a-2{
    display:inline-block;
    width:150px;
    text-align:center;
    font-size: 1.2rem;
}
#botoes-abas {
    width: max-content;
    margin: 0 auto;
    position: relative;
}

.active-indicator {
    width: 100px;
    margin:10px 25px 0;
    height: 1px;

    background: var(--v-claro);
    transition: transform 0.3s ease;
}
.aba-next, .aba-prev, .fx-next, .fx-prev {
    height:100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: var(--v-claro);
    border: none;
    padding:0px;
    cursor: pointer;
    font-weight:bolder;
    font-size:30px;
    font-family:Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
.aba-next, .fx-next{
    right:0px;
}
.aba-prev, .fx-prev{
    left:0;
}
#abas,#conteudo{
    
    position:relative;
    overflow-x: hidden;
    text-align:center;
    width:80%;
    margin-top:10px;
}

.aba-conteudo{
    display:none;

}
.aba-conteudo.ativa,#fixed-slide {
    display: flex;
    animation: fadeIn 0.5s ease; 
    justify-content: space-around;
    margin:20px 0;
    transition: transform 2s ease;    
}

.thumb{
    margin:10px 40px!important;
    flex: 0 0 235px;
    height:300px;
    border:solid 0.5px var(--c-claro);
    border-radius:2px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.thumb-img{
    width:100%;
    height:180px;
}
.thumb-img img{
    width:100%;
    height:100%;
}
.thumb h3{
    max-width:100%;
}
.thumb .title{
    text-align:left;
  /* Ajusta para permitir até duas linhas de texto */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform:capitalize;
  /* Defina o tamanho mínimo e máximo da fonte para ajuste dinâmico */
  font-size: 1.0rem; /* Tamanho inicial, ajuste conforme necessário */
  min-font-size: 0.1rem; /* Tamanho mínimo da fonte, para evitar que fique muito pequeno */
  max-font-size: 2rem; /* Tamanho máximo da fonte, para evitar que fique muito grande */
}
.thumb label{
    width:100%;
    height:90px;
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    padding:10px;
    color:var(--v-escuro);
    justify-content:space-between;
}
.thumb label span{
    color:var(--c-escuro);
    font-size:1.0rem;
    font-weight:400;
}
.resumo{
    display:flex;
    justify-content: flex-start;
   
}
.resumo li{
    display:flex;
    align-items: center;
    margin: 5px;
}
.resumo li img{
    margin:0 2px;
}
/*  SOBRE ELE  */

#map,#blocks{
    width:50%;
    padding:30px;
}
#blocks{
    height:450px;
    flex-direction: column;
    justify-content:space-between;
}
#map{
    justify-content: flex-end;
}
#map iframe{
   min-width:400px;
}
#blocks li{
    width:400px;
    display:flex;
    align-items: center;
    padding:20px;
    box-shadow: var(--shadow);
}
#blocks li img{
    margin-right:30px;
}
.middle{
    background:var(--v-claro);
}
.middle h4, .middle p{
    color:white;
}
/* NEWSLETTER/FOOTER */
#fundo-cinza{
    display:flex;
    width:100%;
    margin-top:30px;
    justify-content: center;
    align-items:stretch;
    background-color:var(--c-claro);
}
#email{
    padding:10px 0px 10px 20px;
    margin:0!important;
    width:300px;
    background-color:var(--v-claro);
    color:white;
    font-size:1.0rem;
}
#email::placeholder{
    color:white;

}
#email::-ms-input-placeholder{
    color:white;

}
#submit{
    padding:10px 20px;
    margin:0!important;
    background:white;
    border:8px solid var(--v-claro);
    font-weight:600;
}
footer{
    flex-direction:column;
    justify-content: space-between;
    padding:30px 0 0 0;
    background:var(--c-claro);
}
.links-footer{
    flex-direction:column;
}
.links-footer a{
    margin:5px 0;
    color:var(--c-escuro);
    font-weight:500;
}

#footer-line-2{
    width:80%;
    margin: 20px auto;
    border-top:1px solid var(--c-escuro);
}
#social li{
    margin:10px;
}
#social img{
    width:30px;
}
#whatsapp-button{
    position: fixed;
    bottom:10px;
    right:10px;
    animation-name: Shake;
    animation-duration: 6s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    z-index:1000;
    
}
#whatsapp-button img{
    width:100px;
}

/*----------------------------------------- PAGINA DE IMÓVEIS ------------------------------------------*/
/* PHOTO GALLERY */

.carousel-container {
    display:block;
    overflow-x: hidden;
    position:relative;
    background:var(--c-claro);
    width: 100%; /* Ajuste conforme necessﾃ｡rio */
}
.carousel {
    display: flex;
    justify-content: space-around;
    transition: transform 0.3s ease;
    width:100%;
}
.carousel-item img{
    width: 100%;
    aspect-ratio: 3/2!important;
    object-fit: cover;
    display: block;

}
.carousel-item {
    flex: 0 0 311px; /* Cada item ocupa 20% da largura */
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--v-claro);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-weight:bolder;
    font-size:30px;
    font-family:Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
.prev{
    left:0;
}
.next {
    right: 5px;
}
.lb-next, .lb-prev{
    background:none!important;
    border:none;
    font-size:50px;
    font-family:Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
.lightbox {
    display: none;
    position: fixed;
    justify-content: center;
    align-items:center;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {

    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#imovel>div{
    display:flex;
    flex-direction:space-between;
}
#imovel,#localizacao{
    width:90%;
    max-width:1000px;
    margin: 0 auto;
}
#imovel h1{
    color:var(--v-escuro);
    font-size:3.0rem;
    max-width:90%;
    margin:50px 0;
}
#descricao{
    width:65%;
    text-align:justify;
}
#dados{
    display:flex;
    flex-direction:column;
    width:30%;
    
}
#info > div, #custos > div{
    display:flex;
    align-items:center;
    justify-content: space-between;
    }
#info img{
    margin-right:10px;
}

.valor{
    color:var(--v-escuro);
    font-size:2.0rem;
    margin:20px 0 10px;
}
.valor span{
    font-size:1.5rem;
    font-weight:200;
    color: var(--c-escuro);
}
.green-bold{
    color:var(--v-claro);
    font-weight:bold;
}

#localizacao h1{
    color:var(--v-escuro);
    font-size:2.0rem;
    margin:30px 0;
}
#localizacao #map{
    width:100%!important;
    height:400px;
    margin:20px 0;
}
/*------------------------------------- LISTA DE IMOVEIS PESQUISA E FILTRO DO INDEX------------------------------------------------*/
#lista-container,
#lista-filtro,
#lista-imoveis,
.lista-imovel, 
.imovel-info, 
.imovel-info div,
.imovel-custos div, 
.imovel-desc,
.r1,
.r2,
.r3,
#search-filter
{
    display:flex;
}
#lista-imoveis{
    justify-content: flex-start;
    gap:50px;
    padding:0 50px;
    align-items: flex-start;
}
#lista-container{
    
    max-width:1200px;
    flex-direction:column;
    justify-content: center;
    overflow:hidden;
    gap:20px;
    margin:0 auto;
}
.lista-imovel{
    justify-content: flex-start;
    align-items: center;
    width:100%;
    border:1px solid var(--v-claro);
    box-shadow: var(--shadow);
    height:300px;
    overflow: hidden;
    gap:50px;
}
.lista-imovel h1{
    color:var(--v-escuro);
}
.imovel-img{
    width:25%;
    height:100%;

}
.imovel-img img{
    width: 100%;
    height:100%;
    aspect-ratio: 1/1!important;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.imovel-info, .imovel-info div{
    justify-content: start;
    align-items: center;
    gap:10px;
    margin:5px 0;
}
.imovel-desc{
    width:75%;
    flex-direction:column;
    height:100%;
    justify-content: space-around;
}
.imovel-custos div{
    gap:10px;
}
#lista-filtro{
    flex-direction:column;
    flex-wrap:wrap;
    border:3px solid var(--v-claro);
    border-radius:10px;
    padding:30px 40px;
    align-items: stretch;
    
}
#lista-filtro input, #lista-filtro select, #search-filter select{
    border-radius:10px;
    padding:10px;
}
#lista-filtro input[type=number],#search-filter input[type=number]{
    width:60px;
    padding:5px;
    border:solid 0;
    border-radius:0!important;
    border-bottom:solid 1px var(--v-claro);
}
#lista-filtro select{
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    padding:15px;
}
#lista-filtro [type=button]{
    margin-top:10px;  
}
#ordem{
    margin:0 0 20px 0;
    padding:15px;
}
.r2,
.r1{
    display:flex;
    flex-direction:column;
}
.r1{
    align-content: stretch;
}
.r3{
    justify-content: space-between;
}
#search-filter{
    position:relative;
    z-index:2;
    margin:-50px auto 50px;
    justify-content: center;
    align-items:center;
    width:90%;
    max-width:1000px;
    box-shadow:var(--shadow);
    padding:20px;
    border-radius:10px;
    background-color:white;
    gap:20px;
    flex-wrap:wrap;
}
#search-filter div{
    display: flex;
    justify-content: space-around;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
/*----------------------------------------- PAGINA DE CADASTRO DE IMOVEIS ------------------------------------------*/
input, select,textarea{
    border:1px solid var(--v-claro);
    padding:2px 10px;
    margin:10px 5px;
}
textarea{
    padding:10px 10px;
    height:150px;
    
}
#campos{
    max-width:600px;
    margin-top:30px;
    align-items: stretch;
}
#campos>div{
    display:flex;
    justify-content: space-between;
    flex-wrap:nowrap;

}
/*------------------------------------- LISTA DE IMOVEIS PAINEL------------------------------------------------*/
.list-thumb{
    margin:10px 40px!important;
    height:100px;
    overflow:hidden;
    box-shadow: var(--shadow);
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    width:70%;
    max-width:800px;
}
.list-thumb-img{
    width:150px;
    height:100%;
}
.list-thumb-img img{
    width: 100%;
    aspect-ratio: 3/2!important;
    object-fit: cover;
    display: block;
}
.list-thumb .edit{
    height:100%;
    width:50px;
    text-align:center;
    font-size:1.5rem;
    font-weight: bolder;
    color:var(--v-escuro);  
}
.list-thumb .edit:hover{
    color:white;
    background-color:var(--v-claro);
}
.list-thumb label{
    width:calc( 100% - 300px);
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    padding:10px;
    color:var(--v-escuro);
    justify-content:space-between;
}
.list-thumb label h3{
    /* Ajusta para permitir até duas linhas de texto */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*------------------------------------- EDITAR IMOVEIS ------------------------------------------------*/
#lista-imagens{
    border-radius:10px;
    box-shadow: var(--shadow);
    margin:20px auto;
    padding:20px 10px;
    max-width:600px;
    display:flex;
    flex-wrap: wrap!important;
    justify-content: space-evenly!important;
    gap:10px;
}

#lista-imagens div{
    position:relative;
    width:calc( 25% - 10px);
    box-sizing: border-box;
    max-width: 150px; /* Define a largura mínima para garantir que se ajustem */
    min-width: 150px; /* Define a largura mínima para garantir que se ajustem */
    flex: 1 1 auto; /* Permite que os itens se ajustem e quebrem */

}
#lista-imagens div img{
    max-width:100%;
    aspect-ratio: 3/2!important;
    display: block;
}
#lista-imagens div input[type=checkbox]{
    position:absolute;
    top:0;
    right:0;
    width:20px;
    height:20px;

}
#lista-imagens div img{
    max-width:100%;
    aspect-ratio: 3/2!important;
    display: block;
}

@media (max-width: 1200px) {
    #menu-desktop.home{
        z-index:10000;
        position:absolute;
        top:0;
        left:0;
        background:white;
        padding:0;
    }
    #menu-mobile,#dropdown{
    display:none;
}
    #slogan{
        margin-top:150px!important;
    }
    #hero-right{
        height:50%;
        z-index:1;
    }
    #sobre div{
        flex-direction:column-reverse;
        align-items:center;
    }
    #footer-line-1{
        flex-direction:column;
        align-items:center;
    }
    #blocks,.links-footer{
        align-items:center;
    }
    #map, iframe{
        height:400px;
        width:100%;
        padding:30px 0;
    }
    #hero-left h1{
        font-size:4.0rem;
    }
    h2{
        font-size: 3.0rem!important;
    }
    .carousel-container{
       top:150px; 
    }
    .carousel-item img{
        height:200px;
}
    
}
@media (max-width: 860px){
    #search-filter{
        margin-top:0;
    }
      #lista-filtro,.imovel-custos{
         display:flex;
        flex-direction:row;
        justify-content: space-around;
    }
    .imovel-custos{
        align-items:center;
        gap:20px;
    }
    #lista-imoveis,.imovel-desc{
        flex-direction:column;
        justify-content: center;
        width:90%;
        margin:0 auto;
    }
    .imovel-desc h1{
        font-size:1.0rem;
    }
    #lista-imoveis{
        padding: 0;
        align-items:center;
    }
    .lista-imovel{
        flex-direction:column;
        gap:10px;
        height:auto;
    }
    .imovel-img{
        width:100%;
        height:250px;
    }
    .r2{
        flex-direction:row;
    }
}
@media (max-width: 768px) {
    #search-filter{
        margin-top:50px;
    }
  
    .carousel-container{
       top:0; 
    }
    .bar {
      height: 5px;
      width: 30px;
      background-color: var(--v-claro);
      display: block;
      border-radius: 5px;
      transition: 0.3s ease;
    }
    #bar1 {
      transform: translateY(-4px);
    }

    #bar3 {
      transform: translateY(4px);
    }
    .change {
      display: block!important;
    }

    .change #bar1 {
      transform: translateY(4px) rotateZ(-45deg);
    }

    .change #bar2 {
      opacity: 0;
    }

    .change #bar3 {
      transform: translateY(-6px) rotateZ(45deg);
    }
    #menu-desktop,#dropdown{
        display:none;
    }
    
    #menu-mobile{
        width:90%;
        display:flex;
        padding:0;
        box-sizing: border-box;
        margin: 0  auto;    
    }
    #dropdown{
        text-align:center;
        width:100%;
    }
    #dropdown li a, #dropdown li{
        padding:10px 0;
    
    }
    #slogan{
        margin-top:50px!important;
        align-items: center;
        text-align:center;
        height:auto!important;
    }
    
    #hero{
        flex-direction:column-reverse;
        height:auto;
    }
        #hero-left, #hero-right {
        width: 100%;
        
    }
    #hero-right{
        min-height:300px!important;
        border-radius:0!important;
        background-size:100% auto;
 
    }
    #sobre-copy{
        text-align:center;
        width:80%;
        margin:0 auto;
    }
    #imovel > div{
    flex-direction:column-reverse;
    align-items:center;
    }
    #dados,#descricao{
        width:100%;
        max-width:100%;
        justify-content: space-between;
    }
    #dados > div{
        justify-content: flex-start;
        width:calc(100%);
        margin-bottom:30px;
    }
    #custos > div{
        justify-content:flex-start!important;
    }
    #custos > div > p:first-child{
        margin-right:10px;
    }
    .valor{
        margin:0 0 10px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes Shake {
  0% {
  transform: scale3d(1, 1, 1);
  }
  3%, 5% {
  transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }
  7%, 9.5%, 13%, 16% {
  transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  8%, 10%, 15% {
  transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  17% {
  transform: scale3d(1, 1, 1);
  }
} 