*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --laranja: #e25b25;
    --branco: #edebea;
    --preto: #1e1d1d;
    --verde: #16c41e;
}
html {
    scroll-behavior: smooth;
}

/*BOTÃO E FORMULARIO DO WHATSAPP*/

.contato{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--verde);
    color: var(--branco);
    cursor: pointer;
    border-radius: 50px;
    font-size: 40px;
    bottom: 50px;
    right: 50px;
    transition: 0.3s;
    z-index: 1000;
}
.contato:hover{
    background-color: var(--verde);
    color: var(--branco);
    box-shadow: 0px 0px 30px var(--verde);
    transition: 0.3s;
}
.form-container{
    position: fixed;
    bottom: 130px;
    right: 50px;
    width: 250px;
    height:350px;
    border-radius: 20px;
    background-image: url('/NOMAD_Modern_Life/images/Fundo_WhatsApp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}
.form-container.ativo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.form-container > form{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.form-container > form > span{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    font-size: 20px;
    line-height: 25px;
    color: var(--preto);
    transform: translate(0px, -25px);
}
.form-container > form > span > i{
    font-size: 30px;
    color: var(--verde);
}
.form-container > form > input{
    width: 90%;
    height: 40px;
    border: none;
    padding: 10px;
    background-color: var(--branco);
    box-shadow: 0px 5px 10px 1px #1e1d1d60;
    border-radius: 10px;
    color: var(--preto);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
}
.form-container > form > button{
    width: 100%;
    height: 20%;
    border: none;
    padding: 10px;
    border-radius:0px 0px 20px 20px;
    transform: translate(0px, 26.5px);
    background-color: #1e1d1d92;
    color: var(--branco);
    display: grid;
    grid-template-columns: 1.5fr 0.3fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: .3s ease;
}
.form-container > form > button:hover{
    background-color: var(--verde);
    transition: .3s ease;
}
.form-container > form > button:hover > i{
    border: 1px solid var(--branco);
    color: var(--branco);
    transition: .3s ease;
}
.form-container > form > button > i{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 3px;
    font-size: 15px;
    color: var(--preto);
    background-color: var(--verde);
    border-radius: 50%;
    transform: rotate(45deg);
    transition: .3s ease;
}
.form-container > form > button > p{
    border: 1px solid var(--branco);
    border-radius: 20px;
    padding: 5px;
}
.form-container .top{
    width: 100%;
    height: 20%;
    background-color: var(--verde);
    border-radius: 20px 20px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-container .top > i{
    font-size: 30px;
    color: var(--branco);
}

/*Mensagem de sucesso*/
.flash-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.alert {
    max-width: 300px;
    height: 150px;
    position: fixed;
    top: 40px;
    left: 40%;
    background-color: var(--laranja);
    color: var(--branco);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 20px;
    padding: 15px 20px;
    border-radius: 20px;
    margin: 20px auto;
    opacity: 0;
    z-index: 9999;
    transform: translateX(-50%);
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .alert > i{
    
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 50px;
    color: var(--preto);
  }
  .alert.show {
    opacity: 1;
    transform: translateY(0);
  }
/*================================CABEÇA DO PROJETO================================*/

header{
    width: 100%;
    height: 120px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
header .head{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 550px;
    padding: 0 80px;
}
header .head .logo{
    width: 100px;
    height: 100px;
}
header .head .logo img{
    width: 200px;
}
header .head .menu{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'exu 2', sans-serif;
    font-weight: lighter;
}
header .head .menu ul{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 50px;
    list-style: none;
}
header .head .menu > button{
    display: none;
}
header .head .menu ul li a{
    text-transform: uppercase;
    text-decoration: none;
    color: var(--branco);
    font-size: 15px;
    transition: 0.3s;
}
header .head .menu ul li a:hover{
    color: var(--laranja);
    font-size: 20px;
    transition: 0.3s;
}

/*================================CORPO DO PROJETO============================*/
/*JANELA PRINCIPAL*/

main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--preto);
}
main section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main section .janela{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
main section .janela .divisao2{
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
main section .janela .divisao2 .imagem{
    width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
main section .janela .divisao2 .imagem .img5{
    width: 100%;
    height: auto;
    object-fit: cover;
}
main section .janela .divisao2 .info{
    width: 600px;
    height: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
main section .janela .divisao2 .info >h1{
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    transform: translate(90px, 0px);
    font-size: 160px;
    margin-bottom: 15px;
    color: var(--laranja);
    line-height: 120px;
}
main section .janela .divisao2 .info p{
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    transform: translate(98px, 0px);
    font-size: 30px;
    color: var(--branco);
}
main section .janela .divisao2 .info a{
    transform: translate(98px, 0px);
    text-decoration: none;
}
main section .janela .divisao2 .info a button{
    width: 200px;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--laranja);
    color: var(--laranja);
    font-family: 'Poppins';
    font-size: 17px;
    border-radius: 40px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.5s;
}
main section .janela .divisao2 .info a button:hover{
    background-color: var(--laranja);
    border: none;
    color: var(--branco);
    transition: 0.5s;
}

/*JANELA MOBILIDADE*/

main section .janela2{
    width: 100%;
    height: auto;
}
main section .janela2 >h1.mobilidade{
    width: 100%;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    padding-top: 70px;
    font-size: 80px;
    color: var(--laranja);
}
main section .janela2 > p.sub{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: var(--branco);
}
main section .janela2 .divisao2{
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
main section .janela2 > p.paragrafo{
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-left: 15%;
    padding-right: 10%;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--branco);
}
main section .janela2 .polos{
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
main section .janela2 .polos .locais{
    width: 250px;
    height: 390px;
    position: relative;
    border: 1px solid var(--laranja);
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 20px;
    justify-content: center;
}
main section .janela2 .polos .locais:hover > img{
    transform: scale(1.1);
    filter: brightness(1.1);
}
main section .janela2 .polos .locais::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
main section .janela2 .polos .locais > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s;
    cursor: pointer;
    transition: .5s ease;
    filter: brightness(0.8);
}
main section .janela2 .polos .locais > h3{
    width: 70%;
    position: absolute;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    color: var(--branco);
    z-index: 2;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--laranja);
    transform: translate(0px, 80px);
}
main section .janela2 .polos .locais .distancia{
    z-index: 2;
    position:absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    color: var(--branco);
    transform: translate(0px, 150px);
}

/*JANELA LOCALIZAÇÃO*/

main section .janela3{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main section .janela3 .txt-mapa{
    width: 75%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}
main section .janela3 .txt-mapa > i{
    font-size: 50px;
    color: var(--laranja);
}
main section .janela3 .txt-mapa > h2{
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
    font-size: 80px;
    color: var(--laranja);
}
main section .janela3 .txt-mapa > h2 > span{
    font-weight: bold;
}
main section .janela3 .txt-mapa > p{
    width: 150px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--branco);
}
main section .janela3 .mapa{
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*JANELA PLANTAS*/

main section .janela4{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
main section .janela4 .apartamentos{
    width: 100%;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 80px;
    color: var(--laranja);
}
main section .janela4 > p{
    width: 70%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--branco);
    text-align: justify;
    padding-bottom: 40px;
}
main section .janela4 > p > span{
    font-weight: bold;
    color: var(--laranja);
}
main section .janela4 .info-planta{
    width: 62%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
}
main section .janela4 .info-planta .btn-info{
    position: relative;
    width: 150px;
    height: 50px;
    background-color: var(--laranja);
    color: var(--branco);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    border: none;
    border-radius: 30px;
    gap: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s ease;
}
main section .janela4 .info-planta .btn-info:hover{
    background-color: transparent;
    color: var(--laranja);
    border: 2px solid var(--laranja);
    transition: 0.3s ease;
}
main section .janela4 .info-planta .btn-info.ativo{
    background-color: transparent;
    color: var(--laranja);
    border: 2px solid var(--laranja);
    font-weight: bold;
    transition: 0.3s ease;
}
main section .janela4 .info-planta .btn-info .txt{
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: auto;
    top: 15px;
    transform: scale(1);
    transition: .3s ease;
}
main section .janela4 .info-planta .btn-info:hover .txt{
    transform: scale(0);
    transition: 0.3s ease;
}
main section .janela4 .info-planta .btn-info .icon{
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: auto;
    top: 5px;
    font-size: 30px;
    transform: scale(0);
    transition: .3s ease;
}
main section .janela4 .info-planta .btn-info:hover .icon{
    transform: scale(1);
    transition: 0.3s ease;
}
/*plantas*/
main section .janela4 .plan-preco{
    width: 100%;/*TAMANHO DO BLOCO PARA ALOCAR OS BLOCOS*/
    height: auto;
    display: flex;/*DEFINE O TIPO DE ALOCACAO*/
    flex-direction: row;/*DEFINE A ORDEM DE ALOCACAO (LINHA)*/
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    gap: 50px;/*DISTANCIA DOS BLOCOS UM DO OUTRO*/
    background-color: var(--preto);
}
main section .janela4 .plan-preco .plantas{
    position: relative;
    width: 100%; /* DEFINE A LARGURA DO BLOCO PARA O ITEM SE ALOCAR*/
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
main section .janela4 .plan-preco .plantas .planta-img{
    position: absolute;
    width: 700px;/*TAMANHO DO ITEM*/
    height: 500px;
    display: flex; 
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.02);
}
main section .janela4 .plan-preco .plantas .planta-img.active{
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}
/*preços*/
main section .janela4 .plan-preco .preco{
    width: 70%;/* DEFINE A LARGURA DO BLOCO PARA O ITEM SE ALOCAR*/
    height: 500px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
main section .janela4 .plan-preco .preco .precos-ap{
    width: 600px;
    height: 450px;
    position: absolute;
    padding-left: 50px;
    font-family: 'Poppins', sans-serif;
    color: var(--branco);
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.02);
}
main section .janela4 .plan-preco .preco .precos-ap.active{
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}
main section .janela4 .plan-preco .preco .precos-ap > p{
    font-size: 25px;
    font-weight: 400;
}
main section .janela4 .plan-preco .preco .precos-ap > h2{
    font-size: 70px;
    font-weight: bolder;
    color: var(--laranja);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
main section .janela4 .plan-preco .preco .precos-ap > h2 > p{
    font-size: 20px;
    font-weight: 400;
    color: var(--branco);
}
main section .janela4 .plan-preco .preco .precos-ap .caracteristicas{
    color: var(--branco);
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding-left: 10px;
    gap: 10px;
    margin-top: 20px;
}
main section .janela4 .plan-preco .preco .precos-ap .caracteristicas > span > i.bi-check-lg{
    color: var(--laranja);
}
main section .janela4 .plan-preco .preco .precos-ap > a > button{
    width: 500px;
    height: 50px;
    margin-top: 20px;
    border-radius: 5px;
    border: none;
    background-color: var(--laranja);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    transition: .3s ease;
}
main section .janela4 .plan-preco .preco .preco1 > a > button:hover{
    background-color: transparent;
    border: 2px solid var(--laranja);
    color: var(--laranja);
    transition: 0.3s ease;
}

/* JANELA DE FOTOS DO PROJETO*/

main section .janela5{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
main section .janela5 > h1{
    width: 100%;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 80px;
    color: var(--laranja);
}
main section .janela5 > p{
    width: 70%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--branco);
    text-align: justify;
    padding-bottom: 40px;
}
main section .janela5 > p > span{
    font-weight: bold;
    color: var(--laranja);
}
main section .janela5 .slider-container{
    width: 60%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: start;
}
main section .janela5 .slider-container .slider{
     display: flex;
    transition: transform 0.5s ease-in-out;   
}
main section .janela5 .slider-container .slider .slide{
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: none;
}
main section .janela5 .slider-container .slider .slide.active {
  display: block;
}
main section .janela5 .slider-container .slider .slide img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
main section .janela5 .slider-container .slider .slide.active .caption{
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgb(16, 16, 16), transparent);
    top: 0;
    border-radius: none;
    border: none;
    display: block;
    font-family: 'Poppins', sans-serif;
    color: var(--branco);
    padding: 10px;
}
main section .janela5 .slider-container .slider .slide.active .caption h2{
    padding-top: 20px;
    padding-left: 40px;
    color: var(--laranja);
    font-size: 40px;
    font-weight: bolder;
}
main section .janela5 .slider-container .slider .slide.active .caption p{
    width: 70%;
    padding-left: 40px;
    font-size: 15px;
    font-weight: 400;
}
main section .janela5 .slider-container .nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--laranja);
    color: var(--branco);
    border: none;
    padding: 12px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
    transition: 0.3s ease;
}
main section .janela5 .slider-container .nav:hover{
    background-color: transparent;
    color: var(--laranja);
    border: 3px solid var(--laranja);
    transition: 0.3s ease;
}
main section .janela5 .slider-container .nav.prev{
    left: 10px;
}
main section .janela5 .slider-container .nav.next{
    right: 10px;
}
main section .janela5 .slider-container .dots{
    text-align: center;
    margin-top: 16px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
main section .janela5 .slider-container .dots .dot{
    display: inline-flex;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--preto);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
main section .janela5 .slider-container .dots .dot.active{
    background-color: var(--laranja);
}

/*JANELA FORMULARIO*/

main section .janela6{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
main section .janela6 > h1{
    width: 100%;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    padding-bottom: 10px;
    font-size: 80px;
    color: var(--laranja);
}
main section .janela6 > p{
    width: 70%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    color: var(--branco);
    text-align: justify;
    padding-bottom: 40px;
}
main section .janela6 .formulario{
    width: 50%;
    height: auto;
    display: flex;
    background: linear-gradient(to top, #e66d3d, #bd4b1e,#e25b25);
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
main section .janela6 .formulario .selos{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
main section .janela6 .formulario > form{
    background-color: transparent;
    width: 70%;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
main section .janela6 .formulario .selos > i{
    font-size: 30px;
    color: var(--preto);
}
main section .janela6 .formulario .selos > p{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--branco);
}
main section .janela6 .formulario input{
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px;
    background-color: var(--branco);
    border-radius: 10px;
    color: var(--preto);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
}
main section .janela6 .formulario input::placeholder{
    color: var(--preto);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
main section .janela6 .formulario textarea{
    width: 100%;
    height: 100px;
    border: none;
    padding: 10px;
    background-color: var(--branco);
    border-radius: 10px;
    color: var(--preto);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    resize: none;
}
main section .janela6 .formulario textarea::placeholder{
    color: var(--preto);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
main section .janela6 .formulario button{
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--preto);
    color: var(--branco);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: .3s ease;
}

/*RODAPE*/

footer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .rodape1{
    width: 100%;
    height: auto;
    background-color: var(--laranja);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20%;
    padding-right: 20%;
    flex-direction: row;
}
footer .rodape1 > p{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--branco);
}
footer .rodape1 > a > img{
    width: 200px;
    height: auto;
}
footer .rodape2{
    width: 100%;
    height: auto;
    background-color: var(--preto);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer .rodape2 > p{
    width: 60%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 15px;
    color: var(--branco);
}
footer .rodape2 > p.txt{
    font-size: 20px;
    padding-top: 10px;
}
footer .rodape2 > p.txt > a{
    color: var(--branco);
    font-weight: bolder;
    text-decoration: none;
}
footer .rodape2 > p.txt > a > i{
    color: var(--laranja);
    font-size: 25px;
    font-weight: bolder;
}
footer .rodape2 > p > a{
    color: var(--laranja);
}
/*=============================================== RESPONSIVIDADE PARA CELULAR ===============================================*/

@media screen and (max-width: 600px) {
    .contato{
        width: 60px;
        height: 60px;
        font-size: 25px;
        right: 30px;
        bottom: 30px;
    }
    header .head {
        height: 80px;
        gap: 50px;
        padding: 0 20px;
    }
    header .head .logo img{
        width: 150px;
        height: 70px;
    }
    header .head .menu > button{
        display: block;
        background-color: transparent;
        border: none;
        color: var(--branco);
        font-size: 40px;
        cursor: pointer;
    }
    header .head .menu > button > i{
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    header .head .menu > button > i.animate{
        transform: rotate(90deg);
        opacity: 0;
    }
    header .head .menu ul{
        display: flex;
        position: absolute;
        top: 90px;      
        right: 0;
        width: 100%;
        height:0;
        border-radius: 20px;
        background-color: var(--laranja);
        flex-direction: row;
        justify-content: center;
        align-items:start;
        padding-top: 10px;
        gap: 25px;
        visibility: hidden;
        overflow-y: hidden;
        transition: .6s ease;
        z-index: 10000;
    }
    header .head .menu.active ul{
        height: calc(130px - 90px);
        visibility: visible;
        overflow-y: auto;
        transition: .6s ease;
    }
    header .head .menu ul li {
        padding:0;
        margin:0;
        text-align: center;
    }
    header .head .menu ul li a{
        color: var(--branco);
        transition: 0.3s;
        font-size: 12px;
    }
    header .head .menu ul li a:hover{
        color: var(--preto);
        font-size: 20px;
        transition: 0.3s;
    }

    /*===================CORPO DO PROJETO==================*/
    /*JANELA PRINCIPAL*/
    main section .janela .divisao2{
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }
    main section .janela .divisao2 .imagem{
        width: 100%;
    }
    main section .janela .divisao2 .info{
        width: 100%;
        align-items: center;
        text-align: center;
    }
    main section .janela .divisao2 .info >h1{
        width: 100%;
        font-size: 140px;
        transform: translate(0px, 0px);
        line-height: 110px;
    }
    main section .janela .divisao2 .info p{
        width: 100%;
        font-size: 20px;
        transform: translate(0px, 0px);
    }
    main section .janela .divisao2 .info a{
        width: 100%;
        transform: translate(0px, 0px);
    }
    main section .janela .divisao2 .info a button{
        width: 150px;
        height: 40px;
        font-size: 15px;
        transform: translate(0px, 0px);
        border: none;
        background-color: var(--laranja);
        color: var(--branco);
    }

    /*JANELA MOBILIDADE*/

    main section .janela2 >h1.mobilidade{
        font-size: 50px;
        line-height: 40px;
    }
    main section .janela2 > p.sub{
        font-size: 15px;
    }
    main section .janela2 > p.paragrafo{
        width: 100%;
        font-size: 15px;
        padding-left: 5%;
        padding-right: 5%;
    }
    main section .janela2 .polos{
        padding-top: 40px;
        padding-bottom: 20px;
        gap: 10px;
    }
    main section .janela2 .polos .locais{
        width: 120px;
        height: 200px;
    }
    main section .janela2 .polos .locais > h3{
        width: 80%;
        font-size: 12px;
       transform: translate(0px, 40px); 
    }
    main section .janela2 .polos .locais .distancia{
        font-size: 10px;
        transform: translate(0px, 80px);
    }

    /*JANELA LOCALIZAÇÃO*/

    main section .janela3 .txt-mapa{
        gap: 10px;
    }
    main section .janela3 .txt-mapa > i{
        font-size: 30px;
    }
    main section .janela3 .txt-mapa > h2{
        font-size: 50px;
    }
    main section .janela3 .txt-mapa > p{
        font-size: 12px;
    }
    main section .janela3 .mapa{
        width: 100%;
        height: 320px;
    }
    main section .janela3 .mapa iframe{
        width: 90%;
        height: 300px;
    }

    /*JANELA PLANTAS*/
    main section .janela4{
        padding-top: 0;
    }
    main section .janela4 .apartamentos{
        font-size: 50px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }
    main section .janela4 > p{
        width: 100%;
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
    main section .janela4 .info-planta{
        width: 93%;
        display: flex;
        flex-wrap: wrap;
    }
    main section .janela4 .info-planta .btn-info{
        width: 95px;
        height: 35px;
        font-size: 10px;
    }
    main section .janela4 .info-planta .btn-info .txt{
        top: 10px;
    }
    main section .janela4 .info-planta .btn-info .icon{
        font-size: 20px;
        top: 2px;
    }
    /*Plantas*/
    main section .janela4 .plan-preco{
        gap: 80px;
        flex-direction: column;
    }
    main section .janela4 .plan-preco .plantas{
        justify-content: center;
        align-items: center;
        transform: translate(0px, 80px);
    }
    main section .janela4 .plan-preco .plantas .planta-img{
        width: 90%;
        height: auto;
    }
    /*Preços*/
    main section .janela4 .plan-preco .preco{
        width: 100%;
        height: 500px;
        justify-content: center;
        align-items:end;
    }
    main section .janela4 .plan-preco .preco .precos-ap{
        width: 95%;
        height: auto;
        padding-left: 0px;
        font-size: 15px;
    }
    main section .janela4 .plan-preco .preco .precos-ap > p{
        font-size: 12px;
    }
    main section .janela4 .plan-preco .preco .precos-ap > h2{
        font-size: 50px;
    }
    main section .janela4 .plan-preco .preco .precos-ap .caracteristicas > span{
        font-size: 12px;
    }
    main section .janela4 .plan-preco .preco .precos-ap > a{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    main section .janela4 .plan-preco .preco .precos-ap > a > button{
        width: 350px;
        height: 40px;
        font-weight: 400;
        font-size: 15px;
    }

    /*JANELA DE FOTOS DO PROJETO*/

    main section .janela5 > h1{
        font-size: 40px;
        text-align: center;
        padding-bottom: 0px;
        padding-top: 0px;
    }
    main section .janela5 > p{
        width: 100%;
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
    main section .janela5 .slider-container{
        width: 90%;
        height: auto;
    }
    main section .janela5 .slider-container .slider .slide.active .caption{
        height: 150px;
    }
    main section .janela5 .slider-container .slider .slide.active .caption h2{
        font-size: 25px;
        padding-top: 0px;
    }
    main section .janela5 .slider-container .slider .slide.active .caption p{
        font-size: 10px;
    }
    main section .janela5 .slider-container .nav{
        width: 20px;
        height: 20px;
        font-size: 15px;
    }
    main section .janela5 .slider-container .dots .dot{
        height: 7px;
        width: 7px;
        margin: 0 .4px;
    }

    /*JANELA FORMULARIO */

    main section .janela6{
        padding-top: 0px;
    }
    main section .janela6 h1{
        font-size: 40px;
    }
    main section .janela6 p{
        width: 100%;
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
    main section .janela6 .formulario{
        width: 80%;
        height: auto;
    }
    main section .janela6 .formulario form{
        width: 100%;
        height: auto;
    }
    main section .janela6 .formulario form input{
        width: 80%;
        height: 40px;
        font-size: 15px;
    }
    main section .janela6 .formulario form textarea{
        width: 80%;
        height: 100px;
        font-size: 15px;
    }
    main section .janela6 .formulario form button{
        width: 80%;
        height: 40px;
        font-size: 15px;
    }
    main section .janela6 .formulario .selos{
        flex-direction: column;
        gap: 10px;
    }
    main section .janela6 .formulario .selos > p{
        font-size: 12px;
        text-align: center;
    }
    main section .janela6 .formulario .selos > i{
        font-size: 20px;
        color: var(--laranja);
        background-color: var(--preto);
        padding: 10px;
        border-radius: 50%;
    }

    /*RODAPE*/

    footer .rodape1{
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    footer .rodape1 > p{
        width: 200px;
        font-size: 12px;
        text-align: center;
    }
    footer .rodape1 > a > img{
        width: 150px;
    }
    footer .rodape2 > p{
        width: 100%;
        font-size: 12px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }
    footer .rodape2 > p.txt{
        font-size: 15px;
    }
    footer .rodape2 > p.txt > a > i{
        font-size: 20px;
    }
}

/*=============================================== RESPONSIVIDADE PARA TABLET ===============================================*/

@media screen and (min-width: 600px) and (max-width: 1200px) {
    header .head{
        gap: 400px;
    }

    /*===================CORPO DO PROJETO==================*/

    main section .janela2 > p.paragrafo{
        width: 100%;
        font-size: 15px;
        padding-left: 5%;
        padding-right: 5%;
    }
    main section .janela4 .apartamentos{
        text-align: center;
        padding-left: 5%;
        padding-right: 5%;
        line-height: 90px;
    }
    main section .janela4 > p{
        width: 100%;
        font-size: 15px;
        padding-left: 5%;
        padding-right: 5%;
    }
    main section .janela4 .info-planta{
        width: 100%;
    }
    main section .janela4 .plan-preco{
        gap: 20px;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    main section .janela4 .plan-preco .plantas{
        justify-content: center;
        align-items: center;
        transform: translate(0px, 250px);
    }
    main section .janela4 .plan-preco .plantas .planta-img{
        width: 70%;
        height: auto;
    }
    /*Preços*/
    main section .janela4 .plan-preco .preco{
        width: 100%;
        height: 1000px;
        justify-content: center;
        align-items:end;
    }
    main section .janela5 > h1{
        width: 100%;
        text-align: center;
        padding-left: 5%;
        padding-right: 5%;
        line-height: 90px;
    }
    main section .janela5 > p{
        width: 100%;
        font-size: 15px;
        padding-left: 5%;
        padding-right: 5%;
    }
    main section .janela5 .slider-container{
        width: 90%;
    }
    main section .janela5 .slider-container .dots .dot{
        height: 7px;
        width: 7px;
        margin: 0 .4px;
    }
}