/* -----------------------------------------------------------------------------------
    CSS OTIMIZADO - Contém apenas os estilos utilizados pela página.
    Baseado em:
    01. Typography style
    02. Preloader style
    03. Owl-Theme Custom style
    04. Section style
    05. Navbar style
    06. Header style
    07. Slider style
    09. Kenburns SlideShow style
    12. About style (parcial)
    15. Classes style (parcial - apenas navegação do carrossel)
    22. Video Popup style
    34. Footer style (parcial)
    37. Responsive (Media Query)
    38. Overlay Effect Bg image
----------------------------------------------------------------------------------- */

/* ======= 01. Typography style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75em;
    color: #b1b1b1;
    overflow-x: hidden !important;
    background: #0a0a0a;
}
p {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75em;
    color: #b1b1b1;
    margin-bottom: 15px;
}
h1 { font-size: 90px; }
h2 { font-size: 75px; }
h3 { font-size: 60px; }
h4 { font-size: 45px; }
h5 { font-size: 30px; }
h6 { font-size: 20px; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 0 15px 0;
    color: #fff;
}
img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
:root {
    scroll-behavior: auto;
}
.position-relative {
    position: relative !important;
}
.mb-30 { margin-bottom: 30px !important; }
.mb-60 { margin-bottom: 60px !important; }

/* ======= 02. Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 10000009;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 60px;
    height: 60px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 2px;
    -webkit-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 2px solid #323232;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -2px;
    left: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #FFD700;
    border-radius: 50%;
}
@-webkit-keyframes rotate { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } }
@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ======= 03. Owl-Theme Custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ccc;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FFD700;
    border: 1px solid #FFD700;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}

/* ======= 04. Section style ======= */
.section-padding { padding: 120px 0; }
.section-title {
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.25em;
    font-weight: 700;
}
.section-title span { color: #FFD700; }
[data-overlay-dark] .section-title span { color: #FFD700; }
.section-title3 {
    font-size: 17px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    position: relative;
    margin-bottom: 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ======= 05. Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding: 0;
    height: 100px;
    border: none;
}
.navbar .container { border: none; }
.nav-scroll .container { border: none; }
.navbar-toggler-icon { background-image: none; }
.navbar .navbar-toggler-icon, .navbar .icon-bar { color: #FFF; }
.navbar .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
}
.navbar .navbar-nav .nav-link:hover { color: #FFD700; }
.navbar .navbar-nav .active { color: #FFD700 !important; }
.nav-scroll {
    background: #0a0a0a;
    padding: 0;
    position: sticky;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    height: 85px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.nav-scroll .navbar-toggler-icon, .nav-scroll .icon-bar { color: #FFF; }
.nav-scroll .navbar-nav .nav-link { color: #fff; }
.nav-scroll .navbar-nav .active { color: #FFD700; }
.nav-scroll .logo { padding: 15px 0; color: #fff; }
.nav-scroll .logo-img { width: 120px; margin-bottom: 0; }
.logo-wrapper { float: left; }
.logo { padding: 0; }
.logo-img {
    padding: 15px 0;
    width: 250px;
    text-align: center;
    filter: sepia(1) saturate(4) hue-rotate(-10deg) brightness(1.1) contrast(1.2);
}

/* Navbar Media Query */
@media screen and (max-width: 991px) {
    .navbar { background: transparent; padding: 0; }
    .nav-scroll { background: #0a0a0a; }
    .logo-wrapper { float: left; padding: 23px 0 23px 15px; }
    .nav-scroll .logo-wrapper { padding: 15px; background-color: transparent; }
    .nav-scroll .logo-img { width: 130px; }
    .navbar .logo { text-align: left; margin-left: 0; }
    .logo-img { margin-bottom: 0; width: 130px; padding: 0; }
    .navbar button {
        margin-right: 0;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover { background: transparent; }
    .navbar button:active, .navbar button:focus, .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container { max-width: 100%; padding: 0; }
    .navbar .nav-link { margin: 0 auto !important; }
    .navbar .navbar-nav .nav-link { color: #fff; padding: 0; }
    .nav-scroll .navbar-collapse .nav-link { color: #fff !important; }
    .nav-scroll .navbar-collapse .active { color: #FFD700 !important; }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #0a0a0a;
        text-align: left;
        padding: 20px;
    }
}

/* ======= 06. Header style ======= */
.header { min-height: 100vh; overflow: hidden; }
.header .caption .o-hidden { display: inline-block; }
.header .caption h6 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    position: relative;
    margin-bottom: 5px;
    padding-left: 50px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.header .caption h6:after {
    content: '';
    width: 40px;
    height: 1px;
    background: #FFD700;
    position: absolute;
    left: 0;
    top: 50%;
}
.header .caption h1 {
    position: relative;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 75px;
    text-transform: uppercase;
    line-height: 1.25em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    color: #fff;
}
.header .caption h1 span { color: #FFD700; }
.header .caption p {
    font-size: 17px;
    line-height: 1.5em;
    margin-bottom: 30px;
    color: #fff;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    margin-right: 15px;
}

/* ======= 07. Slider style ======= */
.slider .owl-item, .slider-fade .owl-item {
    min-height: 100vh;
    position: relative;
}
.slider .item, .slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider .item .caption, .slider-fade .item .caption { z-index: 9; }

/* owl-nav next and prev */
.owl-nav { position: absolute; bottom: 7%; right: 12%; }
.owl-prev { float: left; }
.owl-next { float: right; }
.owl-theme .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    margin-right: 3px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    border: 1px solid #FFD700;
    font-size: 12px;
    line-height: 42px;
    color: #fff;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: #FFD700;
    border: 1px solid #FFD700;
    color: #0a0a0a;
}
@media screen and (max-width: 768px) {
    .owl-nav { display: none; }
}

/* ===== 09. Kenburns SlideShow style ===== */
#kenburnsSliderContainer .vegas-slide-inner {
    background-position: center 0% !important;
}
.kenburns-section {
    z-index: 1;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.kenburns-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #000;
}
.kenburns-inner { position: relative; z-index: 15; }
.kenburns-inner .caption { position: relative; }
.kenburns-inner .caption h6 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    position: relative;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.kenburns-inner .caption h1 {
    font-size: 70px;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    text-transform: uppercase;
    text-shadow: 0 10px 13px rgba(0, 0, 0, 0.23);
}
.kenburns-inner .caption h1 span { color: #FFD700; }
.kenburns-inner .caption p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}
#kenburnsSliderContainer .vegas-overlay { outline: none; }
@media screen and (max-width: 767px) {
    .kenburns-inner .caption h1 { font-size: 45px; }
    .kenburns-inner .caption h1 span { font-size: 45px; }
    .kenburns-inner .caption { text-align: center; }
}

/* ======= 12. About style ======= */
/* NOTE: .about-img styles are handled by the user's internal CSS */
.about { position: relative; }
.about p { color: #b1b1b1; }
/* about list */
.about .list { position: relative; display: block; }
.about .list li { position: relative; display: flex; align-items: center; }
.about .list li + li { margin-top: 10px; }
.about .list-icon { display: flex; align-items: center; }
.about .list-icon span { font-size: 12px; color: #FFD700; background-color: transparent; }
.about .list-text { margin-left: 15px; }
.about .list-text p { font-size: 17px; margin: 0; color: #b1b1b1; }

/* ======= 15. Classes style (Carousel Navigation Only) ======= */
.classes .owl-theme .owl-nav {
    position: absolute!important;
    top: 35% !important;
    bottom: auto!important;
    width: 100%;
    opacity: 0;
}
.classes .owl-theme:hover .owl-nav { opacity: 1; }
.classes .owl-theme .owl-prev { left: 10px!important; }
.classes .owl-theme .owl-next { right: 10px!important; }
.classes .owl-theme .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #FFD700;
    border-radius: 0;
    color: #0a0a0a;
    font-size: 12px;
    margin: 0 30px;
    cursor: pointer;
    border: 1px solid #FFD700;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.classes .owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: #fff;
    border: 1px solid #fff;
    color: #0a0a0a;
}
@media screen and (max-width: 768px) {
    .classes .owl-theme .owl-nav { display: none; }
}


/* ======= 22. Video Popup style ======= */
.video-wrapper { min-height: 500px; }
.video-wrapper .vid { position: relative; z-index: 8; }
.video-wrapper .vid .vid-butn:hover .icon { color: #FFD700; }
.video-wrapper .vid .vid-butn:hover .icon:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.video-wrapper .vid .vid-butn .icon {
    color: #FFD700;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    position: relative;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.video-wrapper .vid .vid-butn .icon:after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: -1;
}
.video-wrapper .vid .vid-butn .icon:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    background: transparent;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
    transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}
.video-wrapper .vid .vid-butn .icon:hover {
    border: 2px solid #FFD700;
}

/* ======= 34. Footer style ======= */
.footer { position: relative; display: block; }
.footer p { color: #b1b1b1; }
/* footer copyright */
.footer-bottom .copyright { position: relative; display: block; }
.footer-bottom p { font-size: 15px; color: #b1b1b1; margin: 0; }
/* footer bottom */
.footer-bottom {
    position: relative;
    display: block;
    background-color: #0a0a0a;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======= 37. Responsive style ======= */
@media (min-width: 1200px) {
    .container { max-width: 1140px !important; }
}
@media screen and (max-width: 991px) {
    .bg-fixed { background-attachment: scroll !important; }
    .header { background-attachment: scroll !important; background-position: 50% 0% !important; }
    .header .caption h1 { font-size: 45px; }
    .section-title { font-size: 45px; }
}
@media screen and (max-width: 767px) {
    .header .caption h1 { font-size: 45px; }
}

/* ======= 38. Overlay Effect Bg image ======= */
[data-overlay-dark] { position: relative; }
[data-overlay-dark] .container { position: relative; z-index: 2; }
[data-overlay-dark]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span { color: #fff; }
[data-overlay-dark] p { color: #b1b1b1; }
[data-overlay-dark="0"]:before { opacity: 0; }
[data-overlay-dark="3"]:before { opacity: 0.3; }