@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;
}*/
:root{
    --color-primary: #f3f1e2;
    --color-secondary: #aa871a;
    --color-tertiary: #323927;
}
*{
    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: var(--color-tertiary);
}
section{
    padding: 50px 0;
}
section img{
    margin: 0 auto;
    max-width: 300px;
}
section.dark{
    background: var(--color-primary);
}
img{
    width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    color: var(--color-tertiary);
}
p{
    line-height: 22px;
    font-size: 15px;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
i{
    opacity: .7;
}
h2{
    width: 100%;
}

.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-secondary);
    color: var(--color-primary);
    border: 0;
    z-index: 4;
    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: 12px 25px;
    border: 2px solid;
    border-radius: 150px;
    transition: .3s;
    cursor: pointer;
}
.btn-1{
    background: 0;
    color: #323927;
    transition: .3s;
    border-color: #323927;
    cursor: pointer;
    color: #323927;
}
.btn-1:hover{
    background: #323927;
    color: #f3f1e2;
}
.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 a{
    /*color: #fff;*/
}
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 span{
    font-weight: 700;
    font-size: 19px;
}
header nav .logo img{
    width: auto;
    height: 50px;
    margin-right: 6px;
}

header nav ul li a{
    display: block;
    padding: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: .3s;
}
header nav ul li a.btn-1{
    margin-left: 20px;
}
header nav ul li a:not(.btn-1):hover{
    opacity: .6;
}
header.scrolled{
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 0px 20px -6px rgba(0, 0, 0, .1);
    background: #ffffffb5;
}
header.scrolled a:not(.btn-1){
    color: #2a273d;
}
header.scrolled a.logo,
header.scrolled nav svg{
    color: #5d5783;
}

#inicio{
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 100px;
    background: var(--color-primary);
}
#inicio .estrela{
    position: absolute;
    background: var(--color-secondary);
    border-radius: 50%;
    opacity: 0.8;
    animation: brilhar 2s infinite ease-in-out alternate;
    
    
    /*width: 8px;
    height: 8px;*/
    /*background: white;*/
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 
    68% 57%, 79% 91%, 50% 70%, 
    21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.9;
    animation: brilhar 2s infinite ease-in-out alternate;
}
@keyframes brilhar {
    0%   { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.2); }
}
#inicio .container .col-md-6.toright{
    z-index: 4;
}
#inicio .container img{
    z-index: 2;
}
#inicio img{
    /*box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);*/
    margin: 0 auto;
    max-width: 300px;
}
#inicio svg{
    position: absolute;
    bottom: -3px;
    width: 100vw;
    z-index: 3;
}
#inicio b{
    font-weight: 900;
    color: var(--color-primary);
    background-image: linear-gradient(90deg, var(--color-primary), var(--color-secondary) 100%) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@supports (-webkit-touch-callout: none) {
    #inicio{
        background-attachment: scroll;
    }
}
#inicio h1{
    font-size: 47px;
    line-height: 57px;
    margin-bottom: 15px;
    width: 100%;
    font-weight: 600;
}
#inicio p{
    margin-bottom: 30px;
}

#funcionalidades{
    background: var(--color-primary);
}
#funcionalidades h2{
    text-align: center;
    margin-bottom: 20px;
}
#funcionalidades .vantagens{
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
#funcionalidades .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;
}
#funcionalidades .vantagens .vantagem > span{
    font-size: 30px;
}
#funcionalidades .vantagens .vantagem svg{
    display: block;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    fill: var(--color-primary);
    margin-bottom: 10px;
}
#funcionalidades .vantagens .vantagem b{
    margin-bottom: 10px;
}
#funcionalidades .vantagens .vantagem p{
    opacity: .8;
}

#nosso-app img{
    border-radius: 20px;
}

.col-md-6 > img{
    border-radius: 20px;
}

.residencia{
    padding: 20px;
}
.residencias .slick-arrow{
    display: none !important;
}

#perguntas{
    padding: 50px 0;
}
#perguntas > div{
    padding: 20px;
}
#perguntas h2{
    margin-bottom: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25em;
    letter-spacing: 0px;
    text-transform: capitalize;
}
#perguntas p{
    text-align: center;
    margin-bottom: 20px;
}
#perguntas > div > div{
    margin: 0 auto;
    max-width: 710px;
    padding: 0 25px;
}
#perguntas svg{
    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 svg{
    width: 40px;
    height: 40px;
}
.sociais .social{
    padding: 10px;
}
.sociais .social p{
    font-style: italic;
    margin-bottom: 20px;
}
.sociais .social > div{
    display: flex;
    align-items: center;
    gap: 20px;
}
.sociais .social .img{
    min-width: 40px;
    width: 40px;
    height: 40px;
    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;
}

#precos{
    background: var(--color-primary);
}
#precos h2{
    text-align: center;
    margin-bottom: 10px;
}
#precos p{
    text-align: center;
    margin-bottom: 30px;
}
#precos .precos{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 40px;
    flex-wrap: wrap;
}
#precos .precos > div{
    border-radius: 7px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}
#precos .precos b{
    color: var(--color-secondary);
    display: block;
    text-align: center;
    padding: 10px 0;
}
#precos ul{
    padding: 20px;
}
#precos .precos .valor{
    font-size: 22px;
    text-align: center;
    color: var(--color-secondary);
}
#precos .precos .btn-1{
    display: block;
    margin: 20px;
}
#precos .precos > div > small{
    text-align: center;
    display: block;
    margin-top: 10px;
}
#precos .precos > div > small span{
    font-weight: 800;
    font-size: 18px;
    color: var(--color-secondary);
}

#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 .logo span{
    color: #5d5783;
    font-weight: 700;
    font-size: 17px;
}
#institucional .container > div > div:first-child img{
    height: 50px;
    width: auto;
    margin: 0;
}
#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-secondary);
}
#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){
    .totop,.toright,.tobottom,.toleft{
        opacity: 1 !important;
        right: 0 !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
    }
    
    section:not(#casos):not(#perguntas):not(#institucional){
        text-align: center;
    }
    section .btn-1{
        margin: 0 auto;
    }
    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;
    }
    header nav ul li a{
        color: #5d5783;
        font-weight: 700;
    }
    
    #inicio{
        padding-bottom: 12px;
    }

    #funcionalidades .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){
    #funcionalidades .vantagens .vantagem{
        padding: 0;
    }
    #funcionalidades .vantagens b,
    #funcionalidades .vantagens p{
        font-size: 12px;
    }
}
footer{
    padding: 20px;
    text-align: center;
    position: relative;
}
footer img{
    display: block;
    width: 96px;
    margin: 0 auto;
    margin-bottom: 10px;
}

@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;
    }
}