body {
  font-family: 'Montserrat', sans-serif;
}

/* Container Desktop */
@media(min-width: 1200px) and (max-width: 1399px) {
  .container { width: 100%; max-width: 95%; }
}

/* Classes Globais */
.fs-small { font-size: .9rem; }
.fw-4 { font-weight: 400; }
.fw-5 { font-weight: 500; }
.fw-6 { font-weight: 600; }
.fw-7 { font-weight: 700; }
.text-grey { color: #474747; }
.text-justify { text-align: justify; }
.shadow-all { box-shadow: 0 0 .5rem .1rem rgba(0,0,0,.15); }

/* Sombra do Topo */
.bg-shadow {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
.bg-shadow img {
  min-height: 120px;
}

/* Info */
.info-nav {
  display: flex;
  align-items: center;
  background: #fb4516;
  height: 34px;
}
.info-nav .nav {
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
}
.info-nav .nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  gap: 0.5rem;
}
.info-nav .nav .nav-link:hover,
.info-nav .nav .nav-link:focus {
  opacity: 0.8;
}
@media(min-width: 992px) {
  .info-nav .nav { gap: 4rem; }
}

/* Navbar */
.navbar .navbar-brand {
  z-index: 1020;
  margin-right: 0;
}
.navbar .navbar-brand img {
  width: 12.455rem;
  /*transition: width .2s ease-in-out;*/
  /*-ms-transition: width .2s ease-in-out;*/
  /*-webkit-transition: width .2s ease-in-out;*/
}
/*.navbar .navbar-brand.active img {*/
/*  width: 12.455rem;*/
/*}*/
.navbar .navbar-nav .nav-item .nav-link {
  font-size: .9rem;
  font-family: "Montserrat Medium";
  text-transform: uppercase;
  border-radius: 1rem;
  display: inline-block;
  padding: 0.55rem 1.25rem;
  margin: .75rem 0;
  color: #ffffff;
  line-height: 1;
}
.navbar .navbar-nav .nav-item .nav-link:not(.dropdown-toggle):hover,
.navbar .navbar-nav .nav-item .nav-link:not(.dropdown-toggle):focus,
.navbar .navbar-nav .nav-item .nav-link:not(.dropdown-toggle).active {
  background-color: #fb4516;
  border-color: #fb4516;
  color: #ffffff;
}
@media(min-width: 576px) {
  .navbar .navbar-nav { max-width: 540px; margin: 0 auto; }
}
@media(min-width: 768px) {
  .navbar .navbar-nav { max-width: 720px; }
}
@media(min-width: 992px) {
  .navbar {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    transition: background-color .2s ease-in-out;
    -ms-transition: background-color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
  }
  .navbar.navbar-background {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .navbar .navbar-nav {
    margin: initial;
    max-width: initial;
    align-items: center;
  }
  .navbar .navbar-nav .nav-item .nav-link { margin: 0 0.25rem; }
  .navbar .navbar-nav .nav-item:last-of-type .nav-link { margin-right: 0; }
  .navbar .navbar-brand img {
    width: 100%;
    transition: width .2s ease-in-out;
    -ms-transition: width .2s ease-in-out;
    -webkit-transition: width .2s ease-in-out;
  }
  .navbar .navbar-brand.active img {
    width: 12.455rem;
  }
}

/* Menu Hamburguer Mobile */
@media(max-width: 991px) {
  .navbar .navbar-collapse {
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 34px;
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-top: 120px;
    overflow-y: auto;
    visibility: hidden;
    z-index: 1010;
    transition: .2s ease-in-out, -webkit-transform .2s ease-in-out;
  }
  .navbar .navbar-collapse.show {
    visibility: visible;
    transform: translateX(-100%);
  }
  .navbar .navbar-collapse .navbar-nav {
    padding-top: var(--bs-gutter-y,.75rem);
    padding-right: var(--bs-gutter-x,.75rem);
    padding-bottom: var(--bs-gutter-y,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
  }
  /* Icone Menu Hamburguer */
  .navbar .navbar-toggler { z-index: 1020; }
  .navbar .navbar-toggler:focus { box-shadow: none; }
  .navbar .navbar-toggler.icon {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    height: 30px;
    width: 30px;
    padding: 0;
    border: 0;
  }
  .navbar .navbar-toggler.icon span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background-color: #FFF;
    -webkit-transition: -webkit-transform 0.3s;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .navbar .navbar-toggler.icon span:first-child { top: 4px; }
  .navbar .navbar-toggler.icon span:nth-child(2) { top: 12px; }
  .navbar .navbar-toggler.icon span:last-child { top: 20px; }
  .navbar .navbar-toggler.icon--active span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 12px;
  }
  .navbar .navbar-toggler.icon--active span:nth-child(2) { opacity: 0; }
  .navbar .navbar-toggler.icon--active span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 12px;
  }
  .navbar .navbar-toggler.icon-transition {
    -webkit-transition: -webkit-transform 0.3s;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
}

/* Footer */
.footer {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}
.footer::before {
  content: "";
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
}
.footer::after {
  content: "";
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.footer a:not(.not) {
  display: flex;
  align-items: center;
  font-family: "Montserrat Medium";
  text-decoration: none;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer a.whatsapp {
  font-size: 1.4rem;
}
.footer a.email {
  font-size: 1.15rem;
}
.footer .logo {
  width: 100%;
  max-width: 300px;
}
.footer .footer-copyright {
  border-top: 1px solid #fb4516;
}
.footer .footer-copyright span:last-of-type {
  color: #b9baba;
}

/* Shake on hover */
.shake-it:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* Dropdown */
.dropdown .dropdown-toggle::after {
  font: var(--fa-font-solid);
  content: "\f078";
  vertical-align: inherit;
  margin-left: 0.5rem;
  border: none;
}
.dropdown .dropdown-menu {
  top: 2rem;
  left: 1rem;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  border: none;
}
.dropdown .dropdown-menu .dropdown-item {
  color: #ffffff;
  font-size: .8rem;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 5px;
  padding: 0.401rem 0.75rem;
  margin: 0;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #fb4516;
  color: #ffffff;
}
@media(max-width: 991px) {
  .dropdown .dropdown-toggle::after {
    position: absolute;
  }
}

/* Animate Dropdown Menu */
.animate {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  animation-name: slideIn;
  -webkit-animation-name: slideIn;
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
  color: #737373;
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #000000;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "|";
}

/* Section Title */
.section-title {
  position: relative;
  font-family: "Montserrat SemiBold";
  font-size: 2.25rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5rem;
  padding-bottom: 0.5rem;
}
.section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 78px;
  height: 6px;
  margin: 0 auto;
  background: #fb4516;
}

/* Swiper Button */
.swiper-button-prev,
.swiper-button-next {
  background: rgba(0,0,0,0.5)!important;
  color: #ffffff!important;
  width: 50px!important;
  height: 62px!important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.75rem!important;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: not-allowed!important;
  pointer-events: inherit!important;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px!important;
  height: 12px!important;
  opacity: 0.85!important;
  box-shadow: 0px 0px 3px 0.06px rgba(255, 255, 255, 0.8)!important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #fb4516!important;
}

/* Solicite Orçamento */
.budget {
  background-color: #2e2e2e;
}
.budget .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 130px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  gap: 1.25rem;
}
.budget .container h3 {
  font-family: "Montserrat SemiBold";
  font-size: 1.5rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}
.budget .btn-outline-white {
  width: 100%;
  max-width: 252px;
  height: 38px;
}
@media(min-width: 992px) {
  .budget .container {
    flex-direction: row;
    gap: 3rem;
  }
}

/* Toast Cookie */
.toast {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  border: none;
  border-radius: 0;
  background-color: #FFFFFF;
  z-index: 1020;
  box-shadow: 0px 5px 12px 1px rgba(99, 99, 99, 0.5);
}
.toast .toast-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 96px;
  gap: 1rem;
}
.toast .toast-body span {
  font-family: "Montserrat Medium";
  font-size: 0.9rem;
  text-align: center;
  color: #424242;
}
.toast .toast-body span a {
  color: #424242;
  text-decoration: underline;
}
.toast .toast-body .btn-toast {
  font-family: "Montserrat SemiBold";
  width: 100%;
  max-width: 222px;
  height: 40px;
  border: 2px solid #fb4516;
}
@media(min-width: 768px) {
  .toast .toast-body {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Botões */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn:hover,
.btn:focus {
  box-shadow: none;
}

/* Botão Laranja */
.btn-orange {
  font-family: "Montserrat Medium";
  font-size: .9rem;
  text-transform: uppercase;
  background-color: #fb4516;
  border-color: #fb4516;
  color: #ffffff;
  border-radius: 1.5rem;
}
.btn-orange:hover,
.btn-orange:focus {
  background-color: #c33408;
  border-color: #c33408;
  color: #ffffff;
}

/* Botão Outline Laranja */
.btn-outline-orange {
  font-family: "Montserrat Medium";
  font-size: .9rem;
  text-transform: uppercase;
  background-color: #FFFFFF;
  border-color: #fb4516;
  color: #fb4516;
  border-radius: 1.5rem;
}
.btn-outline-orange:hover,
.btn-outline-orange:focus {
  background-color: #fb4516;
  border-color: #fb4516;
  color: #FFFFFF;
}

/* Botão Outline Branco */
.btn-outline-white {
  font-family: "Montserrat Medium";
  font-size: .9rem;
  text-transform: uppercase;
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
  border-radius: 1.5rem;
}
.btn-outline-white:hover,
.btn-outline-white:focus {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #2e2e2e;
}

/* Botões flutuantes */
.buttons-floating {
  position: fixed;
  bottom: 15px;
  right: 5px;
  z-index: 1030;
}
.buttons-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  color: #FFF;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.buttons-floating a.btn-arrow-up {
  width: 50px;
  height: 50px;
  background-color: #fb4516;
}
.buttons-floating a.btn-whatsapp {
  width: 68px;
  height: 68px;
  background-color: #4BAF4F;
  border-radius: 50%;
}
.buttons-floating a.btn-whatsapp i {
  font-size: 1.5em;
}