@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');
@font-face {
    font-family: 'Lucida Handwriting';
    src: url('../fonts/LucidaHandwritingStdBold.TTF') format('ttf');
    font-weight: bold;
    font-style: bold;
}
:root{
    --color-primary: #f97316;
    --color-secondary: #201c18;
    --color-tertiary: #d9b57d;
}
*{
    margin: 0;
    box-sizing: border-box;
}
body::-webkit-scrollbar {
    width: 16px;
}

body::-webkit-scrollbar-track {
    background: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 20px;
    border: 5px solid #fff;
}
body,html{
    overflow-x: hidden;
    font-family: poppins;
    color: #2c2c2c;
}
#institucional{
    color: var(--color-secondary);
}
section{
    padding: 50px 0;
}
img{
    width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    color: #2c2c2c;
}
p{
    line-height: 22px;
    font-size: 15px;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
i{
    opacity: .7;
}

#politica-termos h2{
    text-align: center;
    margin-bottom: 20px;
}
#politica-termos p{
    margin: 16px 0;
}
#politica-termos li{
    list-style: disc;
}

.toright{
    position: relative;
    left: -50px;
    opacity: 0;
    transition: 1s;
}
.toleft{
    position: relative;
    right: -50px;
    opacity: 0;
    transition: 1s;
}
.totop{
    position: relative;
    bottom: -50px;
    opacity: 0;
    transition: 1s;
}
.tobottom{
    position: relative;
    top: -50px;
    opacity: 0;
    transition: 1s;
}
.toright.show,.toleft.show,.totop.show,.tobottom.show{
    opacity: 1;
}
.toright.show{
    left: 0;
}
.toleft.show{
    right: 0;
}
.totop.show{
    bottom: 0;
}
.tobottom.show{
    top: 0;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    background: var(--color-primary);
    color: #000;
    border: 0;
    z-index: 2;
    cursor: pointer;
}
#btn-whatsapp{
    display: flex;
    background: linear-gradient(-40deg,#66af37 50%,#6dbe3c 50%);
    color: #fff;
    position: fixed;
    bottom: 75px;
    right: 20px;
    padding: 15px;
    border-radius: 50%;
    z-index: 2;
}
.row{
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.row-md-reverse{
    flex-direction: column-reverse;
}
.col-md-6,.col-lg-6{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}
.mb-1{
    margin-bottom: 10px;
}
.mb-4{
    margin-bottom: 40px;
}
.btn-1,.btn-2{
    display: inline-block;
    background: 0;
    background-size: 164%;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 150px;
    transition: .3s;
    cursor: pointer;
}
.btn-1{
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
}
.btn-1:hover{
    opacity: .7;
}
.btn-2{
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-2:hover{
    background: var(--color-primary);
    color: #000;
}

.baixar{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    transition: .3s;
    padding: 17px 0;
}
header nav,
header nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav svg{
    display: none;
    color: var(--color-primary);
}
header nav{
    height: 100%;
}
header nav .logo{
    display: flex;
    align-items: center;
    gap: 6px;
}
header nav .logo img{
    width: auto;
    height: 43px;
    margin-right: 6px;
}
header nav .logo span{
    font-family: 'Lucida Handwriting', cursive;
    font-weight: bold;
    color: #fff;
}
header.scrolled nav .logo span{
    color: #2c2c2c;
}
.logo span:last-child,header nav .logo span:last-child{
    font-family: poppins;
    color: #f97316;
    font-weight: 600;
}
header nav ul li a{
    display: block;
    padding: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: .3s;
    color: #fff;
}
header nav ul li a.btn-1{
    margin-left: 20px;
}
header nav ul li a:not(.btn-1):hover{
    opacity: .6;
}
header.scrolled{
    /*background: rgba(255,255,255,.6);*/
    background: #fff;
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 0px 20px -6px rgba(0, 0, 0, .1);
}
header.scrolled a:not(.btn-1){
    color: #2c2c2c;
}

#inicio{
    background: linear-gradient(rgb(7 3 1 / 90%), rgba(249, 115, 22, .3)), url(/assets/imgs/capa.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
#inicio h1{
    color: var(--color-primary);
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 15px;
}
#inicio p{
    margin-bottom: 30px;
    color: #fff;
}

#vantagens{
    background: #f6f6f6;
}
#vantagens .vantagens{
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
#vantagens .vantagens .vantagem{
    width: calc(33.3333333% - 20px);
    margin: 10px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#vantagens .vantagens .vantagem svg{
    display: block;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    fill: var(--color-primary);
    margin-bottom: 10px;
}
#vantagens .vantagens .vantagem b{
    margin-bottom: 10px;
}
#vantagens .vantagens .vantagem p{
    opacity: .7;
}

#nosso-app img{
    border-radius: 20px;
}

.col-md-6 > img{
    border-radius: 20px;
}

.residencia{
    padding: 20px;
}
.residencias .slick-arrow{
    display: none !important;
}

#perguntas{
    background: linear-gradient(rgb(7 3 1 / 90%), rgba(249, 115, 22, .3)), url(/assets/imgs/capa.webp);
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: 65px 0;
}
#perguntas > div{
    padding: 20px;
}
#perguntas h2{
    text-shadow: 0px 0px 6px #000000;
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25em;
    letter-spacing: 0px;
    text-transform: capitalize;
}
#perguntas p{
    text-shadow: 0px 0px 6px #000000;
    text-align: center;
    margin-bottom: 20px;
}
#perguntas > div > div{
    margin: 0 auto;
    max-width: 710px;
    background: #1210109c;
    padding: 0 25px;
}
#perguntas svg{
    fill: #ececec;
    height: 14px;
    width: 14px;
    min-width: 14px;
    margin-left: 5px;
}
#perguntas .pergunta{
    border-bottom: 1px solid #ececec;
}
#perguntas .pergunta:last-child{
    border: 0;
}
#perguntas .pergunta > div:first-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    text-decoration: none;
    letter-spacing: 0px;
    padding: 25px;
    cursor: pointer;
}
#perguntas .pergunta > div:last-child{
    padding: 0 25px 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0px;
    min-width: 100%;
}

#condominios h2,#condominios p{
    text-align: center;
}
#condominios p{
    margin-bottom: 20px;
}
#condominios .condominios{
    position: relative;
}
#condominios .condominios > div{
    display: flex;
}
#condominios .condominios .condominio{
    width: 100%;
    padding: 20px;
}
#condominios .condominios .condominio > div{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 0px 20px -6px rgba(0, 0, 0, .1);
}
#condominios .condominios .condominio > div > .img{
    height: 300px;
    background-size: cover;
    background-position: center center;
}
#condominios .condominios .condominio > div > :not(.img){
    padding: 20px;
}
#condominios .condominios .condominio h3{
    color: var(--color-primary);
}
#condominios .condominios .condominio small{
    opacity: .7;
}
#condominios #condominio-prev{
    left: -20px;
}
#condominios #condominio-next{
    right: -20px;
}

.slick-arrow{
    background: 0;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 16px);
}
.slick-arrow svg{
    stroke: var(--color-primary);
}

#avendas{
    text-align: center;
}
.avendas{
    margin-top: 30px;
}
.avenda{
    padding: 20px;
}
.avenda > div{
    display: flex;
    align-items: end;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.avenda > div > div{
    padding: 20px;
    background: linear-gradient(to top, #d9b57d, transparent);
    color: #fff;
    width: 100%;
    /*max-height: 97px;*/
    transition: .6s;
    position: relative;
    bottom: -106px;
}
.avenda:hover > div > div{
    max-height: 550px;
    bottom: 0;
}
.avenda h2{
    margin-bottom: 15px;
}
.avenda a{
    margin-top: 20px;
    border-color: #fff;
    color: #fff;
    display: inline-flex;
    gap: 12px;
    align-items: center;
}
.avenda button:hover{
    border-color: var(--color-secondary);
}
.avendas .slick-arrow{
    display: none !important;
}
.avendas .slick-dots{
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    width: 100%;
}
.avendas .slick-dots button{
    background: #3f3f3f;
    font-size: 0;
    padding: 0;
    border: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.avendas .slick-dots .slick-active button{
    background: #ccc;
}

.sociais{
    max-width: 600px;
    margin: 0 auto;
}
.sociais svg{
    width: 50px;
    height: 50px;
}
.sociais .social p{
    font-style: italic;
    margin-bottom: 20px;
}
.sociais .social > div{
    display: flex;
    align-items: center;
    gap: 20px;
}
.sociais .social .img{
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.sociais .social small{
    display: block;
    opacity: .6;
}
.sociais .slick-arrow{
    display: none !important;
}
.sociais .slick-dots{
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    width: 100%;
}
.sociais .slick-dots button{
    background: #3f3f3f;
    font-size: 0;
    padding: 0;
    border: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.sociais .slick-dots .slick-active button{
    background: #ccc;
}

#institucional{
    background: #f6f6f6;
    margin-top: 50px;
}
#institucional svg{
    color: var(--color-primary);
    width: 15px;
    height: 15px;
}
#institucional .container > div{
    display: flex;
}
#institucional .container > div > div{
    padding: 0 20px;
}
#institucional .container > div > div:first-child{
    max-width: 33%;
}
#institucional .button{
    color: #fff;
    border: 1px solid var(--color-primary);
    transition: .3s;
}
#institucional a.button:hover{
    background: transparent;
    color: var(--color-primary);
}
#institucional .container .logo{
    margin-bottom: 10px;
}
#institucional .container > div > div:first-child img{
    max-width: 100%;
    width: auto;
}
#institucional h3{
    font-weight: 700;
    font-size: 17px;
}
#institucional a{
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
}
#institucional a:hover{
    color: var(--color-primary);
}
#institucional p,
#institucional a,
#institucional li{
    font-size: 13px;
    line-height: 19px;
    font-weight: 300;
}
#institucional .siga-nos ul{
    display: flex;
    flex-wrap: wrap;
}
#institucional .siga-nos ul li{
    padding: 5px;
}
#institucional .siga-nos ul li:first-child{
    padding: 5px 0;
}
#institucional .siga-nos .button{
    padding: 15px;
    display: inline-flex;
}
#institucional .siga-nos .button svg{
    width: 20px;
    height: 20px;
}
@media(max-width: 1200px){
    #institucional .siga-nos ul li:first-child{
        padding: 5px;
    }
}
@media(max-width: 768px){
    header nav ul{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 20px;
        max-height: calc(100vh - var(--height-nav));
        overflow: auto;
        background: rgba(255, 255, 255, .6);
        backdrop-filter: blur(3px);
        border-top: 1px solid var(--color-primary);
        transition: .3s;
    }
    header nav ul.active{
        display: flex;
    }
    header nav svg{
        display: inline-block;
    }
    header nav ul li a.btn-1{
        margin: 0;
        margin-top: 20px;
    }
    
    #vantagens .vantagens .vantagem{
        width: calc(50% - 20px);
        padding: 10px;
    }

    #perguntas{
        padding: 35px 0;
    }
    #perguntas svg{
        height: 11px;
        width: 11px;
        min-width: 11px;
    }
    #perguntas .pergunta > div:first-child{
        padding: 15px;
    }

    #institucional .container > div{
        flex-wrap: wrap;
    }
    #institucional .container > div > div{
        padding: 20px;
    }
    #institucional .container > div > div:first-child{
        padding-bottom: 0;
        max-width: 100%;
    }

    footer{
        z-index: 3;
    }
}
@media(max-width: 580px){
    #condominios #condominio-prev,
    #condominios #condominio-next{
        display: none !important;
    }
}
@media(max-width: 572px){
    #vantagens .vantagens .vantagem{
        padding: 0;
    }
    #vantagens .vantagens b,
    #vantagens .vantagens p{
        font-size: 12px;
    }
}
footer{
    background: var(--color-primary);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}
.holy a{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
}
.holy img{
    width: auto;
    filter: brightness(10);
}

@media(min-width: 576px){
    .container{
        max-width: 540px;
    }
    .residencias .residencia > div{
        min-height: 400px;
    }
}
@media(min-width: 768px){
    .container{
        max-width: 720px;
    }
    .row-md-reverse{
        flex-direction: row;
    }
    .col-md-6{
        width: calc(50% - 24px);
    }
    .residencias .residencia > div{
        min-height: 600px;
    }
}
@media(min-width: 992px){
    .container{
        max-width: 960px;
    }
    .col-lg-6{
        width: calc(50% - 24px);
    }
    .residencias .residencia > div{
        min-height: 830px;
    }
}
@media(min-width: 1200px){
    .container{
        max-width: 1140px;
    }
}
@media(min-width: 1400px){
    .container{
        max-width: 1320px;
    }
    .residencias .residencia > div{
        min-height: 1250px;
    }
}