@charset "UTF-8";
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  font-size: 0.8rem;
}

/* Scroll */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(111, 111, 111) rgba(0, 0, 0, 0);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: rgb(111, 111, 111);
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  border: none;
}

html {
  scrollbar-width: thin;
  scroll-behavior: smooth !important;
}

/* Sombras textos */
.text-shadow-sm {
  text-shadow: 1px 1px 3px #000000;
}

.text-shadow {
  text-shadow: 2px 2px 5px #000000;
}

.text-shadow-lg {
  text-shadow: 5px 5px 10px #000000;
}

header .dropdown-menu {
  font-size: 0.9rem !important;
}

.navbar-brand {
  font-family: "Kolker Brush";
  font-size: 40px;
  line-height: 0.5;
  height: 100%;
}

.font-brand {
  font-family: "Kolker Brush";
}

:root, [data-bs-theme=light] {
  --bs-info: #0d6ff0;
  --bs-info-rgb: 5, 103, 220;
}

[data-bs-theme=dark] {
  --bs-info: #0dcaf0;
  --bs-info-rgb: 13, 202, 240;
}

.video-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container video {
  height: 100vh;
  width: auto;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 20px;
  color: white;
  text-align: left;
  z-index: 1;
  user-select: none;
}
.overlay-text .slogan-text {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 100;
  text-shadow: 2px 2px 5px #000000, 5px 5px 10px #000000, 2px 2px 20px #000000;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.overlay-text .slogan-text:hover {
  color: orange;
}
.overlay-text .slogan-text::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: orange;
  box-shadow: 0px 0px 7px #000;
  transition: width 0.5s ease;
}
.overlay-text:hover .slogan-text::after {
  width: 100%;
}

#hero-carousel img {
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.5s ease;
}
#hero-carousel img:hover {
  filter: brightness(1);
}

.moving-banner {
  flex-shrink: 0;
  animation: scrollBanner infinite linear;
  animation-duration: 20s;
  white-space: nowrap;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.h-wider {
  min-height: 240px;
  max-height: 39.8406374502vw;
}

.swiper-slide {
  max-height: 50%;
  max-width: fit-content !important;
}

/* Producto */
.product-item {
  transition: all 0.3s ease-out, border 0s;
  transition-property: all !important; /* Override AOS */
  z-index: 1 !important;
}
.product-item .buy-button {
  overflow: hidden;
  position: absolute;
  top: calc(100% - 2px) !important;
  left: 0;
  right: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0 solid var(--bs-border-color);
  border-left-width: 1px;
  border-right-width: 1px;
  border-color: var(--bs-border-color-translucent);
  border-style: groove;
  transition: height 0.2s ease-in-out;
}
.product-item .buy-button::before {
  transition: height 1.15s ease-in-out, opacity 0.5s ease !important;
}
.product-item:hover {
  transform: scale(1.05);
  z-index: 2 !important;
}
.product-item:hover .buy-button {
  border-bottom: 1px solid var(--bs-border-color);
  height: 3.5rem;
}

/* Card item */
.card-image-container {
  position: relative;
  overflow: hidden;
}
.card-image-container .hover-image {
  opacity: 0 !important;
}
.card-image-container:hover .hover-image {
  opacity: 1 !important;
}
.card-image-container:hover img.main-image, .card-image-container:hover img.hover-image {
  transform: scale(1.1);
}
.card-image-container img {
  transition: transform 0.5s, opacity 0.15s ease-in-out !important;
}

.card-body {
  font-size: 0.8em;
}

/* Filtros */
.range-values {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.range-label {
  margin-bottom: 1rem;
}

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