
@font-face {
    font-family: Montserrat;
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
 }
 @font-face {
    font-family: Montserrat-bold;
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
 }
 @font-face {
    font-family: Montserrat-light;
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: lighter;
}

body {
    font: 16px Montserrat;
}

html{
    scroll-behavior: smooth;
}
section:target{
    scroll-margin-top: .8em;
}

.button:focus, button:active {
    outline: none;
}
*{
    /*border: 1px solid red;*/
}
a{
    text-decoration: none;
}

/* Voltar para o topo */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 100000;
    border-radius: 50%;
    background: linear-gradient(45deg,#C29732, #1A181E);
    color: #fff;
    border: none;
}
#btn-back-to-top:hover {
    transform: scale(1.2);
    transition: all 250ms ease-out;
}

/* Scrollbar */
body::-webkit-scrollbar{
    width: 10px; 
}
::-webkit-scrollbar-track{
    background: #1A181E;
}
::-webkit-scrollbar-thumb{
    background: #C29732;
    border-radius: 8px;
}
/* ini: Preloader */
nav{
    z-index: 10000;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 3000000;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulsex {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.pulseIcon:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada:hover {
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


/* end: Preloader */

/* -------------------------------------------------- HEADER -------------------------------------------------- */
header{
    position: absolute !important;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 10;
    background-color: rgba(23, 24, 30, 85%);
}
a.logo{
    position: absolute;
    top: -18px;
    z-index: 10;
}
a.item-menu{
    color: #fff;
    font-size: 0.8rem;
}
a.item-menu:hover{
    color: #C29732;
    font-family: Montserrat-bold;
    transition: all 300ms ease-out;
}
.pagina-atual {
	cursor: default;
	color: #C29732 !important;
    font-family: Montserrat-bold;
}
/* -------------------------------------------------- BANNER -------------------------------------------------- */
section.banner .item img {
    height: 88vh
}

section.banner .owl-theme .owl-dots .owl-dot.active span,
section.banner .owl-theme .owl-dots .owl-dot:hover span {
    background: #000000;
    width: 31px;
}

section.banner .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 5px 3px;
    background: transparent;
    border: 1px solid #000000;
}
section.banner .owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: -42px !important;
    z-index: 10;
    position: sticky;
}
div.lateral-banner{
    position: absolute;
    width: 4%;
    height: 80.3%;
    right: 0;
    top: 70px;
    z-index: 1;
    background-color: rgba(23, 24, 30, 85%);
}
div.detalhe-lateral-banner{
    width: 2px;
    height: 238px;
    position: absolute;
    top: 36px;
    background-color: #fff;
}
div.detalhe-lateral-banner2{
    top: 450px;
}
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);

 
 .social-icons {
	padding: 0;
	list-style: none;
    margin: 0;
}
 .social-icons li {
    display: flow-root;
    position: relative;
    font-size: 1.4rem;
}
 .social-icons i {
    color: #000;
    position: absolute;
    top: 8px;
    left: 8px;
    transition: all 300ms ease-out;
}

 .social-icons a {
	 display: inline-block;
}
 .social-icons a:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: block;
    background: #fff;
    transition: all 300ms ease-out;
}
 .social-icons a:hover:before {
	 transform: scale(0);
	 transition: all 300ms ease-in;
}
 .social-icons a:hover i {
	 transform: scale(1.4);
	 -ms-transform: scale(1.4);
	 -webkit-transform: scale(1.4);
	 background: #C29732;
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
	 transition: all 300ms ease-in;
}
div.linha-banner{
    width: 100%;
    height: 18px;
    overflow: hidden;
}
div.linha-banner img{
    width: 100%;

}

.navbar{
    padding-left: 0;
    padding-right: 0;
}

/* -------------------------------------------------- SOBRE -------------------------------------------------- */
section.sobre{
    height: 760px;
}
div.conteudo-sobre-esquerda{
    margin-top: 30%;
    margin-left: 24%;
}
h1.titulo-sobre{
    font-size: 2rem;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-bottom: 4%;
    color: #000;
}
p.texto-sobre{
    font-size: 1.3rem;
    font-family: 'Montserrat-light';
    opacity: .9;
    margin-bottom: 6%;
}
a.btn-sobre{
    color: #C29732;
    text-decoration: none;
    /*font-size: 1.2rem;*/
    font-size: 1rem;
    padding: 2% 6%;
    border: 1px solid #C29732;
    border-radius: 5px;
    font-family: 'Montserrat-bold';

}
a.btn-sobre:hover{
    background-color: #1A181E;
    color: #fff;
    border: none;
    transition: all 300ms ease-out;
}
img.bg-sobre{
    width: 100%;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 32%;
    pointer-events: none;
}
img.pessoas-sobre{
    position: sticky;
    z-index: 1;
    width: 55%;
}
div.conteudo-sobre-direita{
    margin-top: 15%;
    padding-left: 8%;
}
/* -------------------------------------------------- BLOG -------------------------------------------------- */
section.blog{
    padding: 10% 0px;
    background-image: url(../img/bg-blogs.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
img.img-card-blog{
    width: 100%;
    margin-bottom: 8%;
}
div.card-body h2.titulo-card-blog{
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Montserrat-bold';
    max-width: 18ch;
    overflow: hidden;
    /*text-overflow: ellipsis;
    white-space: nowrap;*/
    margin-bottom: 5%;
}
section.blog div.card {
    background-color: #fff0;
    border: none;
    width: 100%;
}
section.blog div.item {
    margin: 6%;
}
p.texto-card-blog{
    color: #fff;
    font-size: 0.8rem;
    opacity: .8;
    font-family: 'Montserrat-light';
    margin-bottom: 6% !important;
}
section.blog .owl-theme .owl-dots .owl-dot.active span,
section.blog .owl-theme .owl-dots .owl-dot:hover span , section.missao .owl-theme .owl-dots .owl-dot.active span,
section.missao .owl-theme .owl-dots .owl-dot:hover span, section.galeria .owl-theme .owl-dots .owl-dot.active span,
section.galeria .owl-theme .owl-dots .owl-dot:hover span, section.tecnologia .owl-theme .owl-dots .owl-dot.active span,
section.tecnologia .owl-theme .owl-dots .owl-dot:hover span{
    background: #C29732;
    width: 31px;
}

section.blog .owl-theme .owl-dots .owl-dot span, section.missao .owl-theme .owl-dots .owl-dot span, section.galeria .owl-theme .owl-dots .owl-dot span, section.tecnologia .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 5px 3px;
    background: transparent;
    border: 1px solid #C29732;
}
section.blog .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled, section.missao .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled, section.galeria .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled, section.tecnologia .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
    display: block;
}
section.blog .owl-carousel .owl-item a.btn-compartilhar img{
   width: 25px;
   height: 25px;
}
section.tecnologia .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 5%;
}


section.blogs{
    padding: 10% 0;
}

h2.titulo-card-listagem-blogs {
    font-size: 1.1rem;
    font-family: 'Montserrat-bold';
    color: #C29732;
}

section.blog a.btn-sobre:hover {
    background-color: #c29732;
    color: #fff;
    border: none;
    transition: all 300ms ease-out;
}

/* -------------------------------------------------- INSTAGRAM -------------------------------------------------- */
section.instagram{
    margin-bottom: -9px;
}
.titulo-instagram span:before {
    content: " ";
    width: 33px;
    height: 33px;
    border-radius: 100%;
    display: block;
    background: #000;
    position: absolute;
    z-index: 0;
    left: -22px;
}
.titulo-instagram i{
    color: #fff;
}
h1.titulo-instagram{
    font-family: 'Montserrat-bold';
    font-size: 2rem;
    letter-spacing: 2px;
    color: #000;
}
section.instagram span i.logo-insta{
    color: #fff;
    position: relative;
    top: -5px;
    font-size: 1.4rem;
    left: -15px;

}
section.instagram div.col-12{
    padding: 0;
}
/* -------------------------------------------------- FOOTER -------------------------------------------------- */





section.footer{
    background-color: #1A181E;
    padding: 2% 0 2% 0;
}
p.texto-localizacao{
    margin-bottom: 0;
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat-light';
}
.whatsapp-footer p {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-family: 'Montserrat-light';
}
footer .social-icons a:before{
    width: 30px;
    height: 30px;
}
footer .social-icons i{
    top: 4px;
    left: 6px;
}
footer i.redes-youtube{
    left: 3px;
}
footer i.redes-facebook{
    left: 17px;
    top: 9px;
}
div.redes-sociais-footer p{
    color: #fff;
    font-family: 'Montserrat-light';
    font-size: 0.9rem;
}

/* -------------------------------------------------- MOBILE -------------------------------------------------- */



@media(max-width:768px){
    .conteudo-footer{
        display: block;
    }
    section.footer {
        padding: 10% 0 10% 0;
    }
    div.logo-footer {
        display: flex;
        justify-content: center;
        margin-bottom: 10%;
    }
    p.texto-localizacao{
        font-size: 0.9rem;
        text-align: center;
    }
    div.localizacao{
        margin-bottom: 8%;
    }
    div.whatsapp-footer{
        margin-bottom: 8%;
    }
    section.banner .item img {
        height: 60vh !important;
    }
    a.logo {
        left: 37% !important;
    }
    
}
@media(max-width:320px){
    
}
@media(max-width:375px){
    
}
@media(max-width:414px){
    a.logo {
        left: 34% !important;
        width: 33%;
    }
    section.banner .item img{
        height: 45vh !important;
    }
    h1.titulo-sobre {
        text-align: initial;
        font-size: 1.6rem;
    }
    p.texto-sobre {
        text-align: initial;
        font-size: 1rem;
    }
    a.btn-sobre {
        margin-left: 0;
    }
    ul.navbar-nav{
        padding-top: 12%;
    }
}
@media(min-width:768px) and (max-width:834px){
    
   
  
}

@media(max-width:1024px){
    section.banner .item img {
        height: 54vh;
    }
    div.lateral-banner {
        height: 61%;
        top: 69px;
    }
    a.logo{
        left: 40%;
    }
    i.fas.fa-bars{
        color: white;
        font-size: 1.5rem;
        margin-top: 35%;
    }
    header div.container{
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    ul.navbar-nav{
        background-color: rgba(23, 24, 30, 85%);
        margin-top: 20px;
        padding-left: 26px;
        padding-bottom: 10px;
    }
    div.lateral-banner{
        display: none !important;
    }
    section.sobre{
        height: auto;
        margin-bottom: 10%;
    }
    div.conteudo-sobre-direita {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-around;
    }
}

@media(min-width:1025px) and (max-width:1400px){
    div.lateral-banner{
        height: 78%;
    }
    div.detalhe-lateral-banner {
        height: 162px;
        top: 32px;
    }
    div.detalhe-lateral-banner2 {
        top: 346px;
    }
}

@media(max-width: 991px) {
    
    img.bg-sobre{
        width: 90%;
    }
    div.conteudo-sobre-mobile{
        display: flex;
        justify-content: center;
    }
    h1.titulo-sobre{
        /*text-align: center;*/
    }
    div.conteudo-sobre-esquerda{
        margin-left: 0;
        margin-top: 8%;
    }
    p.texto-sobre{
        /*text-align: center;*/
    }
    a.btn-sobre{
        /*margin-left: 31%;*/
    }
    section.footer div.row{
        flex-wrap: inherit;
        justify-content: center;
    }
    section.footer div.container{
        max-width: 100%;
    }
    section.instagram {
        margin-bottom: 10%;
    }
}