/* :root {
  --clr-primary: #F59500;
  --clr-primary-hover: #bd7100;
  --clr-secondary: #fff;
  --clr-secondary-hover: #fff;
  --clr-gray: #f0eff0;
  --clr-red: #981E27;
} */
/* RESET */
*,
*::before,
*::after {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}
/* FONT-SIZE */
#single h1 {
  font-size: 2rem !important;
}
h2 {
  font-size: 1.5rem !important;
}
h3 {
  font-size: 1.25rem !important;
}
h4 {
  font-size: 1rem !important;
}
h5 {
  font-size: 0.875rem !important;
}
h6 {
  font-size: 0.75rem !important;
}
/* GLOBAL */
.text-primary {
  color: var(--clr-primary) !important;
}
.text-secondary {
  color: var(--clr-secondary) !important;
}
.text-secondary-hover {
  color: var(--clr-secondary-hover) !important;
}
.text-red {
  color: var(--clr-red) !important;
}
.bg-primary {
  background-color: var(--clr-primary) !important;
}
.bg-secondary {
  background-color: var(--clr-secondary) !important;
}
.bg-gray {
  background-color: var(--clr-gray) !important;
}

body {
  font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-top: 72px;
  background: #232323;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
.btn-primary {
  background-color: var(--clr-primary);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background-color: #6f3174;
}
.btn-transp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.btn-transp:hover {
  color: #2f2f2f;
  background-color: #fff;
}
.btn-transp path {
  transition: all 0.3s ease;
}
.btn-transp:hover path {
  fill: #000;
  stroke: #000;
}
.container-custom {
  width: 100%;
  max-width: 1564px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-custom {
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* LOADER */
body:not(.loaded) {
  overflow: hidden;
}
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.loaded #site-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#site-loader .loader__wrapper {
  position: relative;
  width: 200px;
}
#site-loader .loader__wrapper img {
  position: absolute;
  width: 100%;
}
#sombra1 {
  animation: sombra infinite 1.5s;
  transform-origin: center;
}
#sombra2 {
  animation: sombra infinite 1.5s .5s;
  transform-origin: center;
}
@keyframes sombra {
  from {
    transform: scale(1);
    opacity: .8;
  }
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}
/* BOTÃO WPP FLUTUANTE */
#btnWpp {
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  opacity: 1;
  background-color: rgba(18, 140, 126, 1);
  /* backdrop-filter: blur(4px); */
  transition: all 0.3s ease;
}
#btnWpp:hover {
  background-color: rgba(18, 140, 126, 1);
  transform: scale(1.1);
}
#btnWpp img {
  transition: all 0.5s ease-in;
  animation: none;
  width: 100%;
  max-width: 24px;
}
#btnWpp:hover > img {
  transform: scale(1.2);
  animation: btnWpp 1s infinite;
}
@keyframes btnWpp {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.2);
  }
  66% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/* BREADCRUMB */
#breadcrumb {
  border-top: 1px solid #5B5B5B;
  border-bottom: 1px solid #5B5B5B;
  background: #232323;
}
#breadcrumb a {
  color: #cacaca;
  text-decoration: none;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb .breadcrumb-item.active {
  color: #cacaca;
}
#breadcrumb .breadcrumb {
  margin-bottom: 0;
}
#breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  font-weight: bold;
  color: #cacaca;
}
/* NAVBAR */
.navbar.is-scrolled {
  background: #232323;
}
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  padding: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background-color: #232323;
  transition: all 0.3s ease;
}
.navbar .navbar-brand img {
  max-height: 44px;
  width: 100%;
}
.navbar a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.navbar__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.navbar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
}
.navbar__top ul {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 5%;
}
.navbar__top li {
  display: flex;
}
.navbar__top ul a {
  padding: 8px 16px;
  border-radius: 60px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.navbar__top ul a:hover {
  background-color: #FFFFFF;
  color: #000;
}
.navbar .btn__wrapper {
  display: flex;
  height: 100%;
  gap: 24px;
}
.navbar .search__form {
  display: flex;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #eeeeee;
}
.navbar .search__input,
.navbar .search__submit {
  background: transparent;
  color: var(--clr-secondary-hover);
}
.navbar .search__input {
  width: 100%;
}
.navbar .search__input::placeholder {
  color: var(--clr-secondary-hover);
}
.navbar .search__input:focus {
  outline: none;
}
.navbar .btn__wrapper .btn-orcamento {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  padding: 8px 24px;
  background-color: var(--clr-secondary);
  color: #fff;
  transition: all 0.3s ease;
}
.navbar .btn__wrapper .btn-orcamento:hover {
  background: var(--clr-secondary-hover);
  transform: scale(1.05);
}
/* NAVBAR MOBILE */
.navbar__mobile {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 100%);
  max-height: 72px;
  flex-wrap: nowrap !important;
  gap: 16px;
}
.navbar__mobile .navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar__mobile .navbar-brand img {
  max-height: 40px;
}
.navbar__mobile .offcanvas.offcanvas-end {
  width: 100%;
  max-width: 500px;
  border-left: none;
}
.navbar__mobile .offcanvas-toggle {
  background: transparent;
}
.navbar__mobile .offcanvas-toggle img {
  width: 36px;
}
.navbar__mobile .offcanvas-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.navbar__mobile .btn-close-menu {
  background: transparent;
}
.navbar__mobile .offcanvas {
  background-color: #000;
}
.navbar__mobile .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 16px;
}
.navbar__mobile .btn-store {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background-color: var(--clr-secondary);
  color: #fff;
  transition: all 0.3s ease;
}
.navbar__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.navbar__mobile .menu-item {
  display: flex;
}
.navbar__mobile .menu-item a {
  position: relative;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid #fff;
  text-transform: uppercase;
}
.navbar__mobile .menu-item a::after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='15' viewBox='0 0 8 15' fill='none'><path d='M1.08336 0.500001C0.934176 0.500001 0.784845 0.562205 0.67095 0.686456C0.443015 0.935115 0.443015 1.33778 0.67095 1.58628L6.09181 7.50001L0.670951 13.4137C0.443016 13.6624 0.443016 14.0651 0.670951 14.3136C0.898887 14.5621 1.26799 14.5622 1.49578 14.3136L7.32905 7.94992C7.55698 7.70126 7.55698 7.2986 7.32905 7.0501L1.49577 0.686456C1.38188 0.562205 1.23255 0.500001 1.08336 0.500001Z' fill='%23FFFFFF' stroke='%23FFFFFF'/></svg>");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
/* FOOTER */
#footer {
  background: #000;
}
#footer a {
  text-decoration: none;
  color: #919191;
}
#footer .links {
  color: #fff;
}
#footer .links .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 350px;
}
#footer .links .title {
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
#footer .links img {
  max-width: 60%;
}
#footer .links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
#footer .sociais {
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-self: end;
  gap: 16px;
}
#footer .sociais .sociais__redes {
  display: flex;
  gap: 16px;
}
#footer .sociais .sociais__redes img {
  max-width: 30px;
}
#footer .privacy__link {
  max-width: 180px;
  color: #919191;
  text-wrap: balance;
}
#footer .privacy__link a {
  text-decoration: underline;
}
#footer .logo__footer {
  display: flex;
  justify-content: end;
  align-items: end;
  flex: 1;
}
#footer .logo__footer img {
  max-width: 100%;
}
.copyright .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  border-top: 1px solid #cacaca;
  color: #fff;
}
.copyright .copy {
  max-width: 50%;
  color: #CACACA;
}
.copyright .copy-dev {
  transform-origin: 100% 50%;
  transition: all 0.3s ease;
}
.copyright .copy-dev:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  #footer .links .item {
    max-width: 100%;
  }
  #footer .sociais {
    align-self: start;
  }
  #footer .privacy__link {
    max-width: 100%;
  }
  #footer .logo__footer {
    justify-content: start;
    align-items: start;
  }
  #footer .links .row {
    flex-direction: column;
    gap: 32px !important;
  }
  #footer .links img:first-of-type {
    max-width: 200px;
  }
  .copyright .container-custom .wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  .copyright .copy {
    max-width: 100%;
  }
}
/* BLOCAGEM TEXTO IMAGEM */
.textoImagem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 600px;
}
.textoImagem .texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  gap: 16px;
}
.textoImagem .texto.esquerda {
  justify-self: flex-end;
  padding: 100px 100px 100px 10px;
}
.textoImagem .texto.direita {
  justify-self: flex-start;
  padding: 100px 10px 100px 100px;
}
.textoImagem .imagem {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.textoImagem .imagem .img-full {
  height: 0;
  width: 0;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 991px) {
  .textoImagem {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .textoImagem .texto.esquerda,
  .textoImagem .texto.direita {
    justify-self: center;
    padding: 32px 0;
  }
  .textoImagem .imagem .img-full {
    width: 100%;
    height: auto;
  }
}