/* Configurações Globais */

::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(237, 237, 237);
}

::-webkit-scrollbar-thumb {
    background-color: #006666;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: nuber-regular;
    src: url(fonts/nuber-next-regular.otf);
}

@font-face {
    font-family: nuber-heavy;
    src: url(fonts/nuber-next-heavy.otf);
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: nuber-regular;
    font-size: 16px;
    color: rgb(80, 80, 80);
    overflow-x: hidden;
}

a {
    overflow: visible;
    color: white;
    text-decoration: none;
}

/* Menu */

#hamburger {
    position: fixed;
    top: 200px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background-image: url(img/icone_hamburger.svg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 2;
}

#btnWhatsapp {
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    top: 270px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background-image: url(img/icone_whatsapp.svg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 2;
}

@media (max-width:600px) {
    #hamburger {
        top: 100px;
    }

    #btnWhatsapp {
        top: 170px;
    }
}

#btnWhatsapp:hover {
    transform: scale(110%);
}

#hamburger:hover {
    transform: scale(110%);
}

.menuLateral {
    position: fixed;
    left: -250px;
    background-color: rgba(0, 108, 108, 0.9);
    width: 250px;
    height: 100vh;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    transition: 0.5s ease-in-out;
    z-index: 2;
}

#menuLateralAberto {
    left: 0;
}

#listaMenu {
    padding: 0;
    width: 100%;
    height: auto;
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    row-gap: 35px;
}

#listaMenu>li {
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

#listaMenu>li:hover {
    background-color: #004040;
}

#listaMenu>li>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 35px;
    color: white;
    font-family: nuber-heavy;
    text-decoration: none;
}

/* Cabeçalho */

#header {
    width: 100vw;
    height: 525px;
    background: white url(img/background_planta-arquitetura-apartamento.png) no-repeat center;
    background-size: cover;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 25px;
}

#logo {
    margin-top: 280px;
    text-align: center;
    width: 100%;
    height: auto;
}

#logo>img {
    width: 400px;
}

@media (max-width:600px) {
    #logo>img {
        width: 65vw;
        min-width: 320px;
    }
}

#h1 {
    position: relative;
    left: -28px;
    width: 350px;
    height: auto;
}

@media (max-width:600px) {
    #h1 {
        left: 5vw;
    }
}

#h1Verde {
    color: #006666;
}

/* Quem Somos */

#quemSomos {
    width: 100vw;
    height: auto;
    background: url(img/fundo_verde.svg) no-repeat top;
    background-size: cover;
    filter: drop-shadow(0 -3px 5px rgba(0, 0, 0, 0.3));
    overflow: visible;
    text-align: center;
    position: relative;
    padding: 120px 0 200px 0
}

@media (max-width:600px) {
    #quemSomos {
        background-position: right top;
        padding: 50px 0 140px 0
    }
}

#quemSomos>h2 {
    width: 100%;
    text-align: right;
    font-family: nuber-heavy;
    color: white;
    font-size: 23px;
    padding-right: 100px;
}

@media (max-width:600px) {
    #quemSomos>h2 {
        padding-right: 0;
        text-align: center;
    }
}

#quemSomos>p {
    width: 100%;
    text-align: left;
    color: white;
    padding: 60px 100px 0 100px;
    line-height: 150%;
}

@media (max-width:600px) {
    #quemSomos>p {
        padding: 30px 25px 0 25px;
    }
}

@media (min-width:2000px) {
    #quemSomos>p {
        padding: 150px 100px 0 100px;
    }
}

#quemSomos>img {
    margin-top: 20px;
    transform: translateX(-50%);
    position: absolute;
}

@media (max-width:600px) {
    #quemSomos>img {
        width: 400px;
    }
}

/* Slider clientes */

#fundoClientes {
    margin-top: 180px;
    background-color: white;
    width: 100vw;
    height: auto;
    padding: 13px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width:600px) {
    #fundoClientes {
        margin-top: 120px;
    }
}

#fundoClientes>h2 {
    font-size: 23px;
    text-align: center;
    line-height: 150%;
}

#fundoClientes>h2>span {
    font-size: 28px;
    color: #006666;
    font-family: nuber-heavy;
}

.mascaraSlider {
    width: 80vw;
    height: 100px;
    overflow: hidden;
}

.sliderContainer {
    width: 400%;
    height: 100%;
    display: flex;
    position: relative;
    right: 0;
    transition: 0.5s ease-in-out;
}

.logosClientes {
    width: 80vw;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    font-family: nuber-heavy;
    font-size: 30px;
}

/* Sócios */

.socios {
    margin-top: 130px;
    background-color: rgb(237, 237, 237);
    width: 100vw;
    height: auto;
    position: relative;
    text-align: center;
    padding: 100px 0 50px 0;
    overflow: visible;
}

@media (max-width:600px) {
    .socios {
        margin-top: 110px;
        padding: 100px 0 40px 0;
    }
}

.socios>img {
    border-radius: 100%;
    border: 4px solid #006666;
    height: 153px;
    position: absolute;
    top: -76.5px;
    transform: translateX(-50%);
}

.socios>h2 {
    color: #006666;
    font-family: nuber-heavy;
    font-size: 28px;
    margin-bottom: 20px;
}

.socios>p {
    text-align: left;
    padding: 0 100px;
    line-height: 150%;
}

@media (max-width:600px) {
    .socios>p {
        padding: 0 25px;
    }
}

/* Proposta de Trabalho */

.propostaTrabalho {
    width: 100vw;
    height: 50vh;
    display: grid;
    place-items: center;
    background: url(img/layout-sala-planta-real.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#faixaVerdeMultiply {
    background-color: #006666;
    width: 100%;
    height: 60px;
    position: absolute;
    mix-blend-mode: multiply;
}

.propostaTrabalho>h2 {
    color: white;
    font-family: nuber-heavy;
    font-size: 28px;
    mix-blend-mode: normal;
    position: absolute;
}

/* Opções */

.opcoes {
    background-color: rgb(237, 237, 237);
    width: 100vw;
    height: auto;
    padding: 50px 0;
    display: grid;
    place-items: center;
}

.opcoes>p {
    width: 100%;
    text-align: left;
    padding: 0 100px;
    line-height: 150%;
}

@media (max-width:600px) {
    .opcoes>p {
        padding: 0 25px;
    }
}

.opcoes>h2 {
    font-family: nuber-heavy;
    color: #006666;
    font-size: 28px;
    margin-top: 30px;
}

@media (max-width:600px) {
    .opcoes>h2 {
        text-align: center;
    }
}

.containerIcones {
    margin-top: 50px;
    width: 100%;
    padding: 0 180px;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-start;
    row-gap: 20px;
    column-gap: 50px;
}

@media (max-width:600px) {
    .containerIcones {
        padding: 0 0;
    }
}

.icones {
    width: 165px;
    height: auto;
    text-align: center;
}

.icones>img {
    height: 100px;
    margin-bottom: 15px;
}

.icones>h3 {
    font-weight: normal;
}

/* Metragens */

.portfolio{
    text-align: center;
    font-family: nuber-heavy;
    color: #006666;
    font-size: 28px;
    margin-top: 30px;
}

.fundoMetragens {
    margin-top: 250px;
    background-color: #006666;
    width: 100vw;
    height: 600px;
    overflow: visible;
    position: relative;
}

@media (max-width: 759px) {
    .fundoMetragens {
        height: 1400px;
    }

    #pMetragem2 {
        color: white;
    }
}

@media (min-width: 1640px) {
    .fundoMetragens {
        height: 200px;
    }
}

.containerMetragens {
    position: absolute;
    top: -200px;
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-start;
    column-gap: 120px;
    row-gap: 30px;
}

.metragem {
    width: 320px;
    height: auto;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.metragem>h2 {
    font-size: 22px;
    font-family: nuber-heavy;
    background-color: #006666;
    color: white;
    padding: 8px;
    margin-bottom: 8px;
}

#linkMetragens {
    transform: translateY(-80px);
}

.metragem>img {
    margin: 25px 0 20px 0;
}

.maisFotos {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
}

.opcaoPrecos {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-start;
    flex-flow: row wrap;
    row-gap: 10px;
    position: relative;
    margin-bottom: 20px;
}

.opcaoPrecos>h3 {
    font-size: 22px;
    font-family: nuber-heavy;
    color: white;
}

.opcaoPrecos>p {
    color: white;
}

.linhaVertical {
    position: absolute;
    height: 100px;
    left: 120px;
    border: 1px solid white;
}

.btnTour360 {
    width: 180px;
    height: 35px;
    border-radius: 20px;
    background-color: white;
    color: #006666;
    border: none;
    font-family: nuber-heavy;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btnTour360:hover {
    background-color: #004040;
    color: white;
    transform: scale(110%);
}

.valoresSujeitos {
    color: white;
    font-size: 14px;
    margin: 20px 0;
}

/* Prazos e pagamento */

.containerPrazoPagamento {
    width: 100vw;
    height: auto;
    background-color: rgb(237, 237, 237);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 40px;
    padding: 40px 0 40px 0;
}

.containerPrazoPagamento>span {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.containerPrazoPagamento>span>img {
    height: 100px;
}

@media (max-width:600px) {
    .containerPrazoPagamento>span>img {
        height: 70px;
    }

    .containerPrazoPagamento>span>p {
        width: 200px;
    }
}

.faixaEntregaPagamento {
    width: 100%;
    height: 50px;
    background-color: #006666;
    display: grid;
    place-items: center;
}

.faixaEntregaPagamento>h2 {
    font-family: nuber-heavy;
    font-size: 28px;
    color: white;
}

#spanFormaPagamento {
    position: relative;
    right: 49px;
}

@media (max-width:600px) {
    #spanFormaPagamento {
        position: static;
    }
}

/* Contatos e rodapé */

.containerFooter {
    width: 100vw;
    height: auto;
}

#rodapeVerde {
    background-color: #006666;
    width: 100%;
    height: auto;
    padding: 30px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-start;
    row-gap: 30px;
    position: relative;
}

#rodapeVerde>a>img {
    width: 320px;
}

@media (max-width:600px) {
    #rodapeVerde>a>img {
        width: 65vw;
        min-width: 250px;
    }
}

@keyframes voltarTopo {
    0% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

#btnTopo {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 100%;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
}

#btnTopo>a>img {
    width: 25px;
    animation-name: voltarTopo;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

#contatos {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    column-gap: 10px;
}

@media (max-width:600px) {
    #contatos {
        flex-flow: column wrap;
        justify-content: center;
        align-content: center;
        column-gap: 0;
        row-gap: 10px;
    }
}

#contatos img {
    height: 35px;
}

#contatos p {
    display: inline;
    margin-right: 15px;
    color: white;
    line-height: 110%;
}

#contatos a {
    display: flex;
    flex-flow: row;
    align-items: center;
    column-gap: 10px;
}


@media (max-width:600px) {
    #contatos p {
        text-align: center;
        margin-right: 0;
    }

    #contatos a {
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        align-content: flex-start;
        row-gap: 10px;
    }
}

#rodapeCinza {
    width: 100vw;
    height: auto;
    background-color: rgb(150, 150, 150);
    padding: 15px 0;
}

#rodapeCinza>p {
    color: white;
    text-align: center;
    line-height: 120%;
}

#rodapeCinza>p>a {
    color: white;
    transition: 0.3s ease-in-out;
}

#rodapeCinza>p>a:hover {
    color: #006666;
}

/* Galeria de Slides */

.fundoGaleria {
    width: 100vw;
    height: 100vh;
    position: fixed;
    right: -110%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
    transition: 0.5s ease-in-out;
}

.btnFecharGaleria {
    width: 60px;
    position: absolute;
    top: 25px;
    right: 50px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

@media (max-width:600px) {
    .btnFecharGaleria {
        width: 40px;
        top: 30px;
        right: 30px;
    }
}

.btnFecharGaleria:hover {
    transform: scale(110%);
    filter: drop-shadow(0 0 10px white);
}

.setas {
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    position: absolute;
    bottom: 30px;
    z-index: 100;
}

.setas:hover {
    transform: scale(110%);
    filter: drop-shadow(0 0 10px white);
}

.setaEsquerda {
    left: 30%;
}

.setaDireita {
    right: 30%;
}

@media (max-width:600px) {
    .setas {
        bottom: 50px;
    }
}

.mascaraSliderGaleria {
    border-radius: 20px;
    width: 95vw;
    height: 75vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    position: relative;
}

.sliderTransitorio {
    width: 400%;
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
    transition: 0.5s ease-in-out;
}

#sliderTransitorio2 {
    width: 700%;
}

.imgsSlider {
    width: 95vw;
    height: 100%;
    background-size: auto;
    display: grid;
    place-items: center;
}

.imgsSlider>img {
    width: 100%;
}

.containerGoogle{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    row-gap: 20px;
}

#googleFormsMobile{
    display: none;
}

@media (max-width:600px) {
    #googleFormsMobile{
        display: inline;
    }

    #googleFormsDesktop{
        display: none;
    }
}

