/********************* NORMALIZE ************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    margin-right: 0 !important;
}

a:focus {
    outline: none;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
img {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

iframe {
    display: block;
}

body {
    margin: 0 !important;
    background-color: #F7F7F7;
     font-family: 'Axiforma', sans-serif;
}

:root {
    --preto: #000000;
    --branco: #ffffff;
    --verde: #007C84;
    --azul-claro: #009DC5;
    --verde: #134B42;
    --amarelo:#FCC04E;
    --transicao: .3s all ease-in-out;
    --marrom-escuro: #453B3D;
    --chumbo: #282828;
    --laranja: #CA763A;
}


@font-face {
    font-family: "Axiforma";
    font-display: swap;
    src: url(../fonts/Axiforma-Regular.ttf);
}

@font-face {
    font-family: "Lato";
    font-display: swap;
    src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
    font-family: "Chevrola";
    font-display: swap;
    src: url(../fonts/AL_CHEVROLA_PersonalUseOnly.otf);
}

@font-face {
    font-family: "Nexa Bold";
    font-display: swap;
    src: url(../fonts/nexa-bold.woff2);
}

html::-webkit-scrollbar-track {
    background: rgb(255 255 255);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--laranja);
    border-radius: 20px;
    border: 3px solid rgb(255 255 255);
}

html::-webkit-scrollbar {
    width: 12px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background-color: var(--laranja);
    border-radius: 20px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar {
    width: 12px;
    height: 10px;
}

/* BANNER */

#banner {
    width: 100%;
    position: relative;
    z-index: -2;
    
}

#banner img {
    width: 100%;
    height: auto;
}

h1 {
    color: blue
}

/* HEADER */
.site-main {
    overflow: hidden;
}

#container-header #masthead {
    position: absolute;
    width: 100%;
    top: 35px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

#container-header #masthead.header-fixo {
    position: fixed;
    top: 0;
    transform: translateY(0);
    opacity: 1; 
    pointer-events: auto;
}


#container-header .main-navigation{
    display: none;
}

#container-header .main-navigation.header-fixo{
    display: flex;
}

#container-header .site-header {
    position: absolute;
    z-index: 10;
    margin-top: 0;
    left: 0;
    width: 100%;
}

#container-header .site-header .buttons{
    position: absolute;
    right: 12px;
    top: 10px;
    display: flex;
    align-items: center;
}

#container-header .site-header .buttons a span{
    font-size: 16px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 400px;
    text-decoration: none;
    position: relative;
    top: -3px;

}



#container-header .site-header .buttons .verde{
    width: 175px;
    height: 39px;
    display: flex;
    align-items: center;    /* centraliza vertical */
    justify-content: center;/* centraliza horizontal */
    background: #134B42;
    color: var(--branco);
    margin-right: 10px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    border-radius: 0px 10px 0px 10px;
}

    #container-header .site-header .buttons .verde:hover{
         background:transparent;
         color: var(--verde);
         border: 1px solid var(--verde);

    }

#container-header .site-header .buttons .branco{
    width: 175px;
    height: 39px;
    display: flex;
    align-items: center;    /* centraliza vertical */
    justify-content: center;/* centraliza horizontal */
    color: var(--verde);
    border: 1px solid #000000;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    border-radius: 0px 10px 0px 10px;
}

#container-header .site-header .buttons .branco:hover{
    background-color: var(--verde);
    color: #fff;
     border: 1px solid var(--verde);
}

#container-header .main-navigation {
    display: none;
    z-index: 2;
    background:#D9D9D9CC;
    padding: 18px 3.021vw 18px 1.302vw;
    border-radius: 0 0 0 15px;
    display: flex;
    width: 100%;
    gap: 12px;
    align-items: stretch;
    justify-content: flex-start;
    float: right;
    transition: padding 0.4s ease, background-color 0.4s ease;
}



#container-header .main-navigation ul {
    display: flex;
}

#container-header .main-navigation ul li a {
    font-size: 14px;
    color: var(--verde);
    position: relative;
    padding-left: 1.823vw;
    font-family: 'Axiforma', sans-serif;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

#container-header .main-navigation ul li a:hover {
    color: #CA763A;
    transition: 0.3s all ease-in-out;
}

#container-header .menu_mobile {
    display: none;
}

#container-header .menu_mobile {
    display: none;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: transparent;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 60px;
    height: 60px;
}


/* SOBRE */

#sobre{
    position: relative;
}

#sobre::before{
    content: '';
    background-image: url(../images/fundo-sobre-nos.webp);
    position: absolute;
    width: 1917px;
    height: 1806px;
    top: -182px;
    left: -10px;
    z-index: -1;
}

#sobre .container{
    display: flex;
    justify-content: flex-end;
    padding: 75px 40px 8.073vw 12.865vw;
    gap: 12.5vw;
    position: relative;
}

#sobre .container::after{
    content: '';
    background-image: url(../images/detalhes/ico-banner.svg);
    position: absolute;
    width: 101px;
    height: 94px;
    bottom: 130px;
    right: 0;
    z-index: 1;
}

#sobre .container .dir{
    position: relative;
}

#sobre .container .dir p{
    position: absolute;
    font-size: 14px;
    line-height: 36px;
    font-weight: 300;
    right: -95px;
    letter-spacing: 0.5px;
    color: white;
    top: 50%;
     text-shadow: 0px 2px 4px rgba(0,0,0,0.4);
    transform: rotate(-90deg);
}


#sobre .container .dir img{
    border-radius: 0px 0 0 7.76vw;
    position: relative;
}

#sobre .container .dir::before{
    content: '';
    background-image: url(../images/detalhes/sobre-nos-img.svg);
    position: absolute;
    width: 176px;
    height: 85px;
    top: 20px;
    right: 750px;
    background-image: no-repear;
    z-index: 1;
}

#sobre .container .dir .etiqueta{

    font-weight: 500;
    font-size: 19.77px;
    line-height: 29.70px;
    text-align: center;
    position: relative;
    top: -15px;
    left: 43px;
    border-radius: 5px;
    padding: 3px 0px;
    color: #FFFFFF;
    z-index: 10;
    background-size: contain;
    width: 251px;
}

#sobre .container .esq{
    width: 440px;
    position: relative;
    margin-top: 4.688vw;
}
#sobre .container .esq .textos .titulo {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: 'Chevrola', sans-serif;
    color: var(--verde);
    padding-left: 24px;
}

#sobre .container .esq::after{
    content: '';
    background-image: url(../images/detalhes/triangulo.svg);
    position: absolute;
    width: 19px;
    height: 38px;
    top: 16px;
    left: 0;
    z-index: 1;
}

#sobre .container .esq .textos .texto{
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-family: 'Axiforma', sans-serif;
    color: #000000;
    width: 430px;
}

#sobre .container .esq .textos .texto span{
    font-weight: 700;
}

#sobre .container .esq .topicos{
    display: flex;
    padding-top: 30px;
    gap: 15px;
    position: relative;
}

#sobre .buttons a span{
    font-size: 16px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 400px;
    text-decoration: none;
    position: relative;
    top: -3px;
}

#sobre .buttons .verde{
    width: 217px;
    display: flex;
    height: 39px;
    align-items: center;
    justify-content: center;   
    line-height: 1;
    background: #134B42;
    color: var(--branco);
    margin-right: 10px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    border-radius: 0px 10px 0px 10px;
}

#sobre .buttons .verde:hover{
    background-color: transparent;
    color: var(--verde);
    border: 1px solid #000000

}

#sobre .buttons{
    display: flex;
}

#sobre .buttons .branco{
    width: 217px;
    display: flex;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: var(--verde);
    border: 1px solid #000000;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    border-radius: 0px 10px 0px 10px;
}

#sobre .buttons .branco:hover{
    background-color: var(--verde);
    color: #F2EDEC;
    border: 1px solid var(--verde);

}


/* Contato */
#contato {
    background-color: var(--verde);
    width: 100%;
    background-size: cover;
    position: relative;
}

#contato .box-input.box-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0.93px solid var(--preto) !important;
    background-color: transparent !important;
    border-radius: 2.96px;
    width: 13px;
    height: 13px;
    cursor: pointer;
    position: relative;
    top: -1px;
}

#contato .box-input.box-check input[type="checkbox"]:checked::after {
    content: "✔";
    color:var(--preto);
    font-size: 8px;
    position: absolute;
    top: -1px;
    left: 3px;
}

#contato .bgd-contato {
    width: 100%;
    position: absolute;
    top: -17.5vw;
    z-index: -1;
}

#contato-status {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

#contato .destaque {
    font-size: 40px;
    position: relative;
}

#contato .esq .icon-contato {
    width: 102px;
    height: 102px;
    margin-bottom: 1.875vw;
}

#contato .destaque b {
    font-family: "Nexa Bold";
}

#contato .container {
    height: 488px;
    display: flex;
    gap: 7.813vw;
    align-items: center;
    position: relative;
    z-index: 1;
}

#contato .esq {
    width: 45.5%;
    display: flex;
    align-items: center;
    justify-content: right
}

#contato .esq .content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 20.469vw ;
}


#contato .esq .content p.segundo {
    width: 61%;
    font-family: 'Chevrola', sans-serif;
    font-style: normal;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: left;
    color: #E1DFD3;
   
}

#contato .esq .content p.segundo span {
    font-size: 5.404vw;

}

#contato .form-exent {
    padding: 47px 71px;
    height: 617px;
    border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
    position: relative;
    width: 43.6%;
    max-width: 519px;
    background-color: #E1DFD3;
    background-size: 100% 100%;
    box-sizing: border-box;
    position: relative;
}

#contato .form-exent::before{
    content: '';
    background-image: url(../images/detalhes/ico-form.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 77px;
    height: 153px;
    top: -10px;
    left: 0;
    z-index: 1;
}

#contato .form-exent::after{
    content: '';
    background-image: url(../images/detalhes/ico-form-2.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 41px;
    height: 81px;
    bottom: -20px;
    right: -10px;
    z-index: 1;
}

.header-form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-form p{
    font-family: 'Axiforma', sans-serif;
    font-weight: 325;
    font-size: 11.18px;
    color: var(--preto);
    line-height: 22px;
}

.header-form svg{
    margin-bottom: 18px;
}

.form-exent .form_titulo {
    font-family: 'chevrola', sans-serif;
    color: #134B42;
    font-weight: 325;
    font-style: Book;
    font-size: 23.3px;
    line-height: 100%;
    letter-spacing: 1%;
    margin-bottom: 18px;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
}

.logo-form {
    width: 100%;
    display: block;
    margin: 20px auto;
    filter: brightness(0);
    -webkit-filter: brightness(0);
}

.form-exent .obrigatorios {
    font-size: 11.18px;
    letter-spacing: .1em;
    text-align: center;
    color: #000;
    margin-bottom: 5px;
}

.form-exent form {
    margin-top: 20px;
}

.campo-form {
    position: relative;
    margin: 0 0 13px;
}

.campo-form-telefone {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}

.campo-form-ddd {
    width: 22.5%;
}

.campo-form-tel {
    width: 82%;
}

.form-exent-nome,
.form-exent-email,
.form-exent-telefone,
.form-exent-mensagem {
    padding-top: 20px;
}

.label-form {
    font-size: 14px;
    color: var(--preto);
    position: absolute;
    top: 14px;
    left: 14px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    z-index: 10;
   font-family: 'Lato', sans-serif;
    font-weight: 325;
}

.label-form.label-up {
    top: -9px;
    font-size: 14.91px;
   
    background-color: #E1DFD3;
    color: var(--preto);
    padding: 1px 4px;
    border-radius: 3px;
}

.form-exent-nome {
  font-family: Axiforma, sans-serif !important;
    border: 1px solid transparent !important;
    background-color: #E1DFD3 !important;
    font-size: 15px !important;
    padding: 9px 14px !important;
    color: #000 !important;
    text-decoration: none !important;
    width: 100% !important;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius:10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    border: 0.5px solid #000000 !important
}

.form-exent-email {
   font-family: Axiforma, sans-serif !important;
    border: 1px solid transparent !important;
    background-color: #E1DFD3 !important;
    font-size: 15px !important;
    padding: 9px 14px !important;
    color: #000 !important;
    text-decoration: none !important;
    width: 100% !important;
    border-radius:10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    border: 0.5px solid #000000 !important
}

.form-exent-telefone {
  font-family: Axiforma, sans-serif !important;
    border: 1px solid transparent !important;
    background-color:#E1DFD3 !important;
    font-size: 15px !important;
    padding: 9px 14px !important;
    color: #000 !important;
    text-decoration: none !important;
    width: 100% !important;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius:10px!important;
    -o-border-radius: 10px!important;
    border: 0.5px solid #000000 !important
}

.form-exent-mensagem {
    height: 84.89px !important;
  font-family: Axiforma, sans-serif !important;
    border: 1px solid transparent !important;
    background-color: #E1DFD3 !important;
    font-size: 15px !important;
    padding: 9px 14px !important;
    color: #000 !important;
    text-decoration: none !important;
    width: 100% !important;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius:10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    border: 0.5px solid #000000 !important
}

.form-exent-ddd {
  font-family: Axiforma, sans-serif !important;
    border: 1px solid transparent !important;
    background-color:#E1DFD3 !important;
    font-size: 15px !important;
    padding: 9px 14px !important;
    color: #000 !important;
    text-decoration: none !important;
    width: 100% !important;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 10px !important;
    border: 0.5px solid #000000 !important
}


.form-exent-enviar {
    
    border: none !important;
    color: #fff !important;
    cursor: pointer;
    display: block;
    display: flex;
    align-items: center;
    float: none;
    text-align: center;
    font-size: 21 !important;
    margin: 18px 0 0 0;
    padding: 10px 14px !important;
    transition: all .2s;
    font-weight: 400;
    letter-spacing: 1.5px !important;
    width: 100%;
    background-color: var(--verde) !important;
    font-size: 19.57px !important;
    position: relative;
    border-radius: 0px 10px 0px 10px !important; 
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.botao-enviar {
    display: flex;
    position: relative !important;
    justify-content: center;
    align-items: center;
}

.botao-enviar svg {
    position: absolute;
    left: 58%;
}

.text-campos {
 font-family: Axiforma, sans-serif !important;
    font-weight: 400;
    font-style: ☞;
    font-size: 15px;
    line-height: 1.05;
    color: #fff;
    text-align: center;
}

input:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

.control {
    box-sizing: border-box !important;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

#contato .control:focus {
    outline: none !important;
}

.chek-lb {
    font-weight: 100;
    font-size: 11px;
    line-height: 1.05;
    color: var(--preto)
}

.box-check {
    display: flex;
    gap: 7px;
}

.form-exent input[type=checkbox] {
    margin: 0 !important
}


.form-exent-enviar:hover,
.botao-enviar:hover:after {
    filter: brightness(1.2);
    -webkit-filter: brightness(1.2)
}

.form-exent-enviar:focus,
.form-exent-enviar:focus-visible {
    border: none !important
}

.form-exent p:last-child {
    margin-bottom: 0 !important
}

.hone_hp {
    display: none !important;
}

.form-exent-nome.form_ativo,
.form-exent-email.form_ativo,
.form-exent-ddd.form_ativo,
.form-exent-telefone.form_ativo,
.form-exent-mensagem.form_ativo,
input:focus,
textarea:focus,
input:focus-visible,
textarea:focus-visible {
    border: 1px solid #000 !important;
    outline: none;
}


/* Galeria */


#galeria {
    position: relative;
}

/* #galeria::before {
    content: '';
    background-image: url(./../images/bgd-galeria.webp);
    width: 155.26vw;
    background-size: cover;
    height: -webkit-fill-available;
    background-repeat: no-repeat;
    position: absolute;
    left: -27vw;
    z-index: 0;
    top: -1651px;
} */

#galeria .img-ilustrativa{
    position: absolute;
    font-size: 14px;
    line-height: 36px;
    font-weight: 100;
    right: -95px;
    letter-spacing: 0.5px;
    color: white;
    top: 65%;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    transform: rotate(-90deg);
    z-index: 1;
    font-family: 'Axiforma', sans-serif;


}

#galeria .container {
    max-width: 1880px;
    margin: auto;
    position: relative;
    border-radius: 52px;
}
/* 
#galeria .container::before {
    content: '';
    width: 105px;
    background-size: cover;
    height: 108px;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: -30px;
}
 */
 #galeria .mySwiper {
    position: relative; /* FUNDAMENTAL para posicionar o .swiper-button-box */

}

#galeria .container h2 {
    font-family: 'Chevrola', sans-serif;
    font-size: 28px;
    text-align: left;
    padding: 0 4.408vw 42px 0;
    margin-left: 310px;
    margin-top: 180px;
    line-height: 40px;
    font-weight: 400;
    letter-spacing: 2.2px;
    color: var(--preto);
    text-transform: uppercase;
    position: relative;
}

#galeria .container h2 span {
    color: var(--verde) !important;


}

#galeria .box-swiper{
    position: relative;
}

#galeria .container .texto {
    font-family: "Gotham Light";
    font-weight: 400;
    font-size: 18px;
    color: var(--preto);
    margin-top: 25px;
    text-align: center;
}

#galeria .area-filtro {
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    text-align: center;
    justify-content: center;
    gap: 15px;
}

#galeria .area-filtro li {
    box-sizing: border-box;
    font-weight: 500;
    font-size: 0.9vw;
    letter-spacing: .1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #009DC5;
    border: 1px solid #009DC5;
    background-color: #009DC5;
    padding: 1vw 5px;
    display: block;
    width: calc(20% - 12px);
    cursor: pointer;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

#galeria .swiper-img{
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 0 10.417vw 0 10.417vw;
}

#galeria .playground-img, #galeria .hall-img {
    object-position: 100% 82%;
}

#galeria .swiper-button-prev:after {
    content: url(../images/icones/arrow_prev.svg);
    font-size: 22px;
    color:#F7F7F7 !important;
    padding: 10px 0 0 5px;
}

#galeria .swiper-button-next:after {
    content: url(../images/icones/arrow_next.svg);
    font-size: 22px;
    color: #F7F7F7 !important;
    padding: 10px 0 0 5px;
}

#galeria .swiper-button-prev:after, 
#galeria .swiper-button-next:after {
    color: #F7F7F7 !important;
    font-size: 0; 
    display: block; 
    line-height: 1;
}

#galeria .swiper-button-box {
    background-color: var(--verde); 
    display: flex;
    align-items: center;
    justify-content: space-around; 
    width: 155.64px; 
    height: 67.66px; 
    padding: 0 5px;
    border-radius: 0 33.83px 0 33.83px; 
    position: absolute;
    right: 58px;
    bottom: 58px; 
    z-index: 10;
}

#galeria .swiper-button-prev,
#galeria .swiper-button-next {
    position: static !important;
    width: 50%; 
    height: 100%;
    margin-top: -10px !important; 
}

#galeria .swiper-button-box::before {
    content: '';
    position: absolute;
    top: 10px; 
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px; 
    background-color:#ffffff;
}

#galeria .swiper-slide{
    position: relative !important;
}

#galeria .swiper-slide .nome{
    position: absolute;
    top: 50px;
    left: 45px;
    line-height: 36px;
    font-family: 'Chevrola', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
     text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);

}

#galeria .container h2::after {
    content: '';
    background-image: url(../images/detalhes/triangulo.svg);
    position: absolute;
    width: 19px;
    height: 38px;
    top: 0px;
    left: -30px;
    z-index: 1;
}

#galeria .swiper-slide::after{
    content: '';
    background-image: url(../images/detalhes/dir-galeria.svg);
    position: absolute;
    width: 187px;
    height: 370px;
    top: -10px;
    right: 0;
    z-index: 10;
}

#galeria .swiper-slide::before{
    content: '';
    background-image: url(../images/detalhes/esq-galeria.svg);
    position: absolute;
    width: 216px;
    height: 216px;
    bottom: 0px;
    left: 0;
    z-index: 1;
}


/* Plantas */
#plantas {
    margin-bottom: 79.65px;
    position: relative;
}

#plantas::after{
    content: '';
    background-image: url(../images/fundo-alphasun.webp);
    position: absolute;
    width: 2346px ;
    height: 5235px;
    top: -408px;
    left: -133px;
    z-index: -1;
}

#plantas::before {
    content: '';
    width: 39.734vw;
    background-size: cover;
    height: 43vw;
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 20.5%);
    z-index: 1;
    top: 138px;
    z-index: -1;
    max-width: 762px;
}

#plantas .container {
    margin: 0 auto;
    max-width: 1320px;
    width: 90%;
}

#plantas .container h2 {
   font-family: 'chevrola', sans-serif;
    font-size: 28px;
    text-align: left;
    padding: 0 4.408vw 12px 0;
    margin-left: 30px;
    margin-top: 81px;
    line-height: 40px;
    font-weight: 400;
    letter-spacing: 2.2px;
    color: var(--preto);
    text-transform: uppercase;
    position: relative;
}

#plantas .container h2::before {
    content: '';
    background-image: url(../images/detalhes/triangulo.svg);
    position: absolute;
    width: 19px;
    height: 38px;
    top: 0px;
    left: -30px;
    z-index: 1;
}

#plantas .container h2 span {
    color: var(--verde)!important;
}

#plantas .container .texto {
    font-family: 'Axiforma', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--preto);
}

#plantas .area-filtro-plantas {
    margin: 45px auto 0;
    display: flex;
    align-items: stretch;
    text-align: center;
    justify-content: center;
    gap: 10px;
    background-color:#D4D4D4;
    padding: 6px 8px;
    z-index: 2;
    border-radius: 0 10px 0 10px;
    border: 0.5px solid #134B42
}

#plantas .area-filtro-plantas li.ativo,
#plantas .area-filtro-plantas li:hover {
    color:#F7F7F7;
    background-color: var(--verde);
}

#plantas .boxfiltro-plantas {
    z-index: 2;
}

#plantas .area-filtro-plantas li {
    font-family: 'Axiforma', sans-serif;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    text-decoration: none;
    color: var(--verde);
    padding: 15px;;
    display: block;
    width: 24.9%;
    cursor: pointer;
    transition: .3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 0 10px;
}

#plantas .area-filtro-plantas li .block {
    font-size: .6vw;
    letter-spacing: .05em;
    margin-top: 5px;
}

#plantas .boxes {
    padding: 52px 52px 138px 63px;
    margin: auto;
    position: relative;
    border-radius: 7.34px;
    margin-top: 36px;
    min-height: 580px;
    background-color: #11423A;
    border-radius: 0px 100px 0px 100px;
    position: relative;
}

#plantas .boxes .box {
    gap: 30px;
    display: none;
}

#plantas .descricao {
    font-weight: 400;
    font-size: 12px;
    font-family: 'Axiforma', sans-serif;
    line-height: 19px;
    text-align: left;
    padding-top: 13px;
    padding-right: 13px;
    position: absolute;
    bottom: 82px;
    color: #A1A1A1;
    width: 1216px;
    word-spacing: 4px;
    position: absolute;
}

#plantas .boxes .box.box-ativo {
    display: flex;
    justify-content: center;
}

#plantas .boxes .esq {
    width: 40.8%;
}

#plantas  .boxes .esq .infos{
    display: flex;
    gap: 2.666vw;
}

#plantas  .boxes .esq .infos .metros{
    font-family: 'Axiforma', sans-serif;
    font-size: 2.548vw;
    line-height: 3.398vw;
    font-weight: 900;
    text-transform: uppercase;
    color: #E1DFD3;
    position: relative;
}

#plantas  .boxes .esq .infos .metros .detalhe-2{
    position: absolute;
    left: 121%;
    transform: translateX(-121%);
    width: 2px;
    height: 57px;
    background: #C9C7B8;
}

#plantas  .boxes .esq .infos .metros .detalhe{
    position: absolute;
    left: 114%;
    transform: translateX(-114%);
    width: 2px;
    height: 57px;
    background: #C9C7B8;
}


* {
  font-variant-ligatures: none;
}


#plantas .esq .infos .dormitorios{
    font-family: 'Axiforma', sans-serif;
    font-size: 24.24px;
    line-height: 24.82px;
    letter-spacing: 2.4px;
    font-weight: 400;
    margin-left: 15px;
    color: #E1DFD3;

}

#plantas .boxes .esq img {
    width: 480.83px;
    height: 213px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 53px;
}

#plantas .boxes .box .dir .img-foobox {
    width:580px;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
}

#plantas .tit {
    width: 21.8vw;
    display: block;
    margin: 0 auto 30px;
}

#plantas .tit .titulo {
    letter-spacing: 0.09em;
    font-size: 2.0833vw;
}

#plantas .desc {
    color: #fff;
    background-color: #96644B;
    font-weight: 300;
    font-size: 1.0416vw;
    letter-spacing: 0.25em;
    text-align: center;
    text-transform: uppercase;
    padding: 0.5vw 0;
}

#plantas .img-planta.living img {
    width: 100%;
    height: 23.229vw;
    object-fit: cover;
    margin-bottom: 30px;
}

#plantas .img-planta {
    position: relative;
}

#plantas .infos {
    font-weight: 300;
    font-size: 10px;
    line-height: 14px;
    color: #717171;
    margin-top: 20px;
}

#plantas .img-planta::before {
    content: url(../images/icones/fullscreen.svg);
    padding: 9px 10px;
    background-color: #fff;
    position: absolute;
    box-sizing: border-box;
    width: 51px;
    height: 50px;
    top: 52px;
    left: 23px;
    z-index: 2;
    transition: .3s ease-in-out;
    background-color:#CA763AA6;
    border-radius: 6px;
}

#plantas .esq .planta-baixa,
 #plantas .esq-41 .planta-baixa{
    position: relative;
    border-radius: 5px;
}

#plantas .esq .planta-baixa::before,
 #plantas .esq-41 .planta-baixa::before{
    content: url(../images/icones/fullscreen.svg);
    padding: 9px 10px;
    background-color: #CA763AA6;
    position: absolute;
    box-sizing: border-box;
    width: 51px;
    height: 50px;
    bottom: 11px;
    right: 25px;
    transition: .3s ease-in-out;
     border-radius: 6px;
}

#plantas .img-planta:hover::before {
    scale: 1.05;
}

#plantas .esq .planta-baixa:hover::before,
#plantas .esq-41 .planta-baixa:hover::before{
    scale: 1.05;
}

#plantas .infoplantas {
    background-color: #fff;
    color: #96644B;
    font-weight: 300;
    font-size: 1.25vw;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
    padding: 0.5vw 0;
    margin-top: 30px;
}

#plantas .qtde-dormitorio {
    width: auto;
    position: absolute;
    height: 168.09px;
    top: 59.5%;
}

#plantas .boxes::before{
    content: '';
    background-image: url(../images/detalhes/esq-plantas.svg);
    position: absolute;
    width: 92px;
    height: 61px;
    top: -12px;
    left: -31px;
    z-index: 2;
    background-repeat: no-repeat;
}

#plantas .boxes::after{
    content: '';
    background-image: url(../images/detalhes/dir-plantas.svg);
    position: absolute;
    width: 199px;
    height: 100px;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-repeat: no-repeat;
}


#implantacao{
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

#implantacao .container{
    display: flex;
    position: relative;
}

#implantacao .container .esq{
    width: 60%;
}

#implantacao .container .esq h2{
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 4.8px;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: 'Chevrola', sans-serif;
    color: var(--verde);
    padding-left: 24px;
    position: relative;
}
#implantacao .container .esq h2::after{
    content: '';
    background-image: url(../images/detalhes/triangulo.svg);
    position: absolute;
    width: 19px;
    height: 38px;
    top: 0px;
    left: 0;
    z-index: 1;
}

#implantacao .container .esq .texto{
    font-family: 'Axiforma', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    color: #000000;
    width: 660px;
}

#implantacao .implantacao-lista .lista-padrao {
    font-family: 'Axiforma', sans-serif;
    position: relative;
    font-size: 16px;
    color:#000000;
    line-height: 27px;
    letter-spacing:0.5px ;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    letter-spacing: 1.5px;
    gap: 60px;
}

#implantacao .padding-lista div {
    margin-bottom: 8px;
}

#implantacao .implantacao-lista .num {
    font-family: 'Axiforma', sans-serif;
    background-color: #CA763A;
    color: var(--branco);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    height: 26px;
    width: 26px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0;
    margin-right: 5px;
    padding: 0;
    text-align: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

#implantacao .container .dir{
    width: 40%;
}

#implantacao .container .dir .img-implantacao{
    position: absolute;
    width: 582px;
    height: auto;
    right: 60px
}



/* Whatsapp*/

/* Contato */
#whatsapp {
    background-color: #CA763A;
    box-shadow: 0px 1px 82.6px 0px #00000040 inset;

    width: 100%;
    background-size: cover;
    position: relative;
    margin-top: 120px;
}

#whatsapp .box-input.box-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0.93px solid var(--preto) !important;
    background-color: transparent !important;
    border-radius: 2.96px;
    width: 13px;
    height: 13px;
    cursor: pointer;
    position: relative;
    top: -1px;
}

#whatsapp .box-input.box-check input[type="checkbox"]:checked::after {
    content: "✔";
    color:var(--preto);
    font-size: 8px;
    position: absolute;
    top: -1px;
    left: 3px;
}

#whatsapp .bgd-contato {
    width: 100%;
    position: absolute;
    top: -17.5vw;
    z-index: -1;
}

#whatsapp-status {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

#whatsapp .destaque {
    font-size: 40px;
    position: relative;
}

#whatsapp .esq .icon-contato {
    width: 102px;
    height: 102px;
    margin-bottom: 1.875vw;
}

#whatsapp .destaque b {
    font-family: "Nexa Bold";
}

#whatsapp .container {
    height: 488px;
    display: flex;
    gap: 7.813vw;
    align-items: center;
    position: relative;
    z-index: 1;
}

#whatsapp .esq {
    width: 45.5%;
    display: flex;
    align-items: center;
    justify-content: right
}

#whatsapp .esq .content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 20.469vw ;
}

#whatsapp .esq .content p.primeiro {
     font-family: "Chunk Five";
    font-style: normal;
    font-size: 2.017vw;
    line-height: 105%;
    letter-spacing: 0%;
    margin: 0;
    text-align: left;
    color: #282828;
    margin-bottom: 1vw;
}

#whatsapp .esq .content p.segundo {
    width: 68%;
    font-family: 'Chevrola', sans-serif;
    font-style: normal;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: left;
    color: #E1DFD3;
   
}

#whatsapp .esq .content p.segundo span {
    font-size: 5.404vw;

}

#whatsapp .form-exent {
    padding: 1.992vw 3.449vw;
    height: 519px;
    border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
    position: relative;
    width: 43.6%;
    max-width: 519px;
    background-color: #E1DFD3;
    background-size: 100% 100%;
    box-sizing: border-box;
    position: relative;
}

#whatsapp .form-exent::before{
    content: '';
    background-image: url(../images/detalhes/form-whatsapp.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 77px;
    height: 153px;
    top: -10px;
    left: 0;
    z-index: 1;
}

#whatsappp .form-exent::after{
    content: '';
    background-image: url(../images/detalhes/ico-form-2.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 41px;
    height: 81px;
    bottom: -20px;
    right: -10px;
    z-index: 1;
}

#whatsapp .form-exent::after {
    content: '';
    background-image: url(../images/detalhes/ico-form-2.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 41px;
    height: 81px;
    bottom: -20px;
    right: -10px;
    z-index: 1;
}

/* Localizacao */

#localizacao{
    margin-top: 100px;

}

#localizacao .container{
    width: 90%;
    max-width: 1320px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 67px;
}


#localizacao .container .esq{
    width: 60%;
}

#localizacao .container .esq .titulo{
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 4.8px;
    margin-bottom: 33px;
    font-family: 'Chevrola', sans-serif;
    color: #000000;
    padding-left: 24px;
    position: relative;
}
#localizacao .container .esq .titulo::after{
    content: '';
    background-image: url(../images/detalhes/triangulo.svg);
    position: absolute;
    width: 19px;
    height: 38px;
    top: 0px;
    left: 0;
    z-index: 1;
}

#localizacao .container .dir{
    width: 40%;
}

#localizacao .box-distancias{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

#localizacao .box-distancias .item-distancia{
    display: flex;
    align-items: center;
    gap: 16px;
    width: 300px;
}

#localizacao .icone-tempo{
    background-color: #CA763A;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#localizacao .box-distancias .item-distancia .tempo{
    font-family: 'Axiforma', sans-serif;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: #134B42;
}

#localizacao .box-distancias .item-distancia .ponto-interesse{
    font-family: 'Axiforma', sans-serif;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #134B42;
}

#localizacao .aviso{
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 40px;
}
.mapa{
    position: relative;
}
.map-buttons{
    position: absolute;
    top: 120px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 300px;
    
}

.map-buttons a{
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    }

.btn-waze{
     display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
   width: 237px;
   height: 53px;
   align-items: center;
   justify-content: center;
    background: #134B42;
    color: #fff;
    margin-right: 10px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    border-radius: 0px 10px 0px 10px;
    text-decoration: none;
    z-index: -1;
}

.btn-ampliado{
    display: flex;
 
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
     width: 237px;
    height: 52px;
    border: 1px solid #134B42;
    background: #FFFFFF66;
    color: #fff;
    margin-right: 10px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    border-radius: 0px 10px 0px 10px;
    text-decoration: none;
    z-index: -1;
}

.btn-waze span{
    color: #fff;
}

.btn-ampliado span{
    color: #000000;
}

iframe{
    box-shadow: 0px 4px 8.3px 0px #00000040;

}

.mapa{
    margin: auto;
    max-width: 1320px;
    width: 90%;
    border-radius: 14.56px;
}

.mapa .top h2{
    font-family: 'Chevrola', sans-serif;
    font-size: 28px;
    text-align: left;
    padding: 0 4.408vw 12px 0;
    margin-left: 30px;
    margin-top: 81px;
    margin-bottom: 34px;
    line-height: 40px;
    font-weight: 400;
    letter-spacing: 2.2px;
    color: var(--preto);
    text-transform: uppercase;
    position: relative;

}
.mapa .top h2::before {
    content: '';
    background-image: url(../images/detalhes/triangulo.svg);
    position: absolute;
    width: 19px;
    height: 38px;
    top: 0px;
    left: -30px;
    z-index: 1;
}

iframe{
    border-radius: 14.56px;
}

.endereco-box {
   border: 1px solid #134B42;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    max-width: 900px;
    margin: 40px auto;
    width: 90%;
    max-width: 1320px;
}

.endereco-conteudo {
    text-align: center;
    font-family: "Arial", sans-serif;
}

.endereco-conteudo div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 40px;
}

.endereco-conteudo .icon {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.endereco-conteudo h3 {
    font-size: 28px;
    line-height: 38.82px;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Chevrola', sans-serif;
    color: #000000;
}

.endereco-conteudo p {
     font-family: 'Chevrola', sans-serif;
    font-size: 26px;
    line-height: 33px;
    margin-top: 5px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    color: #000000;
}

/* RESPONSIVO */
@media (max-width: 480px) {
    .endereco-box {
        padding: 15px;
    }

    .endereco-conteudo h3 {
        font-size: 12px;
    }

    .endereco-conteudo p {
        font-size: 11px;
    }

    .endereco-conteudo .icon {
        font-size: 18px;
    }
}


/* Reazliação */
.footer {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 0;
    padding-bottom: 60px;
    margin-top: 120px;
}

.footer .container {
    width: 1360px;
    max-width: 90%;
    margin: 0 auto;
}

.footer .box-assinaturas {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 99px;
}

.footer .box-financiamento {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .box-financiamento p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 23px
}

.box-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.581vw;
}

.boxes-assinaturas {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.box-incorporadora p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 15px;
}

.matricula,
.class-unidades{
    width: 100%;
    margin:  auto;
    text-align: center;
    margin-top: 66px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 325;
    color: #222222;
    font-family: "Gotham Light";
    letter-spacing: 0.2px;
}

.class-unidades p{
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 325;
    color: #222222;
    font-family: "Gotham Light";
    letter-spacing: 0.2px;
    margin-top: 10px;

}

.matricula p{
    font-family: "Gotham Light";
    font-weight: 325;
    font-size: 12px;
    line-height: 0%;
    letter-spacing: -2%;
    text-align: center;
}


/* POLITICA - PRIVACIDADE*/

.footer-politica {
    position: relative;
    width: 100%;
    padding:50px;
}

.footer-politica .container {
    width: 1360px;
    max-width: 90%;
    margin: 0 auto;
}

.texto-politica {
    font-family: "Montserrat", sans-serif;
    color: #000000;
    font-size: 12px;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    letter-spacing: 0.09em;
    line-height: 1.5;
}

.texto-politica .bold {
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
    font-family:'Nexa Bold', sans-serif;
}


/*********************  FOOTER  ************************/
#colophon {
    background-color: var(--verde);
    padding: 21px 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

#colophon .container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
    width: 75.1%;
}

.clearfix:after {
    display: none;
}

#footer-bottom {
    background-color: transparent;
}

.hone_hp {
    display: none !important;
}

.fbx-caption {
    transition: visibility .01s ease, opacity .01s ease, transform .01s ease!important;
    -webkit-transition: visibility .01s ease, opacity .01s ease, transform .01s ease!important;
    -moz-transition: visibility .01s ease, opacity .01s ease, transform .01s ease!important;
    -ms-transition: visibility .01s ease, opacity .01s ease, transform .01s ease!important;
    -o-transition: visibility .01s ease, opacity .01s ease, transform .01s ease!important;
}


/*ANIMACAO SHAKE*/
.error::-webkit-input-placeholder {
    color: #6b6768;
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}



/* CONFIRMACAO */
.txt-confirmacao {
    color: var(--verde-agua);
    display: block;
    font-size: 17px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Axiforma', sans-serif;
}

.title-confirmacao {
    color: var(--verde-agua);
    display: block;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Axiforma', sans-serif;
    letter-spacing: 0.2px;
}

.btn-confirmacao {
    background: var(--verde);
    border-radius: 0 16px;
    color: #fff !important;
    display: block;
    font-size: 18px;
    font-weight: 700;
    left: 50%;
    margin-left: -118px;
    padding: 15px 0 21px 0;
    position: absolute;
    text-align: center;
    transition: 0.2s;
    width: 236px;
    text-decoration: none;
}

.btn-confirmacao:hover {
    filter: brightness(1.2);
    transition: 0.2s;
}

.confirmacao {
    padding: 200px 0 300px;
}




@media screen and (max-width: 1900px) {
    #galeria {
        position: relative;
        width: 95%;
        margin: auto;
    }
}

@media screen and (max-width: 1800px) {
    #sobre .container .esq {
        width: 45%;
        margin-top: 10px;        
    }

    #sobre .container .dir::before {
    
        right: auto;
    }

    #sobre .container {
        gap: 7.5vw;
    }

    #contato .esq .content, #whatsapp .esq .content {
        margin-left: 11.469vw;
    }

    #contato .container, #whatsapp .container {
        gap: 60px;
    }

     #plantas .boxes .esq {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #plantas .infos{
        margin-top: 0;
    }
    
    
}

@media screen and (max-width: 1660px) {
    #sobre .container .esq .textos .titulo {
        font-size: 30px;
    }

    #sobre .container {
        padding: 75px 40px 12.073vw 12.865vw;
    }

    #galeria .swiper-button-prev:after, #galeria .swiper-button-next:after {
        scale: 0.8;
    }

    #galeria .swiper-button-box {
        width: 150.64px;
        height: 60.66px;
    }

    #plantas .container .dir{
        width: 50%;
    }

    #plantas .descricao {
        width: 90%;
    }

    #localizacao .container .esq{
        width: 50%;
    }

    #plantas .boxes .box .dir .img-foobox{
            width: 100%;
            height: auto;
            object-fit: contain;

    }
    #plantas .boxes .esq .infos .metros::before{
        display: none;
    }


}

@media screen and (max-width: 1440px) {
    #galeria .swiper-slide::after {
        scale: 0.8;
        right: -20px;
    }

    #galeria .swiper-slide::before{
        scale: 0.8;
        bottom: -22px;
    }

    #sobre .container::after{
        scale: 0.8;
        right: -10px;
        bottom: 130px;
    }
    #implantacao .container .esq h2{
        font-size: 28px;
    }
    #implantacao .container .esq .texto{
        font-size: 15px;
    }
    #localizacao .container{
        gap: 10px;
    }
    #sobre .container .dir::before{
        top: 10px;
        scale: 0.7;
    }

}

@media screen and (max-width: 1366px) {
    #sobre .container {
        padding: 75px 40px 12.073vw 5.865vw;
    }
    #sobre .container .esq {
        width: 40%;
        margin-top: 10px;
    }

    #plantas .container .dir {
        width: 45%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    #plantas .boxes .box .dir .img-foobox{
        margin-bottom: 0px;
    }

    #plantas .descricao{
        padding-right: 0;
        padding-top: 0;
    }

    #plantas .boxes .esq .infos {
        display: flex;
        flex-direction: column;
    }
    #plantas .boxes .esq {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #plantas .boxes .esq .infos{
        gap: 20px;
    }

    #plantas .esq .infos .dormitorios{
        margin-left: 0;
    }

    #implantacao .container .dir .img-implantacao {
        width: 500px;
        right: -43px;
        top: 128px;
    }

    #sobre .container .dir p, #galeria .img-ilustrativa{
        font-size: 12px;
        right: -77px;
    }

    #plantas .boxes .esq .infos .metros .detalhe-2{
        display: none;
    }

}

@media screen and (max-width: 1240px) {
    #sobre .buttons{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    #contato .esq .content, #whatsapp .esq .content {
        margin-left: 70px;
    }

    #contato .esq .content p.segundo, #whatsapp .esq .content p.segundo {
         width: 100%;
    }

    #sobre .container::after {
        bottom: 230px;
    }

}

@media screen and (max-width: 1080px) {
    #galeria .swiper-button-box {
        width: 120.64px;
        height: 45.66px;
        border-radius: 0 2.038vw 0 2.038vw;
    }
    #galeria .swiper-button-prev:after, #galeria .swiper-button-next:after {
        scale: 0.6;
    }
}

@media screen and (max-width: 1024px) {
    .btn-waze, .btn-ampliado{
        border-radius: 0 13px;
    }
    #sobre{
        margin-top: 80px;
    }

    #sobre .container .dir::before{
        display: none;
    }

    #plantas .boxes{
        border-radius: 0 9.766vw;

    }

    #sobre .container .dir img::before{
        content: '';
        background-image: url(../images/detalhes/ico-banner.svg);
        position: absolute;
        width: 101px;
        height: 94px;
        bottom: 130px;
        right: 0;
        z-index: 1;
    }

    #plantas .boxes .esq .infos .metros::before{
        display: none;
    }

    #plantas .boxes::after{
        display: none;
    }
    #container-header .main-navigation.header-fixo{
        display: none;
    }
    #container-header .main-navigation ul li a {
        font-size: 16px;
        color: #FBF8F3 ;
    }
    #container-header .site-header .buttons{
        width: 100%;
        height: 74px;
        top: 0;
        right: 0;
        background-color:var(--verde);
    }

    #container-header .site-header .buttons .branco {
        color: var(--verde);
        height: 35px;
        background-color: #D9D9D9A3;
        border: 1px solid #000000;
        border-radius: 5px;
        transition: 0.3s all  ease-in-out;
        text-decoration: none;
        border-radius: 0px 10px 0px 10px;
    }

    

    #container-header .site-header .buttons .verde {
        height: 35px;
        width: 160px;
        background: #D9D9D9A3;
        color: var(--verde);
        margin-right: 10px;
        border-radius: 5px;
         border: 1px solid #000000;
        transition: 0.3s all ease-in-out;
        text-decoration: none;
        border-radius: 0px 10px 0px 10px;
    }



     #container-header .site-header .buttons .branco,  #container-header .site-header .buttons .verde{
        position: relative;
        top: 0px;
        left: 10px;

     }

    #container-header .main-navigation {
        display: none;
    }
    #masthead .btn-nav {
        background: var(--verde);
        border: none;
        cursor: pointer;
        padding: 20px;
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 99999;
        border-radius: 0 0 0 10px;
    }

    #container-header #masthead{
        margin-top: 0;
    } 

    .header-fixo#masthead .btn-nav {
        top: 0;
    }

    #masthead .btn-nav:focus {
        outline: 0;
    }

    #masthead .icon-bar {
        background-color: #fff;
        border-radius: 20px;
        display: block;
        height: 2px;
        margin: 7px 0;
        width: 33px;
    }

    #masthead .btn-nav:hover .icon-bar {
        background-color: #fff;
        border-radius: 20px;
    }

    #masthead .animated_menu {
        display: block;
        margin: 0 auto;
        position: fixed;
    }

    #container-header {
        z-index: 999;
        position: relative;
    }

    #masthead #menu-item-15.animated_menu,
    #masthead #menu-item-17.animated_menu {
        position: relative;
    }

    #masthead .overflow-hidden {
        overflow: hidden;
    }

    #masthead .animated_menu:hover .icon-bar,
    #masthead .animated_menu:focus .icon-bar {
        background-color: #fff;
        border-radius: 20px;
    }

    #masthead .animated_menu:focus {
        cursor: pointer;
        z-index: 9999;
    }

    #masthead .middle {
        margin: 0 auto;
    }

    #masthead .icon-bar {
        -o-transition: all .5s ease;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: 999999;
    }

    #masthead .animated_menu .icon-bar {
        background-color: #fff;
        border-radius: 20px;
        z-index: 999999;
    }

    #masthead .animated_menu .top {
        -ms-transform: translateY(8px) rotateZ(45deg);
        -webkit-transform: translateY(8px) rotateZ(45deg);
        transform: translateY(8px) rotateZ(45deg);
    }

    #masthead .animated_menu .bottom {
        -ms-transform: translateY(-10px) rotateZ(-45deg);
        -webkit-transform: translateY(-10px) rotateZ(-45deg);
        transform: translateY(-10px) rotateZ(-45deg);
    }

    #masthead .animated_menu .middle {
        width: 0;
    }

    .central-cliente .site-header .container-principal {
        box-shadow: none;
    }

    @keyframes showNav {
        from {
            top: -400%;
        }

        to {
            top: 0;
        }
    }

    @-webkit-keyframes showNav {
        from {
            top: -400%;
        }

        to {
            top: 0;
        }
    }

    #masthead .showNav {
        -webkit-animation: showNav .5s ease forwards;
        animation: showNav .5s ease forwards;
    }

    @keyframes hideNav {
        from {
            top: 0;
        }

        to {
            top: -800%;
        }
    }

    @-webkit-keyframes hideNav {
        from {
            top: 0;
        }

        to {
            top: -800%;
        }
    }

    #masthead .hideNav {
        -webkit-animation: hideNav .8s ease forwards;
        animation: hideNav .8s ease forwards;
    }

    #container-header .main-navigation ul li:not(:last-child) a::after {
        display: none;
    }

    #container-header .main-navigation ul li a:hover{
        color: var(--verde);
    }

    #container-header .main-navigation {
        display: none;
        background-color: var(--verde);
        bottom: 0;
        height: 100vh;
        left: 0;
        position: fixed;
        right: 0;
        top: -100%;
        z-index: 10;
        width: 100%;
        padding: 20px;
        flex-direction: column;
        border-radius: 0;
    }
    .menu-menu-1-container{
        margin: auto;
    }
    .main-navigation.showNav {
        display: flex !important;
        animation: showNav .5s ease forwards;
    }

    .main-navigation.hideNav {
        animation: hideNav .8s ease forwards;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    #container-header .main-navigation .menu-item:after {
        content: none;
    }


    #container-header .main-navigation a:before {
        content: none;
    }

    .main-navigation ul {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 25px;
    }

    #container-header .menu-menu-principal-container {
        padding: 0;
        border-radius: 0;
    }
    
    #container-header #masthead .menu_mobile {
        display: block;
    }

    

    #sobre .container{
        flex-direction: column-reverse;
        padding: 0;
         width: 90%;
        margin: auto;
    }
    #sobre .container .esq {
        width: 90%;
    }
    #sobre .dir{
        width: 100%;
        margin: auto;
    }
    #sobre .container .esq .textos .texto {
        width: auto;
    }
    #sobre .buttons {
        flex-direction: row;
    }

    #sobre .container::after {
        bottom: 380px;
        scale: 0.9;
        right: -61px;
    }

    #contato, #whatsapp {
        margin-top: 160px;
    }

    #contato .container, #whatsapp .container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 40px 20px;
        gap: 30px; 
    }

    #contato .esq, #whatsapp .esq {
        width: 100%;
        max-width: 100%;
        justify-content: center; 
    }

    #contato .esq .content, #whatsapp .esq .content {
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        margin-left: 0;
    }

    #contato .esq .content p.segundo, #whatsapp .esq .content p.segundo {
        width: 85%; 
        margin: 0 auto;
        text-align: center;
        font-size: 28px;
        line-height: 34px;
    }

    #contato .esq .icon-contato, #whatsapp .esq .icon-contato {
        margin-bottom: 20px;
    }

    #contato .form-exent,   #whatsapp .form-exent {
        width: 100%;
       
        margin: 0 auto; 
       
    }

    #contato .form-exent::before,
    #contato .form-exent::after, 
    #whatsapp .form-exent::before,
    #whatsapp .form-exent::after {
        content: none; 
    }
      
    .campo-form-telefone{
        flex-direction: row;
        gap: 10px;
    }
    .campo-form-ddd {
        width: 30%; 
    }
    .campo-form-tel {
        width: 70%;
    }
    
    #contato .bgd-contato, 
    #whatsapp .bgd-contato {
        top: -5vw;
    }

    #galeria .swiper-slide::after {
        scale: 0.6;
        right: -38px;
        top: -78px;
    }

    #galeria .swiper-slide::before {
        scale: 0.6;
        bottom: -42px;
        left: -45px;
    }


    #galeria .container h2 {
        margin-left: 32px;
        margin-top: 14vw;
    }

    #galeria {
        position: relative;
        width: 90%
    }

    #galeria .swiper-button-box{
        right: 28px;
        bottom: 38px;
    }

    #galeria .container h2, #plantas .container h2, #implantacao .container .esq h2, #localizacao .container .esq .titulo, .mapa .top h2{
        font-size: 24px;
    }

    #galeria .swiper-img {
        height: 500px;
        object-fit: cover;
    }

    #galeria .swiper-slide .nome {
        top: 25px;
        left: 35px;    
        font-size: 20px;
    }

    #implantacao .container .dir .img-implantacao{
        width: 351px;
        right: -11px;
        top: 268px;
        display: flex;
        justify-content: center;
    }

    #implantacao {
        flex-direction: column;
    }

    #implantacao .container .dir {
        width: 100%;
       
    }

    #plantas .boxes .box.box-ativo {
        flex-direction: column;
    }

    #plantas .descricao{
        position: static;
        width: auto;
        padding-right: 0;
        padding-top: 0;
    }

    #plantas .boxes .esq {
        width: 100%;
         display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #plantas .boxes .esq img {
        margin-top: 30px;
    }

    #plantas .boxes .esq .infos .metros {
        font-size: 24px;
        line-height: 30px;
    }

    #localizacao .container{
        flex-direction: column;
    }

    #localizacao .container .dir {
        width: 100%;
    }

    .footer .box-assinaturas {
        flex-direction: column;
        align-items: center;
    }

    #plantas .area-filtro-plantas {
        justify-content: flex-start;
        width: max-content;
    }

    #plantas .container .dir {
        width: 100%;
        display: flex;
        justify-content: center ;
    }

    #plantas .box-filtro-plantas {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: rgb(200, 117, 58);
    }
    #plantas .boxes{
        padding: 52px 52px 52px 52px;
    }

    #plantas .area-filtro-plantas li {
        width: auto;
        min-width: 250px;
        flex-shrink: 0;
        font-size: 16px;
        padding: 14px 15px;
    }

    #plantas .boxes .box .dir .img-foobox {
        width: 100%;
        height: auto;
        margin-bottom:auto ;
    }

    #localizacao .container .esq {
        width: 100%;
    }

     #localizacao .container .dir {
        display: flex;
        justify-content: center;

     }

    #localizacao .container .dir img{
        width: 100%;
    }

     #localizacao .container{
        gap: 40px;
    }

    #plantas .esq .planta-baixa::before, #plantas .esq-41 .planta-baixa::before, #plantas .img-planta::before{
        scale: 0.9;
        bottom: 10px;
        right: 14px;
    }

}

@media screen and (max-width: 900px) {
    #implantacao .implantacao-lista .lista-padrao{
        flex-direction: column;
        gap: 0;
    }
    #implantacao .container .dir .img-implantacao {
        width: 400px;
        right: 2%;
        top: 60%;
        display: flex;
        justify-content: center;
    }
    #implantacao .container .esq .texto{
        width: 500px;
    }

}

@media screen and (max-width: 768px) {
    #implantacao .implantacao-lista .lista-padrao{
        flex-direction: column;
        gap: unset;
    }

    #galeria .swiper-slide::before {
       display: none;
    }

    #galeria .swiper-slide::after {
       display: none;
    }
    #contato, #whatsapp {
        margin-top: 90px;
    }

    #contato .form-exent,  #whatsapp .form-exent {
    padding: 47px 50px;
    }

    .endereco-conteudo h3 {
    font-size: 14px;
    line-height: 20px;
    }

    .endereco-conteudo p {
    font-size: 14px;
    line-height: 20px;
    }
    .map-buttons {
        top: 420px;
    }

    #sobre .container .esq .textos .titulo,
        #contato .esq .content p.segundo, #whatsapp .esq .content p.segundo,
        #galeria .container h2, #plantas .container h2, #implantacao .container .esq h2, #localizacao .container .esq .titulo, .mapa .top h2{
        font-size: 22px;
        line-height: 28px;
    }

    #localizacao .icone-tempo{
        scale: 0.9;
    }

}


@media screen and (max-width: 660px) {
    #plantas .boxes .esq .infos {
        display: flex;
        flex-direction: column;
    }

    #sobre .container::after{
        display: none;
    }

    #sobre::before{
        left: -90px;
    }

    #plantas .boxes {
        padding: 40px;
    }

    #plantas .esq .infos .dormitorios {

        font-size: 22.24px;
    }

    #implantacao .container .dir .img-implantacao {
        width: 300px;
        right: 2%;
        top: 71%;
    }

        #container-header .site-header .buttons a span{
        top: 0;
    }

    #sobre .buttons a span{
        top: 0;
    }

    .titulo br{
        display: none;
    }

    #localizacao .box-distancias {
        gap: 15px;
    }
}

@media screen and (max-width: 600px) {
    .map-buttons {
        position: absolute;
        /* top: 120px; */
        right: -17px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 0px;
        bottom: 28px;
    }

    #galeria .img-ilustrativa{
        top: 53%;
    }

    #plantas .esq .planta-baixa::before, #plantas .esq-41 .planta-baixa::before{
        scale: 0.7;
        bottom: 0px;
        right: 0px;
    }

    #plantas .img-planta::before {
        scale: 0.7;
        top: 26px;
        left: 3px;
    }

    #sobre .container .dir p, #galeria .img-ilustrativa {
        font-size: 8px;
        right: -52px;
    }

    #implantacao .container .esq .texto {
        width: auto;
    }

    #implantacao .container{
        flex-direction: column;;
    }
    #implantacao .container .dir .img-implantacao{
        position: relative;
    }
    #implantacao .container .dir .img-implantacao{
        width: 100%;
        height: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    #implantacao .container .esq {
        width: 100%;
    }

    #container-header .site-header .buttons a span {
        font-size: 14px;
    }
    #container-header .site-header .buttons .branco{
        padding: 8px 16.5px;
    }
    #container-header .site-header .buttons .verde {
        padding: 8px 40px;
    }

    #container-header .site-header .buttons .branco, #container-header .site-header .buttons .verde {
        width: 140px;
      
    }

    #sobre .buttons a span{
        font-size: 15px;
    }

    #sobre .buttons .verde {
        padding: 10px 48px;
    }

    #sobre .buttons .branco{
        padding: 10px 48px;
    }

    #plantas .boxes::before{
        display: none;
    }

    #localizacao .box-distancias .item-distancia .ponto-interesse {
        
        font-size: 16px;
    }

    #localizacao .aviso{
        font-size: 14px;
    }

    .boxes-assinaturas{
        width: 200px;
        height: auto;
    }

    .map-buttons a {
        scale: 0.8;
    }

    #implantacao .padding-lista div {
        font-size: 14px;
    }

    #implantacao .implantacao-lista .num {
        scale: 0.8
    }

    .header-form svg {
        width: 65%;

        }

        .form-exent-enviar {
            font-size: 16px;
        }

}

@media screen and (max-width: 500px) {
    #sobre .buttons {
        flex-direction: column;
    }
    #plantas .esq .infos .dormitorios {
        font-size: 18.24px;
    }

    #localizacao .icone-tempo{
        scale: 0.8;
    }

    .texto{
        font-size: 14px !important;
    }

        #contato .form-exent, #whatsapp .form-exent {
        padding: 47px 19px;
    }

}

@media screen and (max-width: 425px) {
    #plantas .esq .planta-baixa::before, #plantas .esq-41 .planta-baixa::before{
        scale: 0.6;
    }

    #plantas .img-planta::before {
        scale: 0.6;
    }

    #container-header .site-header .buttons a span {
        font-size: 12px;
    }

    #container-header .site-header .buttons .branco {
        padding: 8px 13.5px;
    }

    #container-header .site-header .buttons .verde {
        padding: 8px 34px;
    }

    #container-header .site-header .buttons .branco, #container-header .site-header .buttons .verde {
       height: 32px;
       width: 130px;
    }

    #container-header .site-header .buttons a span{
        top: -1px;
    }


}

@media screen and (max-width: 375px) {

    #plantas .img-planta::before {
        top: 15px;
        left: 0px;
    }

}


