/*!
 * Preboot v2
 * LESS version by @mdo, http://getpreboot.com
 *
 * Open sourced under MIT license by @mustangostang.
 * Some variables and mixins from Bootstrap (Apache 2 license).
 */
a[href=""] {
  display: none !important;
}

.no-wrap {
  white-space: nowrap;
}

.pointer {
  cursor: pointer;
}

.object-fit-cover {
  object-fit: cover;
}

.bg-dark-50 {
  background-color: rgba(0, 0, 0, 0.025);
}

#site {
  background-color: whitesmoke;
}

#site-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

#site-header .content {
  background-position: center;
  background-size: cover;
}
#site-header .menu ul, #site-header .menu li {
  margin: 0;
  padding: 0;
  position: relative;
}
#site-header .menu li:hover > .ul-submenu {
  display: block;
}
#site-header .menu .ul-submenu {
  background: var(--default-color);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  min-width: 100%;
  text-align: left;
}
#site-header .menu .ul-submenu li {
  background-color: rgba(0, 0, 0, 0.15);
  display: block;
}
#site-header .menu .ul-submenu .ul-submenu {
  top: 0;
  left: 100%;
}
#site-header .menu .ul-submenu .ul-submenu li {
  background-color: rgba(0, 0, 0, 0.25);
}
#site-header .menu ul {
  display: block;
}
#site-header .menu li {
  display: inline-block;
}
#site-header .menu a {
  display: block;
  line-height: 60px;
  padding: 0 20px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}
#site-header .menu a:hover, #site-header .menu a.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-mobile {
  position: fixed;
  left: -270px;
  top: 0;
  width: 270px;
  z-index: 999;
  background-color: whitesmoke;
  height: 100%;
  overflow: auto;
  -webkit-transition: left 0.3s ease-in-out;
  -moz-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}
.menu-mobile.show-menu {
  left: 0;
}
.menu-mobile ul, .menu-mobile li {
  display: block;
  margin: 0;
  padding: 0;
}
.menu-mobile li:not(:last-child) {
  border-bottom: 1px #d4d4d4 dashed;
}
.menu-mobile a {
  color: #333;
  text-transform: uppercase;
  display: block;
  line-height: 45px;
  padding: 0 15px;
}

.btn-inputfile {
  position: relative;
  overflow: hidden;
}
.btn-inputfile input {
  opacity: 0;
  filter: "alpha(opacity=0)";
  position: absolute;
  left: 0;
  top: 0;
}

.page-title {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.35);
}
.page-title h1 {
  font-weight: bold;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .page-title h1 {
    font-size: 1.8rem;
  }
}
.page-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
}
.page-title.text-center:after {
  margin: 0 auto;
}

.page-texto img {
  max-width: 100% !important;
  height: auto !important;
}

.tpl-video {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  min-height: 100%;
  background-color: whitesmoke;
}
.tpl-video img {
  object-fit: cover;
}
.tpl-video .titulo {
  font-size: 15px;
  text-transform: uppercase;
}

.owl-theme {
  position: relative;
}
.owl-theme .owl-item img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (min-width: 768px) {
  .owl-theme .owl-item img {
    max-height: calc(100vh - 280px - 38px - 60px);
  }
}
.owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next {
  position: absolute;
  width: 100px;
  height: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  top: 0;
  font-size: 35px;
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 768px) {
  .owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next {
    display: none;
  }
}
.owl-theme .owl-nav .owl-prev:hover, .owl-theme .owl-nav .owl-next:hover {
  color: rgba(255, 255, 255, 0.75);
}
.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.owl-theme .owl-nav .owl-next {
  right: 0;
}
.owl-theme .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  margin: 0;
}
.owl-theme .owl-dots .owl-dot {
  margin: 0 5px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
}
.owl-theme .owl-dots .owl-dot.active {
  background-color: rgba(255, 255, 255, 0.75);
}
.owl-theme .owl-dots .owl-dot:hover {
  background-color: white;
}

.instagram-post {
  background-color: black;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
}
.instagram-post .informacoes {
  color: white;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: "alpha(opacity=0)";
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.instagram-post img {
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.instagram-post:hover .informacoes {
  opacity: 1;
  filter: "alpha(opacity=100)";
}

.inc-publicidade {
  background-position: center;
  background-size: cover;
}
.inc-publicidade hr {
  width: 30px;
  border-top-width: 3px;
}
.inc-publicidade .inc-publicidade-title {
  font-weight: bold;
}
.inc-publicidade .inc-publicidade-subtitle {
  font-style: italic;
}
.inc-publicidade .inc-publicidade-content {
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 15px;
}

.page-categorias {
  border-right: 3px solid rgba(0, 0, 0, 0.05);
}
.page-categorias ul, .page-categorias li {
  display: block;
  margin: 0;
  padding: 0;
}
.page-categorias a {
  display: block;
  text-decoration: none;
  padding: 0 15px;
  margin: 0;
  line-height: 30px;
}
.page-categorias a i {
  opacity: 0;
}
.page-categorias a:hover, .page-categorias a.active {
  background-color: var(--default-color);
  color: white;
}
.page-categorias a:hover i, .page-categorias a.active i {
  opacity: 1;
}
.page-categorias ul.principal > li {
  margin-bottom: 15px !important;
}
.page-categorias ul.principal > li > a {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}
.page-categorias ul.principal > li > a i {
  display: none;
}
.page-categorias .sub a {
  padding-left: 15px;
}

.tpl-produto {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.25);
}
.tpl-produto .titulo {
  font-size: 20px;
}
.tpl-produto .valor {
  font-size: 18px;
}
.tpl-produto .valor span {
  font-size: 80%;
}
.tpl-produto .valor.tem-desconto {
  font-size: 12px;
  text-decoration: line-through;
}
.tpl-produto .valor:not(.tem-desconto) {
  font-weight: bold;
}
.tpl-produto .valor.valor-desconto {
  font-weight: bold;
}
.tpl-produto:hover {
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#site-footer {
  border-top: 2px solid rgba(0, 0, 0, 0.35);
  background-color: var(--default-color);
}
#site-footer a {
  color: inherit;
}
#site-footer .bg-direitos {
  background-color: rgba(0, 0, 0, 0.1);
}

.tpl-noticia {
  border: 1px solid rgba(0, 0, 0, 0.07);
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px;
  border-radius: 4px;
}
.tpl-noticia .tpl-noticia-title {
  font-size: 25px;
  text-decoration: none;
}
.tpl-noticia .tpl-noticia-descricao {
  font-size: 14px;
}

.modal .close {
  cursor: pointer;
}

.page-loading:before, .pre-loading:before {
  display: block;
  background-color: rgba(0, 0, 0, 0.35);
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-image: url("../img/loading.svg");
  background-position: center;
  background-size: 100px;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=site.css.map */
