/*
Programação: Alexandre Fugita / techbits.dev
Site: https://techbits.dev
E-mail: fugita@techbits.dev
Agosto / 2021
*/

/* FONTS */
@font-face {
  font-family: Ostrich-Medium;
  src: url('../fonts/OstrichSans-Medium.otf');
}
@font-face {
  font-family: DM-Serif-Display-Regular;
  src: url('../fonts/DMSerifDisplay-Regular.ttf');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: Ostrich-Medium, sans-serif;
  color: #444444;
}

a {
  color: #f4c358;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #ff724a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Ostrich-Medium, sans-serif;
  letter-spacing: 3px;
}
h1 {
  display: none;
}

h3 {
  font-size: 34px;
  color: #fff;
  padding: 0 0 30px;
  text-align: center;
}
p {
  font-size: 20px;
  letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f4c358;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff6a40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f4c358;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(42, 42, 42, 0.76);
  padding: 10px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 100px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 19px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f4c358;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #fd3800;
  border-color: #f4c358;
}

.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #f4c358;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .bi-instagram {
  color: #fff;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #f4c358;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #f4c358;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../images/header.jpg') top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c8eb0;
  font-family: 'Poppins', sans-serif;
}

.section-title h2::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  color: #263d4d;
}

/*--------------------------------------------------------------
# SLIDER
--------------------------------------------------------------*/
.slider {
  padding: 0;
}

.slider img {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5px;
}

.slider p {
  margin-top: 30px;
}

.slick-prev:before {
  content: '\f284' !important;
}
.slick-next:before {
  content: '\f285' !important;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'bootstrap-icons';
  margin-left: -10px;
  font-size: 40px;
  color: #f4c358;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 600px) {
  .slider {
    max-width: 85%;
    margin: 0 auto;
  }
}

.col-lg-6 {
  padding: 0 11px;
}

#videos .slider img {
  max-width: 93.33%;
}

#depoimentos img {
  max-width: 100%;
  padding: 0 11px;
}

#depoimentos p {
  padding: 0 11px;
}

/*--------------------------------------------------------------
# LITY
--------------------------------------------------------------*/
.lity {
  background: rgba(0, 0, 0, 0.7);
}

/* BTN PLUS */
.btn-plus {
  background-color: #f4c358;
  color: #000;
  width: 30px;
  height: 30px;
  position: relative;
  margin-top: -30px;
  margin-right: 5px;
  float: right;
  text-align: center;
  font-size: 25px;
}

/* BTN PLAY */
.btn-play {
  background-image: url('../images/btn-play.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  position: relative;
  margin-top: calc(50% - 100% - 90px);
  margin-left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# OFICINA
--------------------------------------------------------------*/
#oficina,
#oficina .container {
  background-color: #000;
}

#oficina .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

#oficina .content {
  color: #fff;
}

#oficina .content p:last-child {
  margin-bottom: 0;
}

#oficina h3 {
  padding-top: 50px;
}

#oficina .luthiers img {
  margin: 0 auto 40px;
  display: block;
}

#oficina .luthiers p {
  color: #fff;
}

@media (max-width: 991px) {
  #oficina .tiago img {
    margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# MODELOS
--------------------------------------------------------------*/

#violoes h3 {
  color: #000;
}
#violoes p {
  text-align: center;
  width: 80%;
  margin: 0 auto 40px;
}
#violoes .slider img,
#violoes .slider {
  max-height: 450px;
}

@media (max-width: 767px) {
  #violoes p {
    width: 90%;
  }
}

@media (max-width: 500px) {
  #violoes .slider img,
  #violoes .slider {
    max-height: 300px;
  }
}

/*--------------------------------------------------------------
# VÍDEOS
--------------------------------------------------------------*/
#videos {
  background-color: #000;
}

/*--------------------------------------------------------------
# DEPOIMENTOS
--------------------------------------------------------------*/
#depoimentos {
  background-color: #000;
}

#depoimentos h3 {
  color: #fff;
}
#depoimentos .slider .item p:last-child {
  color: #f4c358;
  text-align: center;
  font-size: 19px;
  font-family: Ostrich-Medium, sans-serif;
}
#depoimentos .slider p {
  color: #fff;
  font-family: DM-Serif-Display-Regular;
  text-align: center;
}
#depoimentos img {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 575px) {
  #depoimentos p {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# VIOLAO
--------------------------------------------------------------*/
#historia {
  background-color: #6e3919;
}

#historia h3,
#historia p {
  color: #fff;
}

#historia .texto {
  margin-top: 50px;
}

#historia img {
  margin: 0 auto;
  display: block;
}

/*--------------------------------------------------------------
# CONTATO
--------------------------------------------------------------*/

#contato p,
#contato h3 {
  color: #000;
}

#contato p {
  max-width: 80%;
  margin: 20px auto 0;
  text-align:center;
}

#contato i {
margin-left:20px;
}

#contato .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contato .error-message br + br {
  margin-top: 25px;
}

#contato .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contato .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contato .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contato input,
#contato textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 21px;
  border-radius: 4px;
}

#contato input:focus,
#contato textarea:focus {
  border-color: #f4c358;
}

#contato input {
  padding: 10px 15px;
  letter-spacing: 1.5px;
  color: #000;
}

#contato textarea {
  padding: 12px 15px;
  height: 200px;
  letter-spacing: 1.5px;
  color: #000;
}

#contato input[type='submit'] {
  background: #f4c358 !important;
  border: 0;
  padding: 10px 24px;
  color: #000;
  transition: 0.4s;
  border-radius: 4px;
  float: right;
  letter-spacing: 1.5px;
}

#contato input[type='submit']:hover {
  background: #ff5e31 !important;
}

#contato a {
  color: #000;
}

@media (max-width: 991px) {
  #contato p {
    margin: 20px 0 0;
    max-width: 100%;
  }
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
