@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Noto+Serif&family=Oswald:wght@300&family=Playfair+Display&display=swap");
/********** Default values ****************/
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  font-family: Arial, sans-serif;
  margin-top: -25px;
  padding: 0;
}

body p {
  font-family: Arial, Helvetica, sans-serif;
}

.title {
  font-family: 'Playfair Display', serif;
  color: #000;
}

.title h1 {
  font-size: 50px;
}

.line-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2px;
  width: 100px;
  background: #975b00;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.button-22 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  background-color: #975b00;
  border-radius: 8px;
  border-style: none;
  -webkit-box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
          box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "RM Neue",sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 10px 21px;
  text-align: center;
  text-transform: none;
  -webkit-transition: color .13s ease-in-out, .13s ease-in-out,opacity .13s ease-in-out,-webkit-box-shadow .13s ease-in-out;
  transition: color .13s ease-in-out, .13s ease-in-out,opacity .13s ease-in-out,-webkit-box-shadow .13s ease-in-out;
  transition: color .13s ease-in-out, .13s ease-in-out,opacity .13s ease-in-out,box-shadow .13s ease-in-out;
  transition: color .13s ease-in-out, .13s ease-in-out,opacity .13s ease-in-out,box-shadow .13s ease-in-out, -webkit-box-shadow .13s ease-in-out;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.button-22:active {
  background-color: #000000;
}

.button-22:hover {
  background-color: #241100;
}

/************** Nav Bar ******************/
.scrolling-active {
  background-color: black;
}

#navBar {
  font-family: 'Montserrat', sans-serif;
  top: 0;
  width: 100%;
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 500;
  -webkit-animation: show-nav 2s;
          animation: show-nav 2s;
  margin-left: 0px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

#navBar .nav_burger-btn {
  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;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin: 0 .5rem;
  margin-right: 1rem;
}

#navBar .nav_burger-btn .nav_burger,
#navBar .nav_burger-btn .nav_burger::before,
#navBar .nav_burger-btn .nav_burger::after {
  opacity: 1;
  width: 2rem;
  height: .2rem;
  background: #976700;
  border-radius: 1rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#navBar .nav_burger-btn .nav_burger::before,
#navBar .nav_burger-btn .nav_burger::after {
  content: "";
  position: absolute;
}

#navBar .nav_burger-btn .nav_burger::before {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

#navBar .nav_burger-btn .nav_burger::after {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

#navBar .nav_burger-btn .open .nav_burger {
  background: transparent;
}

#navBar .nav_burger-btn .open {
  background: transparent;
}

#navBar .nav_burger-btn .open::before {
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#navBar .nav_burger-btn .open::after {
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#navBar .logo img {
  height: 4.3rem;
  margin-left: 3rem;
}

#navBar .nav-links {
  position: absolute;
  background: #000;
  top: 6rem;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 1rem;
  list-style-type: none;
  -webkit-animation: showMenu 0.5s ease-in-out forwards;
          animation: showMenu 0.5s ease-in-out forwards;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

#navBar .nav-links a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

#navBar .nav-links .nav-link {
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 2rem;
  margin-top: 5rem;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

#navBar .nav-links .nav-link:hover {
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

#navBar .nav-links .nav-link:hover a {
  color: #976700;
}

#navBar .nav-links .nav-link:nth-child(4):hover {
  -webkit-transform: none;
          transform: none;
}

#navBar .nav-links .nav-button {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  height: 40px;
  margin-top: 1.2rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  width: 155px;
  text-align: center;
}

#navBar .nav-links .nav-button img {
  width: 15px;
  height: 15px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: relative;
  top: 3px;
  right: -2px;
}

#navBar .nav-links .nav-button:hover {
  color: #975b00;
  border: 1px solid #975b00;
}

#navBar .nav-links .nav-button:hover img {
  -webkit-filter: invert(33%) sepia(99%) saturate(626%) hue-rotate(5deg) brightness(91%) contrast(101%);
          filter: invert(33%) sepia(99%) saturate(626%) hue-rotate(5deg) brightness(91%) contrast(101%);
}

#navBar .nav-links.open {
  display: block;
}

@-webkit-keyframes showMenu {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  80% {
    -webkit-transform: scaleY(1.2);
            transform: scaleY(1.2);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes showMenu {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  80% {
    -webkit-transform: scaleY(1.2);
            transform: scaleY(1.2);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

/*Apply on scroll*/
@-webkit-keyframes show-nav {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes show-nav {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}

@media (min-width: 1000px) {
  #navBar {
    overflow: hidden;
  }
  #navBar .logo {
    margin: auto;
  }
  #navBar .nav_burger-btn {
    display: none;
  }
  #navBar .nav-links {
    position: relative;
    display: block;
    padding: 0;
    top: 0;
    margin-top: 0;
    text-align: right;
    height: auto;
    background-color: transparent;
  }
  #navBar .nav-links .nav-link {
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  #navBar .nav-links .nav-link button {
    display: inline-block;
  }
  #navBar .nav-links .nav-link:nth-child(4) {
    -webkit-transform: none;
            transform: none;
  }
}

/*********************** Hero Section ***************************/
#servicesPhoto {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50vh;
  text-align: center;
}

#servicesPhoto img {
  height: 50vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#servicesPhoto .cover {
  position: absolute;
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  width: 100%;
}

#servicesPhoto .cover .title {
  color: #fff;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30vh;
}

#holdingService {
  margin-top: 100px;
  padding: 1rem;
  text-align: center;
}

#holdingService .line-title {
  margin: .5rem auto;
}

#holdingService .title {
  text-align: center;
}

#holdingService .title h1 {
  font-size: 2rem;
}

#holdingService .title h2 {
  font-size: 2.5rem;
}

#holdingService .description {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

#holdingService .description h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

#holdingService .description p {
  font-size: .9rem;
}

#holdingService .how-to-do {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

#holdingService .how-to-do h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

#holdingService .how-to-do p {
  font-size: .9rem;
}

#holdingService .list-vantagens {
  list-style: none;
}

#holdingService .list-vantagens li {
  border-bottom: solid 1px #3E1C00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 1.5rem;
  padding-bottom: 2rem;
}

#holdingService .list-vantagens li img {
  height: 1rem;
  margin-right: 1rem;
  margin-top: .3rem;
}

#holdingService .list-vantagens li h3 {
  color: #3E1C00;
  margin-bottom: 1rem;
}

@media screen and (min-width: 360px) {
  #holdingService .title h1 {
    font-size: 3rem;
  }
  #holdingService .description h2 {
    font-size: 1.8rem;
  }
  #holdingService .description p {
    font-size: 1.1rem;
  }
  #holdingService .how-to-do h2 {
    font-size: 1.8rem;
  }
  #holdingService .how-to-do p {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 360px) {
  #holdingService {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 1000px) {
  #holdingService {
    padding-left: 12rem;
    padding-right: 12rem;
  }
}

/************** Contato ******************/
#contato {
  height: auto;
  background: #fff;
  width: 100vw;
  padding: 1rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contato .title h1 {
  font-size: 2rem;
}

#contato .contato-wrapper {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}

#contato .contato-wrapper .contact-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  padding: 1rem;
}

#contato .contato-wrapper .contact-field .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

#contato .contato-wrapper .contact-field .contact-item img {
  width: 35px;
  margin-right: 20px;
}

#contato .contato-wrapper .contact-field .contact-item p {
  font-size: .8rem;
}

#contato .contato-wrapper .contact-form {
  margin-top: 2rem;
}

#contato .contato-wrapper .contact-form form {
  margin-top: 1.5rem;
}

#contato .contato-wrapper .contact-form form input::-webkit-input-placeholder {
  font-weight: 600;
  color: #3E1C00;
  opacity: .7;
  margin-bottom: 0;
}

#contato .contato-wrapper .contact-form form input:-ms-input-placeholder {
  font-weight: 600;
  color: #3E1C00;
  opacity: .7;
  margin-bottom: 0;
}

#contato .contato-wrapper .contact-form form input::-ms-input-placeholder {
  font-weight: 600;
  color: #3E1C00;
  opacity: .7;
  margin-bottom: 0;
}

#contato .contato-wrapper .contact-form form input::placeholder {
  font-weight: 600;
  color: #3E1C00;
  opacity: .7;
  margin-bottom: 0;
}

#contato .contato-wrapper .contact-form form input {
  border: none;
  border-bottom: 1px solid #3E1C00;
  outline: none;
  height: 30px;
  max-width: 450px;
  margin-bottom: 15px;
}

#contato .contato-wrapper .contact-form form input:focus {
  border-bottom: 2px solid #3E1C00;
}

#contato .contato-wrapper .contact-form form label {
  font-weight: 600;
  color: #3E1C00;
  margin-bottom: 0;
}

#contato .contato-wrapper .contact-form form textarea {
  max-width: 450px;
  outline: none;
  border: 1px solid #3E1C00;
}

#contato .contato-wrapper .contact-form form textarea:focus {
  outline: none;
}

#contato .contato-wrapper .contact-form form button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  margin: 0 auto;
  margin-top: 1rem;
}

#contato .contato-wrapper .contact-form h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

#contato .contato-wrapper .contact-form h4 {
  font-size: 1rem;
  font-weight: 200;
}

#contato form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3rem;
}

#contato form textarea {
  height: 150px;
}

#contato .atendimento {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  padding: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#contato .atendimento button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  margin: 0 auto;
  margin-top: 1rem;
}

#contato .atendimento button img {
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

@media screen and (min-width: 360px) {
  #contato .title h1 {
    font-size: 3rem;
  }
  #contato .contato-wrapper .contact-field .contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #contato .contato-wrapper .contact-field .contact-item p {
    font-size: 1rem;
  }
  #contato .contato-wrapper .contact-form {
    margin-top: 2rem;
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  #contato form {
    margin-bottom: 0;
  }
  #contato .title h1 {
    font-size: 3rem;
  }
  #contato .contato-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #contato .contato-wrapper .contact-field .contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #contato .contato-wrapper .contact-field .contact-item p {
    font-size: 1rem;
  }
  #contato .contato-wrapper .contact-form {
    margin-top: 2rem;
    width: 100%;
  }
  #contato .contato-wrapper .contact-form form button {
    margin: 0;
    margin-top: 1rem;
  }
}

@media screen and (min-width: 1000px) {
  #contato {
    padding: 8rem;
  }
}

/****************** Footer **********************/
#footer {
  height: auto;
  width: 100%;
  background: #000;
}

#footer a {
  color: #4d4df3;
}

#footer a:visited {
  color: #4d4df3;
}

#footer .socials {
  width: 100%;
  text-align: center;
}

#footer .socials .social-item {
  margin: 30px 30px 30px 30px;
}

#footer .footer-columns {
  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;
  margin: auto;
  width: 50%;
  margin-bottom: 50px;
}

#footer .footer-columns ul {
  list-style: none;
}

#footer .footer-columns li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .footer-columns li p {
  margin-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
  color: #fff;
}

#footer .footer-columns img {
  background: #fff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  padding: 1px;
}

#footer .footer-columns h1 {
  font-size: 20px;
  color: #975b00;
  margin-bottom: 20px;
}

#footer .copyright {
  margin: auto;
  height: 50px;
  text-align: center;
  color: #fff;
}

#footer .copyright a {
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 550px) {
  #footer .socials .social-item {
    margin: 30px 10px 30px 10px;
  }
  #footer .socials img {
    height: 50px;
  }
  #footer .footer-columns {
    margin-left: 1rem;
    width: 100%;
  }
  #footer .footer-columns h1 {
    font-size: 18px;
  }
  #footer .footer-columns img {
    width: 25px;
  }
}

@media (max-width: 550px) {
  #footer .footer-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #footer .footer-columns .contato-footer {
    margin-top: 30px;
    margin-left: 15px;
  }
  #footer .footer-columns .links-footer {
    margin-top: 30px;
    margin-left: 15px;
  }
  #footer .copyright {
    height: 60px;
  }
}
/*# sourceMappingURL=style.css.map */