.scroll-disabled {
  overflow: hidden;
}

.preloader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c05);
  z-index: 4000;
}

.inner_marca {
  position: relative;
  height: 153px;
  width: 186px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  filter: invert(30%) sepia(0%) saturate(48%) hue-rotate(145deg) brightness(92%)
    contrast(90%);
  animation-name: animMarca;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: 100%;
}

.inner_marca_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inner_marca_img_reg {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 8px;
  height: 8px;
}

/*ANIMAÇÃO PRELOADER_______________________________*/
@keyframes animMarca {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* --------------------------------------------------------------- */
/* RESPONSIVO ---------------------------------------------------- */
/* --------------------------------------------------------------- */

@media (max-width: 1200px) {
  .inner_marca {
    height: 139px;
    width: 169px;
  }
}

@media (max-width: 696px) {
  .inner_marca {
    height: 115px;
    width: 140px;
  }
}

@media (max-width: 360px) {
  .inner_marca {
    height: 102px;
    width: 124px;
  }
}
