/*
* Luminare
*
* Criação: Jacques Fernandes, Bold Creative
* Programação: Marco Andrei Kichalowsky, Arsnova Digital (https://arsnova.digital)
*
* Copyright 2025 Levitate Incorp.
* 10/11/2025
*/

/* # Preparação
--------------------------------------------------------------*/

/* Correções
--------------------------------------------- */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/* Variáveis
--------------------------------------------- */

:root {
    --bege-claro: #EFEBDD;
    --bege: #BC9357;
    --castanho: #826130;
    --cinza-escuro: #535353;
    --grafite: #978C7B;
    --gelo: #F7F5F1;
    --marrom: #573E1A;
    --dourado: #AB7B39;
}

/* Pré-definições
--------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--gelo);
    color: var(--bege);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 200;
    margin: 0;
}

p {}


figure {
    line-height: 0;
    margin: 0;
    position: relative;
}

figcaption {
    background-color: rgba(47, 57, 35, 0.5);
    bottom: 0;
    color: white;
    padding: 20px;
    position: absolute;
    text-align: center;
    width: 100%;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

/* Elementos */

.btn {
    background-color: var(--bege);
    border: 0;
    color: white;
    min-width: 120px;
    padding: 8px 16px;
    text-decoration: none;
}

.btn-branco {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 24px;
    color: white;
    font-weight: bold;
    min-width: 120px;
    padding: 8px 16px;
    text-decoration: none;
    text-transform: uppercase;
}

.linhas-brancas {
    background-image: url('../img/linhas-brancas.png');
    background-position: center;
    background-size: contain;
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: 25px;
}

.linhas-diferenciais {
    background-image: url('../img/linhas-diferenciais.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: -75px;
    z-index: 1;
}

.linhas-cta {
    background-image: url('../img/linhas-cta.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: -75px;
    z-index: 1;
}

.linhas-cta-topo {
    background-image: url('../img/linhas-diferenciais.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 100%;
    position: absolute;
    top: -75px;
    z-index: 1;
}

.linhas-pavimentos {
    background-image: url('../img/linhas-pavimentos.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 100%;
}

h2 {
    font-size: 1.75rem;
}


/* # Cabeçalho
--------------------------------------------------------------*/

.site-header {
    background-color: var(--grafite);
    border-bottom: 1px solid var(--bege);
    height: 64px;
    position: fixed;
    width: 100vw;
    z-index: 99;
}

.site-header .conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    max-width: 1080px;
    padding: 0 20px;
    width: 100%;
}

.main-navigation {
    display: block;
}

.header-logo {
    width: 120px;
}

.site-header nav {
    width: 85%;
}

.site-header ul {
    display: none;
    list-style: none;
    height: 100%;
    width: 100%;
}

.site-header ul.abre {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: var(--grafite);
    top: 48px;
    left: 0;
    right: 0;
    height: auto;
    padding: 1rem;

}

.site-header ul.abre li {
    padding: 0.5rem 1rem;
}

.site-header ul li {
    color: white;
    text-transform: uppercase;
}

.site-header ul li a {
    color: var(--gelo);
    font-size: 0.75rem;
    text-decoration: none;
}

.site-header ul li a:hover {
    color: white;
}

.menu-destaque {
    background-color: var(--bege);
    border-radius: 20px;
    color: white;
    padding: 2px 32px 4px;
}

.menu-toggle {
    float: right;
    border: 0;
    font-family: 'FontAwesome';
    font-size: 1.2em;
    background-color: transparent;
    color: white;
    padding: 8px;
}

@media screen and (min-width: 800px) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
}



/* Principal
--------------------------------------------------------------*/

.site-main {
    padding-top: 64px;
}

/* # Vitrine
--------------------------------------------------------------*/

#vitrine {}

#vitrine .titulo {
    font-family: 'Optimal', serif;
    font-weight: bold;
    line-height: 1.2;
    font-size: 2rem;
    margin: 4rem auto;
    max-width: 1080px;
    padding: 0 2rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

@media screen and (min-width: 400px) {
    .vitrine-titulo {
        font-size: 32px;
        letter-spacing: 16px;
    }
}

@media screen and (min-width: 768px) {
    .vitrine-titulo {
        font-size: 36px;
        letter-spacing: 18px;
    }
}

@media screen and (min-width: 1000px) {
    .vitrine-titulo {
        font-size: 48px;
        letter-spacing: 25px;
    }
}

/* # Carrossel
--------------------------------------------------------------*/

.carrossel {}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    bottom: 25px;

}

.slick-dots li.slick-active button::before {
    color: var(--bege);
}

.slick-dots li button::before {
    color: var(--castanho);
}

.slick-prev {
    left: 5px;
    z-index: 1;
}

.slick-next {
    right: 5px;
    z-index: 1;
}

@media screen and (min-width: 920px) {
    .slick-prev {
        left: -25px;
        z-index: initial;
    }

    .slick-next {
        right: -25px;
        z-index: initial;
    }

    .slick-prev:before,
    .slick-next:before {
        color: var(--dourado);
    }
}


/* Oportunidade
-------------------------------------------------------------- */

#oportunidade {
    background-color: var(--bege);
    color: var(--gelo);
    position: relative;
}

#oportunidade .container {
    margin: 0 auto;
    max-width: 920px;
    padding: 4rem 1.5rem;
    width: 100%;
}

#oportunidade .titulo {
    font-family: 'Optimal';
    font-weight: 400;
    margin: 0 auto 2rem;
    max-width: 640px;
    text-align: center;
}

#oportunidade .titulo span {
    color: var(--marrom);
    font-weight: bold;
    font-style: italic;
}

#oportunidade .intro {
    margin: 0 auto;
    max-width: 920px;
    width: 100%;
}

#oportunidade .intro>* {
    padding: 1rem;
}

@media (min-width: 720px) {
    #oportunidade .intro {
        display: flex;
    }

    #oportunidade .intro>* {
        width: 50%;
    }
}

#oportunidade .intro .foto img {
    border-radius: 1rem;
    max-width: 480px;
    width: 100%;
}

#oportunidade .intro .razoes li {
    border-bottom: 1px solid #f7f7f7;
    display: flex;
    align-items: center;
    padding: 0.625rem;
}

#oportunidade .intro .razoes li:last-of-type {
    border-bottom: none;
}

#oportunidade .intro .razoes .icone {
    margin-right: 1rem;
    width: 32px;
}

#oportunidade .predio-carrossel {
    padding: 1rem;
}

#oportunidade .predio-carrossel img {
    border-radius: 1rem;
}

/* Diferenciais
-------------------------------------------------------------- */

#diferenciais {
    background-color: var(--bege);
    color: var(--gelo);
    position: relative;
}

#diferenciais .container {
    margin: 0 auto;
    max-width: 1080px;
    padding: 4rem 1.5rem;
    width: 100%;
}

#diferenciais .titulo {
    font-family: 'Optimal';
    font-weight: 400;
    margin: 0 auto 2rem;
    max-width: 720px;
    text-align: center;
    text-transform: uppercase;
}

#diferenciais .titulo span {
    font-weight: bold;
    font-style: italic;
}

#diferenciais .texto {
    margin: 0 auto;
    max-width: 920px;
    padding: 0 1rem;
    text-align: center;
    width: 100%;
}

.diferenciais-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 2rem auto;
    max-width: 1080px;
}

.diferencial-item {
    padding: 2rem;
    width: 320px;
}

.diferencial-item .aviso {
    font-size: 0.75rem;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
}

/* CTA
-------------------------------------------------------------- */

#cta {
    background-image: url('../img/fundo-cta.jpg');
    background-position: bottom;
    background-size: cover;
    color: var(--bege);
    position: relative;
}

#cta .container {
    padding: 5rem 2rem;
    text-align: center;
}

#cta .titulo {
    font-family: 'Optimal';
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 2rem;
    max-width: 720px;
    text-transform: uppercase;
}

#cta .titulo span {
    font-weight: bold;
    font-style: italic;
}

/* Mobilidade
-------------------------------------------------------------- */

#mobilidade {
    color: var(--cinza-escuro);
    position: relative;
}

#mobilidade .container {
    margin: 0 auto;
    max-width: 1080px;
    padding: 5rem 1rem;
    text-align: center;
    width: 100%;
}

#mobilidade .titulo {
    color: var(--dourado);
    font-family: 'Optimal';
    font-weight: 400;
    margin: 0 auto 2rem;
    max-width: 720px;
    text-transform: uppercase;
}

#mobilidade .titulo span {
    font-weight: bold;
    font-style: italic;
}

#mobilidade .texto {
    margin: 0 auto 2rem;
    max-width: 860px;
}

#mobilidade .destaques {
    margin: 3rem auto;
}

#mobilidade .destaques .container {
    background-color: var(--bege-claro);
    border-radius: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1080px;
    padding: 2rem 1rem;
    width: 100%;
}

#mobilidade .destaque-item {
    padding: 1rem;
}

#mobilidade .destaque-item img {
    height: 64px;
}

#mobilidade .acesso-facil .titulo {
    max-width: 520px;
}

#mobilidade .acesso-facil .texto {
    max-width: 520px;
}

#mobilidade .acesso-facil .acessos-lista {}

@media (min-width: 768px) {
    #mobilidade .acesso-facil .acessos-lista {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 800px;
        width: 100%;
    }
}

.area-acessos {
    margin: 1rem 0 0;
}

.acesso-facil .area-item {
    width: 100%;
    max-width: 360px;
    border: 1px solid var(--bege);
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem auto;
    text-align: initial;
}

.area-titulo {
    font-size: 1.25rem;
    font-family: 'Optimal';
    color: var(--dourado);
}

.acesso-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.acesso-item .icone img {
    height: 16px;
    margin-right: 4px;
}

.acesso-item .distancia {
    display: flex;
    align-items: center;
    line-height: 0;
    width: 75px;
    justify-content: space-around;
}

.linha-metro {
    margin: 2rem auto;
}

.mapa img {
    border-radius: 2rem;
}


.btn-marrom {
    background-color: var(--bege);
    border-radius: 20px;
    color: white;
    padding: 4px 32px 4px;
    border: none;
    text-transform: uppercase;
}

.btn-bar {
    margin: 2rem auto;
}



/* Infraestrutura
--------------------------------------------------------------*/

#infra {
    background-color: var(--bege-claro);
}

#infra .container {
    padding: 4rem 0;
}

#infra .titulo {
    color: var(--dourado);
    font-family: 'Optimal';
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

#infra .titulo span {
    font-weight: bold;
}

#infra .subtitulo {
    color: var(--dourado);
    font-family: 'Optimal';
    font-weight: bold;
    max-width: 720px;
    margin: 1rem auto 2rem;
    text-align: center;
    width: 100%;
}

#infra .subtitulo span {
    color: var(--cinza-escuro);
    font-style: italic;
}

#infra .texto {
    color: var(--cinza-escuro);
    max-width: 920px;
    margin: 1rem auto 2rem;
    text-align: center;
    width: 100%;
}

#infra .pavimento .subtitulo {
    margin-bottom: 1rem;
}

#infra .pavimento .instrucoes {
    color: var(--cinza-escuro);
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    text-align: center;
}

#infra .pavimento .itens {
    color: var(--cinza-escuro);
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
}

#infra .pavimento .pav-mapa {
    height: 670px;
    line-height: 0;
    margin: 1rem auto 2rem;
    max-width: 760px;
    position: relative;
    width: 100%;
}

#infra .fotos {
    max-width: 800px;
    margin: 2rem auto;
    width: 100%;
}

.fotos .infra-carrossel .item {
    border-radius: 2rem;
    overflow: hidden;
}

/* CTA 2
--------------------------------------------------------------*/
#cta .texto {
    color: var(--gelo);
    font-family: 'Optimal';
    text-transform: uppercase;
}

/* Apartamentos
--------------------------------------------------------------*/

#apartamentos {
    padding: 6rem 0;
}

#apartamentos .titulo {
    color: var(--dourado);
    font-family: 'Optimal';
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

#apartamentos .subtitulo {
    font-family: 'Optimal';
    font-size: 1.5rem;
    font-weight: bold;
    margin: 3rem auto 0;
    text-align: center;
}

#apartamentos .texto {
    color: var(--cinza-escuro);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

#apartamentos .texto b {
    font-weight: bold;
    text-transform: uppercase;
}

#apartamentos .fotos {
    max-width: 720px;
    margin: 2rem auto;
    width: 100%;
}

#apartamentos .btn-bar {
    text-align: center;
}

/* CTA 3
--------------------------------------------------------------*/
#cta .titulo.cta-3 {
    color: white;
    font-family: 'Optimal';
}

#cta .texto.cta-3 {
    color: var(--gelo);
    font-family: 'Poppins';
    text-transform: none;
}

#cta .texto.cta-3 h3 {
    font-family: 'Optimal';
    font-size: 1.25rem;
    font-weight: bold;
}

#cta .texto.cta-3 .colunas {
    text-align: left;
}

#cta .colunas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
}

#cta .coluna {
    width: 250px;
}

#cta .aviso {
    font-size: 0.85rem;
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
    width: 100%;
}

/* # Rodapé
--------------------------------------------------------------*/

#rodape {
    background-color: var(--bege);
    color: var(--gelo);
    padding: 5rem 2rem;
}

#rodape .container {
    margin: 0 auto;
    max-width: 920px;
    width: 100%;
}

#rodape a {
    color: white;
    text-decoration: none;
}

#rodape .contatos>* {
    margin-bottom: 0.5rem;
}

#rodape .saiba-mais a {
    color: var(--marrom);
}

.contatos .email i,
.contatos .whatsapp i,
.contatos .facebook i,
.contatos .instagram i {
    font-size: 20px;
}

.logo-rodape {
    width: 200px;
}

/* Créditos */

.site-footer {
    background-color: var(--castanho);
    color: var(--gelo);
    font-size: 0.75rem;
    font-style: italic;
}

.site-footer a {
    color: var(--gelo);
    font-weight: 700;
    text-decoration: none;
}

.site-info {
    margin: 0 auto;
    max-width: 1080px;
    padding: 1rem;
    text-align: center;
    width: 100%;
    font-size: 0.625rem;
}

.avisos {
    margin-bottom: 0.25rem;
}

.creditos {
    margin-bottom: 0.5rem;
}



/* Modais */

.modal {
    color: white;
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(47, 57, 35);
    background-color: rgba(47, 57, 35, 0.99);
    z-index: 99;
    left: 10px;
    top: 120px;
    right: 10px;
    bottom: 20px;
}

.modal-friso {
    bottom: 2%;
}

@media screen and (max-height: 640px) {
    .modal-friso {
        display: none;
    }
}

@media screen and (min-width: 640px) {
    .modal {
        left: 50px;
        right: 50px;
        bottom: 50px;
    }
}

.modal-titulo {
    color: var(--dourado);
    font-family: 'Amalfi Coast', cursive;
    font-size: 24px;
    margin: 25px auto;
    text-align: center;
}

/* Modal Content/Box */

.modal-content {
    padding: 20px;
}

/* The Close Button */

.btn-close {
    color: var(--dourado);
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

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

.area-texto {
    text-align: center;
}

@media screen and (min-width: 920px) {
    .modal {
        left: 50px;
        top: 150px;
        right: 50px;
        bottom: 50px;
    }

    .modal-friso {
        bottom: 5%;
    }

    .modal-titulo {
        font-size: 32px;
    }
}

.botoes-flutuantes {
    bottom: 0;
    display: flex;
    justify-content: end;
    padding: 0 1rem;
    position: fixed;
    width: 100%;
}

.botoes-flutuantes img {
    height: 48px;
    margin: 0.5rem;
}






/* # Página Cadastro
--------------------------------------------------------------*/

.pagina-cadastro .conteudo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 920px;
    padding: 0 2rem;
    width: 100%;
}

.pagina-cadastro .texto {
    margin-bottom: 1rem;
    text-align: center;
}

.pagina-cadastro .esq {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.pagina-cadastro .logo {
    margin-bottom: 2rem;
    width: 280px;
}

.pagina-cadastro .aviso {
    color: var(--cinza-escuro);
    font-weight: normal;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pagina-cadastro .aviso span {
    font-family: 'Optimal';
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 4px;

}

.pagina-cadastro .linha {
    background-color: var(--dourado);
    height: 2px;
    margin: 1.5rem auto;
    width: 150px;
}

.pagina-cadastro .dir {
    width: 100%;
}

@media (min-width: 768px) {

    .pagina-cadastro .esq,
    .pagina-cadastro .dir {
        width: 50%;
    }
}

.pagina-cadastro .cadastro-form {
    width: 100%;
}

.pagina-cadastro .cadastro-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--dourado);
    margin-bottom: 1rem;
    width: 100%;
}

.pagina-cadastro .cadastro-form input[type='submit'] {
    background-color: var(--dourado);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 1rem;
    cursor: pointer;
    width: auto;
}

.pagina-cadastro .selos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-end;
    margin: 25px auto;
    max-width: 400px;
    width: 100%;
}

.pagina-cadastro .selos img {
    height: 48px;
    width: auto;
}



/* Fotos Infraestrutura */

/* #cooper-foto,
#delivery-foto,
#coworking-foto,
#hall-foto,
#market-foto,
#gourmet-foto,
#festas-foto,
#indoor-foto,
#outdoor-foto,
#piscina-foto,
#play-foto,
#sky-foto {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2rem;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} */

#cooper-foto,
#delivery-foto,
#coworking-foto,
#hall-foto,
#market-foto,
#gourmet-foto,
#festas-foto,
#indoor-foto,
#outdoor-foto,
#piscina-foto,
#play-foto,
#sky-foto {
    position: fixed;       /* sai do fluxo da seção */
    top: 0;
    left: 0;
    width: 100vw;          /* 100% largura da viewport */
    height: 100vh;         /* 100% altura da viewport */
    background: rgba(0,0,0,0.8); /* fundo escuro opcional */
    
    display: none;         /* escondido por padrão */
    justify-content: center;
    align-items: center;

    z-index: 9999;         /* fica acima de tudo */
}

.mapa-fecha {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.mapa-imagem {
    max-height: 640px;
}

.mapa-legenda {
    background-color: rgba(47, 57, 35, 0.5);
    bottom: 0;
    color: white;
    padding: 20px;
    position: absolute;
    text-align: center;
    width: calc(100% - 2rem);
}

.slick-slide img {
    width: 100%;
}