/********************* 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 {
    scroll-padding-top: 62px !important;
    margin-right: 0 !important;
    font-size: 16px;
}

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;
    --bege: #FFECD5;
    --transicao: .3s all ease-in-out;
    --chumbo: #282828;
    --laranja: #C33A00;
     --bold: 'never-bold';
    --light: 'never-light';
    --regular: 'never-regular';
}


@font-face {
    font-family: 'never-light';
    src: url('../fonts/NeverMindBauhaus-Light-BF6501284a7896b.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'never-bold';
    src: url('../fonts/NeverMindBauhaus-Bold-BF6501284a8ae7b.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'never-regular';
    src: url('../fonts/NeverMindBauhaus-Regular-BF6501284a7fde0.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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;
}

/* Header */
.site-header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 9.5px 0;
    background-color: #FFECD5;
}

.site-header.scrolled {
    background-color: rgba(217, 217, 217, 0.9);
    padding: 10px 0;
    top: 0px;
    border-bottom: 1px solid var(--azul-escuro);
    border-bottom-left-radius: 10px;
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Botão hambúrguer - oculto no desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px 10px;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--bege);
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu desktop */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 52px;
    align-items: center;
    width: 100%;
}

.nav-menu a {
    font-family: var(--regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color:  #C33A00;
    position: relative;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px; 
    width: 0%;
    height: 1px;
    background-color: #C33A00; 
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.botoes{
    gap: 10px;
    display: flex;
    margin-left: auto;
}

/* Botões no desktop - ficam SEPARADOS à direita */
.nav-button-item {
    margin-left: auto; /* Empurra para a direita */
}

.nav-button-item:first-of-type {
    margin-left: 50px; /* Espaço do último link */
}

.nav-button-item:last-of-type {
    margin-left: 0; /* Remove margem do segundo botão */
}

.btn-contato {
    padding: 10.5px 10px;
    width: 175px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--regular);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    display: inline-block;
    text-align: center;
}

.btn-contato {
    background-color: #C33A00;
    color: #ffffff !important;
}

.btn-contato:hover {
    background-color: transparent;
    color: var(--laranja) !important;
    border: 1px solid #C33A00;
}

.container{
    width: 90%;
    margin: auto;
    max-width: 1435px ;
}

.container{
    width: 90%;
    margin: auto;
    max-width: 1435px;
}

/* ===== BANNER ===== */

#banner{
    background-image: url(../images/bgd-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFECD5;

    width: 100%;
    min-height: 780px; /* controla altura real */
    display: flex;
    align-items: center;
}

#banner .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* joga botão/cards mais pra baixo */
    min-height: 900px;
    padding-bottom: 110px;
}

/* ===== BOTÃO ===== */

#banner .saiba-mais{
    font-family: var(--bold);
    text-decoration: none;
    color: #C33A00;
    font-weight: 700;
    background-color:#ECC59C;
    border-radius:30px;
    padding: 10px;
    width: 446px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

#banner .saiba-mais:hover{
    transform: scale(1.03);
}

/* ===== CARDS ===== */

#banner .cards{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap; /* evita quebrar layout em 1100/1024 */
}

#banner .card{
    font-family: var(--regular);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFECD5;
    font-weight: 400;
    gap: 14px;
    width: 321px;
    line-height: 19.1px;
}

#banner .card .texto .bold{
    font-weight: 700;
}

#video{
    background-color: #FFECD5;
    scroll-margin-top: 132px;
}

#video .container{
    width: 1514px;
}
#video .container .bloco-texto{
    background-color: #C33A00;
    padding: 35px 68px;
    border-radius: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#video .container .bloco-texto .linha{
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 112px;
    background: var(--azul-escuro);
    left: 274px;
}

#video .container .bloco-texto .texto{
    width: 1234px;
    margin: 0 auto;
    font-family: var(--regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    padding-left: 60px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #FFECD5;
}

#video .container .bloco-texto .texto strong{
    font-family: var(--bold);
    font-weight: 700;
}

#video .bloco-video {
    display: flex;
    align-items: center;
    gap: 52px;
    padding: 100px 0;
}

#video .bloco-video .esq {
    width: 51%;
    padding-left: 268px;
}

#video .bloco-video .esq .titulo {
    font-family: var(--bold);
    font-weight: 700;
    font-size: 2rem;
    line-height: 35px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


#video .bloco-video .esq .titulo .icone-titulo {
    margin-top: 5px;
}

#video .bloco-video .esq .texto {
    font-family: var(--regular);
    font-weight: 400;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.4px;
    color: var(--azul-escuro);
    margin-bottom: 30px;
    width: 522px;
}

#video .bloco-video .esq .botoes {
    display: flex;
    gap: 15px;
}

#video .bloco-video .esq .btn {
    padding: 10.5px 10px;
    width: 217px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--bold);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

#video .bloco-video .esq .btn-saiba {
    text-align: center;
    background-color: #C33A00;
    color: #ffffff 
}

#video .bloco-video .esq .btn-saiba:hover {
    background-color: transparent;
    color: #C33A00 !important;
    border: 1px solid #C33A00;
}

#video .bloco-video .esq .btn-zap {
    text-align: center;
    background-color: transparent;
    color: #C33A00;
    border: 1px solid #C33A00;;
}

#video .bloco-video .esq .btn-zap:hover {
    background-color: #C33A00;
    color: #ffffff;
}

#video .bloco-video .dir {
    width: 60.55%;
    display: flex;
    justify-content: flex-end;
}

#video .bloco-video .dir .video-container {
    position: relative;
    width: 100%;
    height: 536px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#video .bloco-video .dir .video-container .fundo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 268px;
    border-top-left-radius: 268px;
}

#video .bloco-video .dir .video-container .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

#video .bloco-video .dir .video-container .btn-play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Modal do Vídeo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    animation: slideDown 0.4s ease;
}

.video-modal .close-modal {
    position: absolute;
    top: -64px;
    right: -45px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
}

.video-modal .close-modal:hover {
    transform: scale(1.2);
}

.video-modal .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-modal .video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Localizacao */
#localizacao{
    background-color: var(--bege);
}

#localizacao {
    scroll-margin-top: 120px;
}

#localizacao .container .top{
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 30px;
}

#localizacao .container .top .titulo{
    font-family: var(--bold);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.5rem;
    letter-spacing: 0.08em;
    color: var(--laranja);
}

#localizacao .endereco{
    max-width: 1434px;
    width: 100%;
    background-color: var(--laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    border-radius: 300px;
    padding: 25px 112px;
    margin-top: 30px;
    position:relative;
    z-index: 2;
}

#localizacao .endereco svg{
    width: 59px;
    height: auto;

}

#localizacao .endereco .titulo{
    font-family: var(--regular);
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 2.125rem;
    letter-spacing: 0.08em;
    color: var(--bege) ;
}

#localizacao .endereco br{
    display: none;
}




/* Mapa */
#mapa{
    background-color: var(--bege);
    width: 100%;
    position: relative;
    margin-top: -60px;
}

#mapa iframe{
    width: 100%;
    height: 549px;
}

#mapa  .botaos{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 22px;
    position: absolute;
    bottom: 30px;
}

#mapa .botaos a{
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 300px;
    font-family: var(--regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    align-items: center;
    justify-content: center;
}

#mapa .botaos .waze{
    width: 237px;
    height: 54px;
    background-color: var(--laranja);
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 10.5px 24px;
    border: 1px solid #C33A00;
}

#mapa .botaos .maps{
    width: 236px;
    height: 54px;
    backdrop-filter: blur(10.967646598815918px);
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 11px 24.17px;
    border: 1px solid #C33A00;
    -webkit-backdrop-filter: blur(10.967646598815918px);
            backdrop-filter: blur(10.967646598815918px)
}

#mapa .botaos a:hover{
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

/* CONTATO */

#contato {
    background-color: var(--bege);
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 100px 0;
    position: relative;
}

#contato .box-input.box-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0.93px solid var(--branco) ;
    background-color: transparent ;
    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(--branco);
    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 {
    width: 90%;
    max-width: 1435px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#contato .top {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

#contato .top .titulo {
    font-family: var(--bold);
    color: var(--laranja);
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#contato .top .texto {
    font-family: var(--regular);
    color: #1D1D1D;
    font-size: 16px;
    line-height: 1.6;
}

#contato .bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 99px;
    position: relative;
    z-index: 1;
}

#contato::before{
    content: url(../images/left-form.webp);
    font-size: 22px;
    color:#F7F7F7;
    top: 351px;
    left: 0;
    width: 511px;
    height: 723px;
    position:absolute;

}

#contato::after{
    content: url(../images/right-form.webp) ;
    font-size: 22px;
    color:#F7F7F7 !important;
    top: 351px;
    right: 0;
    width: 767px;
    height: 723px;
    position:absolute;
    z-index: 0;

}

/* ESQ WRAPPER com tabs */
#contato .bottom .esq-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
}

#contato .tabs-empreendimento {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#contato .tab-btn {
    font-family: var(--bold);
    font-size: 16px;
    padding: 11px 36px;
    border-radius: 25px;
    border: 2px solid #204B4E;
    background: transparent;
    color: #204B4E;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    letter-spacing: 0.02em;
}

#contato .tab-btn.active {
    background: #204B4E;
    color: #fff;
    border-color: #204B4E;
}

#contato .tab-btn.momi.active{
    background: #96B592;
    color: #fff;
    border-color: #96B592;
}
#contato .tab-btn:hover:not(.active) {
    background: rgba(32, 75, 78, 0.08);
}

#contato .bottom .esq {
    width: 100%;
    min-height: 721px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: var(--verde);
    position: relative;
}

#contato .bottom .esq.active {
    display: flex;
}

#contato .conheca {
    background-image: url(../images/conheca.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: 546px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}

#contato .conheca.momi  a{
    background: #96b59273;
}

#contato .conheca a {
    font-family: var(--bold);
    font-size: 16px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #204B4EB2;
    border: 1px solid #FFECD5;
    padding: 12px 40px;
    border-radius: 40px;
    color: #fff;
    width: 90%;
    max-width: 604px;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(11.600000381469727px);
    margin-bottom: 45px;

}

#contato .conheca a:hover {
    background: rgba(0,0,0,0.8);
}

#contato .infos {
    background: #204B4E;
    padding: 52px 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}

#contato .infos  .esq-infos {
    display: flex;
    justify-content: center;
   
    padding-right: 23px;
    margin-right: 23px;
    border-right: 1px solid #D9D9D9;
}

#contato .infos .dir {
    display: flex;
    align-items: center;
}

#contato .infos .conteudo-dir {
    display: flex;
    align-items: center;
    gap: 24px;
}

#contato .infos .conteudo-dir img {
    max-height: 70px;
    width: auto;
}

#contato .infos .texto p {
    font-family: var(--bold);
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
}

#contato .infos .texto strong {
    font-weight: 600;
}

#contato .infos.infos-momi {
    background: #96B592;
}

#contato .conheca.momi {
    background-image: url(../images/fachada-momi.webp);
    background-position: bottom;
}
#contato .dir{
    width: 61%;
}

#contato .form-contato {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contato .form-exent {

    padding: 53px 61px;
    height: auto;
    border-radius: 12px;
    position: relative;
    width: 43.6%;
    max-width: 519px;
    background-color: var(--laranja);
    background-size: 100% 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    border: 1px solid var(--verde);
    z-index: 2;
}

.header-form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.text-realizacao{
    font-family: "Area", sans-serif;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.header-form p{
    font-family: var(--regular);
    font-weight: 325;
    font-size: 11.18px;
    color: var(--branco);
    line-height: 20px;
}

.header-form img{
    margin-bottom: 15px;
}

.form-exent .form_titulo {
      font-family: "Montserrat", sans-serif;
    color: #FFFFFF;
    font-weight: 325;
    font-style: Book;
    font-size: 23.3px;
    line-height: 100%;
    letter-spacing: 1%;
    padding: 0 20px 15px;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
}

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

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

.label-form {
    font-size: 14px;
    color: var(--branco);
    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: var(--regular);
    font-weight: 325;
}

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

/* .form-exent-nome {
   font-family: "Area", sans-serif !important;
    border: 1px solid transparent !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: "Area", sans-serif !important;
    border: 1px solid transparent !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: "Area", sans-serif !important;
    border: 1px solid transparent !important;
    background-color:var(--bege) !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
} */

#contato .form-exent input[type="text"],
#contato .form-exent textarea {
    font-family: "Area", sans-serif;
    font-size: 15px;
    padding: 9px 14px;
    width: 100%;
    border-radius: 10px;
    border: 0.5px solid var(--branco);
    background-color: transparent;
    color: var(--branco);
    box-sizing: border-box;
}

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

.form-exent-enviar {    
    border: none !important;
    color: var(--laranja) !important;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 21px !important;
    margin: 18px 0 0 0;
    padding: 13px 13px !important;
    transition: all .2s;
    font-weight: 400;
    width: 100%;
    background-color: var(--bege) !important;
    position: relative;
    border-radius: 52px !important; 
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-family: var(--bold)!important;
}

.botao-enviar {
    display: flex;
    position: relative !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: 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;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

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

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

.box-check {
    display: -webkit-box;
    display: -ms-flexbox;
    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 var(--branco) !important;
    outline: none;
}

#realizacao {
    background-color:var(--bege);
    padding: 28px 0 40px 0;
    width: 100%;
}

#realizacao .container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 72px;
    column-gap: 99px;
}

#realizacao .esq {
    width: 50%;
}

#realizacao .esq p {
    font-size: 4.129rem;
    line-height: 4.424rem;
    font-weight: 600;
    font-family: var(--bold);
    color: #000;
    margin: 0;
    text-align: center;
}

#realizacao .dir {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#realizacao .dir img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

#realizacao .container > p:last-child {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    color: #222222;
    text-align: center;
}

#rodape-detalhe{
    width: 100%;
    background-color: var(--bege);
}

#rodape-detalhe img{
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}


#colophon {
    background-color:#204B4E;
    padding: 20px 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
   
}

#colophon .container {

    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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 {
    -webkit-transition: visibility .01s ease, opacity .01s ease, -webkit-transform .01s ease!important;
    transition: visibility .01s ease, opacity .01s ease, -webkit-transform .01s ease!important;
    transition: visibility .01s ease, opacity .01s ease, transform .01s ease!important;
    transition: visibility .01s ease, opacity .01s ease, transform .01s ease, -webkit-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 {
    font-family: var(--regular);
    color: var(--bege);
}

.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(--laranja);
    border-radius: 10px;
    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;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 236px;
    text-decoration: none;
}


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

.confirmacao {
    width: 90%;
    padding: 200px 0 300px;
    margin: auto;
}

@media screen and (min-width: 1921px){
    #banner{
        height: 47vw;
    }
    #banner .container{
        height: 40vw;
        width: auto;
    }

}

@media screen and (max-width: 1640px){
    #video .bloco-video .esq {
        padding-left: 190px;
    }

}

@media screen and (max-width: 1440px){
    #video .bloco-video .esq .titulo {
        font-size: 28px;
    }
    
    #video .bloco-video .esq .texto {
        font-size: 18px;
    }
    
    #video .bloco-video .esq {
        padding-left: 100px;
    }
    
    #video .bloco-video .dir .video-container .btn-play {
        width: 256px;
    }
    #banner .card{
        width: 280px;
    }

    #contato .infos  .esq-infos img{
        width: 80%;
    }
    #contato .infos {
        padding: 52px 15px;
    }



}

@media screen and (max-width: 1280px) {
    #video .bloco-video .esq {
        padding-left: 45px;
    }
     #banner .card{
        width: 200px;
    }
    #contato .infos .texto p{
        font-size: 15px;
    }
    #contato .infos .conteudo-dir {
        gap: 15px;
    }
    #contato .infos .esq-infos {
        padding-right: 6px;
        margin-right: 23px;
    }
}

@media (max-width: 1200px){
    #banner{
        min-height: 700px;
    }

    #banner .container{
        min-height: 800px;
        padding-bottom: 80px;
    }

    #banner .cards{
        gap: 20px;
    }

    #banner .card{
        width: 160px;
        font-size: 14px;
    }

    #banner .saiba-mais{
        width: 380px;
    }

    #video .container .bloco-texto .linha {
        left: 259px;
    }

    #contato .bottom{
        gap: 50px;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 1024px) {
    #localizacao .endereco br{
        display: block;
    }

    .menu-toggle {
        display: flex;
        background-color: var(--laranja);
    }

    .nav-menu {
        display: flex !important; 
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #FFECD5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
        width: 100%;
    }

    .botoes {
        margin-left: 0;
    }

    .nav-container {
        flex-direction: row-reverse;
        justify-content: space-between;
        padding-left: 10px;
    }

    #banner{
        background-image: url(../images/tablet-banner-2.png);
        min-height: 650px;
        background-position: center;
        background-color: var(--bege);
        margin-top: 50px;
    }

    #banner .container{
        padding-bottom: 110px;
        min-height: 460px;
    }

    #banner .cards{
        display: none;
        gap: 57px;
        justify-content: flex-start;
    }

    #banner .card{
        width: 17%;
        font-size: 13px;
        gap: 0
    }

    #banner .saiba-mais{
        width: 320px;
        margin-right: 60px;
    }

    #banner .card svg{
        width: 35px;
    }

    #banner .card .texto{
        font-size: 12px;
    }

    #video .container .bloco-texto {
        flex-direction: column;
        gap: 25px;
        padding: 26px 0px;
    }

    #video .container .bloco-texto img{
        width: 200px;
    }

    #video .container .bloco-texto .linha {
        display: none;
    }

    #video .container .bloco-texto .texto {
        padding-left: 0;
        width: 90%;
    }

    #video .bloco-video {
        flex-direction: column;
        gap: 35px;
        padding: 30px 0;
        padding-bottom: 0;
    }

    #video .bloco-video .dir .video-container .fundo-video{
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;

    }
    

    #video .bloco-video .esq {
        padding-left: 0;
        width: 90%;
    }

    #video .bloco-video .dir .video-container .btn-play{
        width: 150px;
    }

    #video .bloco-video .esq .titulo {
        text-align: center;
        gap: 2px;
        align-items: center;
    }

    #video .bloco-video .esq .texto {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-left: 0px;
    }

    #video .bloco-video .esq .botoes {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding-left: 0px;
    }

    #video .bloco-video .dir {
        width: 100%;
    }

    #video .bloco-video .dir .video-container {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;     
    }

    #video .bloco-video .dir .video-container::before {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;      
    }

    #realizacao {
        padding: 60px 0 50px 0;
    }


    #realizacao .dir img {
        max-width: 250px;
        width: 80%;
    }

    #realizacao .esq {
        width: 90%;
    }

    #contato .bottom{
        flex-direction: column;
    }

    #contato .container{
        gap: 50px;
    }

    #contato .esq{
        width: 100%;
    }

    #contato{
        overflow: hidden;
        padding-bottom: 50px;
        padding: 50px 0;
    }

    #contato .conheca{
        background-size: cover;
        position: relative;
        z-index: 2;
        background-position: center;
    }
    #contato .form-exent {
        width: 100%;
        max-width: 607px;
    }
    #contato .bottom .esq{
        width: 100%;
    }

    #contato .infos{
        justify-content: center;
    }

    #contato .bottom .esq-wrapper {
        width: 80%;
    }

    #localizacao{
        padding: 50px 0;
    }

    #localizacao .endereco{
        border-radius: 13px;
        text-align: center;
        flex-direction: column;
        padding: 30px;
    }

    #localizacao .endereco svg {
        width: 33px;
    }

    #localizacao .container .top {
        flex-direction: column;
        align-items: flex-start;
    }

    #mapa{
        margin-top: 0;
    }
    #contato::after,  #contato::before{

        display: none;
    }

    #rodape-detalhe img {
        height: 56px;
        object-fit: cover;
    }
}

 @media screen and (max-width: 811px) {
    #contato::after,
    #contato::before{
        top: 377px;
    }

    .traco, .line{
        display: none;
    }

 }



@media screen and (max-width: 740px) {
    #banner{
        background-size: contain;
        height: 80vw;
        min-height: 0;
    }

    #banner .saiba-mais {
        padding: 10px;
        width: 250px;
        font-size: 12px;
    }

    #banner .container {
        min-height: 400px;
    }

    #video .container .bloco-texto .texto {
        font-size: 14px;
    }

    #video .bloco-video {
        padding: 0;
        padding-top: 0px;
        gap: 50px;
    }

    #video .bloco-video .esq .titulo {
        font-size: 26px;
    }

     #realizacao .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    #realizacao .esq {
        width: 100%;
    }

    #realizacao .dir {
        width: 100%;
        margin-top: 40px;
    }

    html{
        font-size: 14px;
    }

    #realizacao .container > p:last-child {
        margin-top: 50px;
        font-size: 11px;
        text-align: center;
    }

    #contato .form-exent{
        padding: 50px;
    }
    .header-form img{
        width: 80%;
    }
    #realizacao .esq p {
        font-size: 2.129rem;
        line-height: 2.424rem;
    }
    #realizacao .esq br{
        display: none;
    }
}

 @media screen and (max-width: 811px) {
    #contato::after,
    #contato::before{
       display: none;
    }


 }



@media screen and (max-width:600px){
    #banner{
        background-image: url(../images/banner-mobile.png);
        margin-top: 62px;
        min-height: 0;
        height: 150vw;
    }
    #banner .container {
        min-height: 330px;
    }
    #banner .saiba-mais{
        margin-right: 0;
    }
    #contato .conheca{
        height: 400px;
    }
    #contato .infos {
        flex-direction: column;
        padding: 45px 20px;
        gap: 27px;
    }
    #contato .infos .esq-infos{
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        justify-content: center;
    }
    #contato .infos .esq-infos img {
        width: 100%;
    }
    #contato .dir {
        width: 90%;
        justify-content: center;
    }

    #contato{
        padding: 50px 0;
    }
    #realizacao {
        padding: 0px 0 40px 0;
    }

    .btn-contato{
        padding: 8px 6px;
        font-size: 14px;
        width: 150px;
    }
    #video .bloco-video .esq .titulo,
    #localizacao .container .top .titulo,
    #contato .top .titulo{
        font-size: 22px;
        line-height: 28px;
        
    }

    #video .bloco-video .dir .video-container{
        height: 400px;
    }

    #video .bloco-video {
        padding-top: 50px;
    }



}

@media screen and (max-width: 500px) {
    #contato::before{
        display: none;
    }
    #contato .form-exent{
        padding: 30px;
    }

    html{
        font-size: 10px;
    }

    #mapa .botaos {
        background-color: var(--bege);
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        position: relative;
        align-items: center;
        padding-top: 50px;
        z-index: 2;
    }
    #mapa iframe{
        height: 400px;
    }

    #contato .top .texto,
    #video .bloco-video .esq .texto{
        font-size: 14px;
    }
}

@media screen and (max-width: 425px) {
    #contato .infos .conteudo-dir {
        gap: 15px;
        flex-direction: column;
    }
    #contato .conheca {
        height: 350px;
    }
    #contato .infos .texto p{
        text-align: center;
    }
}

@media screen and (max-width: 375px) {
    #banner .saiba-mais {
        padding: 8px;
        width: 220px;
        font-size: 11px;
    }
}

@media screen and (max-width: 325px) {
    #banner .container {
            min-height: 310px;
    }
}