/**
*
* Carregamento das Webfonts do Google
*/

 @import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Roboto:wght@700&display=swap'); 

:root {
    --text-gray: #82807d;
    --title-gray:#3e475d;
    --prev:#D0B483;
    --prev-hover: #c19c5c;
    --contato:#FAF5ED;
    --rodape:#9F8964;
}

/* BACKGROUNDS */
.contato-bkg{
    background: var(--contato);
}
.rodape-bkg{
    background: var(--rodape);
}

/* GERAL */

body,
html{
	font-family: "Lora", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    margin:0;
    padding:0;
}

.fake-anchor{
    margin-top: -20px;
    position: absolute;
}

b,
strong {
    font-weight: 800;
}

a{
    text-decoration: none !important;
}

.transition{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.title.titulo-secao{
    color: var(--title-gray);
    margin-bottom: 20px;
    font-size: calc( 14px + 1vw );
}

p.text-general, ul.text-general li{
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.prev {
    color: var(--prev);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .4em;
    font-weight: 700;
}

img.mh-600{
    max-height: 600px;
}
img.mh-800{
    max-height: 800px;
}




/* parallax */
.parallax-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.parallax-content {
    color: #fff;
}
/* parallax */



/* List-items  */
.list-potencial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.list-potencial .item-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
    padding: 15px 30px;
}



.button01 {
    text-decoration: none;
    color: #fff;
    background-color: var(--prev);
    border-color: var(--prev);
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
}
.button01:hover {
    background-color: var(--prev-hover);
    border-color: var(--prev-hover);
    color: #fff;
}


.line-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.line-button .button01{
    position: absolute;
}
.line-button hr{
    border-top: 1px solid var(--prev);
    position: relative;
    margin: 0;
    width: 100%;
}



/**
*
* HEADER
*/
header {
    /* position: sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky; */
    position: absolute;
    top: 0;
    z-index: 100;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 100%;
    height: auto;
    /* -webkit-box-shadow: 3px 1px 20px 0 rgb(0 110 225 / 8%);
    box-shadow: 3px 1px 20px 0 rgb(0 110 225 / 8%); */
}
.logo-menu img{
    max-height: 130px;
    width: auto;
}
header .navbar{
    height: 100%;
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* header.header-scrool .menu-top{
    background: rgba(255,255,255, 0.98);
} */
header.header-scrool .navbar{
    height: 75px;
    padding: 0;
    align-items: center;
}
.header-scrool .logo-menu img {
    max-height: 50px;
}
.header-scrool ul#menu-principal a {
    color: #fff;
}
.header-scrool ul#menu-principal a:hover {
    color: var(--prev-hover);
}


ul#menu-principal {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
ul#menu-principal li {
    padding: 15px 0;
}
ul#menu-principal a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
}
/* ul#menu-principal a:hover,
ul#menu-principal .current-menu-item a, 
ul#menu-principal .current-page-ancestor a {
    background: #32373c;
} */
header.general-header ul#menu-principal a {
    color: #fff;
    font-weight: 600;
}
/* header.general-header ul#menu-principal a:hover, 
header.general-header ul#menu-principal .current-menu-item a, 
header.general-header ul#menu-principal .current-page-ancestor a{
    color: var(--prev-hover) !important;
} */


/** BTN HAMBURGUER */
.btn-menu {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hamburguer {
    display: block;
    background: #fff;   
    width: 30px;
    height: 3px;
    position: relative;
    transition: .5s ease-in-out;
}
.hamburguer::before,
.hamburguer::after {
    content: '';
   background: #fff;
   display: block;
   width: 100%; 
   height: 100%;
   position: absolute;
   transition: .5s ease-in-out;
}
.hamburguer::before {
    top: -10px;
}
.hamburguer::after {
    bottom: -10px;
}
.navbar input {
    display: none;
}
.navbar label {
    width: 50px;
    height: 50px;
    display:none;
}
input:checked ~ label .hamburguer{
    transform: rotate(45deg);
}
input:checked ~ label .hamburguer::before {
    transform: rotate(90deg);
    top: 0px;
}
input:checked ~ label .hamburguer::after {
    transform: rotate(90deg);
    bottom: 0px;
}


/** SLIDER VIDEO   **/
.owl-theme .owl-dots .owl-dot{
    outline: none !important;
}


.owl-slider .item{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* .owl-images .item {
    height: 500px;
    max-height: 100%;
}
.owl-images .item img{
width: auto !important;
} */

button.owl-next, 
button.owl-prev {
    position: absolute;
    text-decoration: none;
    outline: none;
    background: none!important;
    top: 44%;
}
button.owl-next {
    right: 2vw;
}
button.owl-prev {
    left: 2vw;
}
button.owl-next span, 
button.owl-prev span {
    font-size: calc(16px + 6vw);
    color: #fff;
}

.texto-banner {
    max-width: 70%;
    text-align: center;
    color: #fff;
    padding-top: 100px;
}
.texto-banner p.title{
    font-size: calc(8px + 2vw);
    font-weight: 600;
	font-family: "Lora", sans-serif;
    line-height: normal;
}


footer,
footer a {
    color: var(--contato) !important;
    font-size: 15px;
}
footer a:hover,
footer a:hover svg{
    fill:#fff;
    color: #fff;
}
footer .mw-300{
    width: 200px;
    max-width: 100%;
}
footer svg{
    fill:  var(--contato);
    width: 18px;
    margin-right: 5px;
}
footer .title-footer {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: calc(8px + 1vh);
}
footer ul{
    list-style-type: none;
    padding: 0;
}
footer ul li{
    margin-bottom: 5px;;
}
footer ul.socials{
    display: flex;
}
footer ul.socials svg{
    width: 22px;
    margin-right: 10px;
}

.copyright {
    padding: 15px ;
    border-top: 1px solid  var(--contato);
}
.copyright p {
    font-size: 14px;
    color:  var(--contato);
}

.whatsapp-footer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}
.whatsapp-footer img{
    width: 60px;
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 100%;
    }
    .navbar {
        justify-content: flex-end;
    }
    header .navbar {
        padding-right: 0px;
        padding-left: 0px;
        justify-content: space-between;
    }
    #navegacao {
        z-index: 1;
    }
    ul#menu-principal {
        background: var(--rodape);
        padding: 15px 0;
    }
    .navbar label {
        display: block;
    }
    
    ul#menu-principal a:hover,
    ul#menu-principal li.current-menu-item, 
    ul#menu-principal li.current-page-ancestor {
        opacity: 0.5;
    }
    .logo-menu img {
        height: auto;
        max-width: 100%;
    }
    ul#menu-principal li {
        padding: 0;
    }
}


@media screen and (max-width: 767px) {
    .box-form{
        position: relative;
        padding: 15px;
        top: 0;
    }
    body, html, p,
    .text-descricao, .text-descricao p{
        font-size: 15px;
    }
    .text-descricao.subtitulo, .text-descricao.subtitulo p{
        font-size: 17px;
    }
    .item-galeria {
        width: 50%;
    }
    .list-potencial .item-list {
        width: 100%;
    }
    .area-g .line-button{
        justify-content: flex-start;
    }
    .texto-banner {
        max-width: 95%;
    }
}

@media screen and (max-width: 400px) {
    .item-galeria {
        width: 100%;
    }
}