:root {
  --clr-primary: #213253;
  --clr-primary-hover: #0d224a;
  --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-red {
  color: var(--clr-red) !important;
}
.bg-primary {
  background-color: var(--clr-primary) !important;
}
.bg-gray {
  background-color: var(--clr-gray) !important;
}

body {
  font-family: "Roboto", sans-serif;
}
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;
}
.container-xxl {
  max-width: 90% !important;
}
@media (max-width: 991px) {
  .container-xxl {
    max-width: 100% !important;
  }
}
/* LOADER */
body:not(.loaded) {
  overflow: hidden;
}
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  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;
  }
}
/* FOOTER */
#footer {
  background: #fff;
}
#footer a {
  text-decoration: none;
  color: var(--clr-primary);
}
#footer .links {
  color: var(--clr-primary);
}
#footer .bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--clr-primary);
}
#footer .links .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#footer .links .title {
  color: #981E27;
}
#footer .links img {
  max-width: 60%;
}
#footer .links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
#footer .sociais {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#footer .sociais .sociais__redes {
  display: flex;
  gap: 16px;
}
#footer .sociais .sociais__redes img {
  max-width: 36px;
}
#footer .canais {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#footer .canais .canais__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-primary);
}
#footer .canais .canais__wrapper img {
  max-width: 24px;
}
.copyright {
  background: #981E27;
}
.copyright .container-xxl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 12px;
  color: #fff;
}
.copyright .copy {
  max-width: 50%;
}
.copyright .copy-webco {
  max-height: 18px;
  transform-origin: 0% 100%;
  transition: all 0.3s ease;
}
.copyright .copy-delucca {
  transform-origin: 100% 50%;
  transition: all 0.3s ease;
}
.copyright .copy-webco:hover,
.copyright .copy-delucca:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  #footer .links .row {
    flex-direction: column;
    gap: 32px !important;
  }
  #footer .links img:first-of-type {
    max-width: 200px;
  }
  .copyright .container-xxl {
    flex-direction: column;
    gap: 8px;
  }
  .copyright .copy {
    max-width: 100%;
  }
}
/* NAVBAR */
.navbar {
  position: sticky;
  z-index: 999;
  top: 0;
  padding: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  background-color: var(--clr-primary);
}
.navbar .navbar-brand img {
  max-height: 44px;
  width: 100%;
}
.navbar a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.navbar a:hover {
  color: var(--clr-red);
}
.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;
}
.navbar__top ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 5%;
}
.navbar__top ul a {
  font-weight: 600;
}
.navbar .btn__wrapper {
  display: flex;
  height: 100%;
  gap: 24px;
}
.navbar .search__form {
  display: flex;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #39507c;
}
.navbar .search__input,
.navbar .search__submit {
  background: transparent;
  color: #fff;
}
.navbar .search__input {
  width: 100%;
}
.navbar .search__input::placeholder {
  color: #fff;
}
.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-red);
  color: #fff;
  transition: all 0.3s ease;
}
.navbar .btn__wrapper .btn-orcamento:hover {
  background: #fff;
  color: var(--clr-red);
  transform: scale(1.05);
}
/* NAVBAR MOBILE */
.navbar__mobile .navbar-brand img {
  max-height: 40px;
}
.navbar__mobile .offcanvas-toggle {
  background: transparent;
}
.navbar__mobile .offcanvas-toggle img {
  width: 48px;
}
.navbar__mobile .offcanvas {
  background-color: var(--clr-primary);
}
.navbar__mobile .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.navbar__mobile .btn-store {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background-color: var(--clr-red);
  color: #fff;
  transition: all 0.3s ease;
}
.navbar__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.navbar__mobile .menu-item {
    text-transform: uppercase;
    padding: 0.5rem 0;
}
