/** Shopify CDN: Minification failed

Line 179:18 Unexpected "{"
Line 179:27 Expected ":"
Line 180:18 Unexpected "{"
Line 180:27 Expected ":"

**/
.image-carousel-baluka {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.image-carousel-baluka__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-carousel-baluka .img-banner-2 {
  height: 100%;
}

.image-carousel-baluka .img-banner-2__inner {
  position: relative !important;
  top: auto !important;
  height: 100% !important;
  overflow: hidden !important;
}

.image-carousel-baluka__slide {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity .45s ease;
}

.image-carousel-baluka__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.image-carousel-baluka__arrow {
  position: absolute;
  top: 50%;
  z-index: 50;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  padding: 0;
}

.image-carousel-baluka__arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  display: block;
  margin: auto;
}

.image-carousel-baluka__arrow--prev {
  left: 18px;
}

.image-carousel-baluka__arrow--prev::before {
  transform: rotate(-135deg);
}

.image-carousel-baluka__arrow--next {
  right: 18px;
}

.image-carousel-baluka__arrow--next::before {
  transform: rotate(45deg);
}

/* Evita cambios raros de color/hover en el fondo */
.image-carousel-baluka .img-banner-2__pr,
.image-carousel-baluka .img-banner-2__bg,
.image-carousel-baluka .xo-image,
.image-carousel-baluka .img-banner-2__pr img {
  transition: none !important;
}

.image-carousel-baluka .img-banner-2__pr:hover,
.image-carousel-baluka .img-banner-2__bg:hover,
.image-carousel-baluka .xo-image:hover,
.image-carousel-baluka .img-banner-2__pr:hover img {
  filter: inherit !important;
}

/* Título: revelado por letras parecido al original */
.image-carousel-baluka .img-banner-2__heading {
  overflow: visible !important;
}

.image-carousel-baluka .img-banner-2__word {
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
}

.image-carousel-baluka .img-banner-2__char {
  display: inline-block;
  transform: translateY(200%);
  will-change: transform;
}

.image-carousel-baluka__slide.is-active .img-banner-2__char {
  animation: imageCarouselTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index, 0) * 0.035s);
}

.image-carousel-baluka__slide:not(.is-active) .img-banner-2__char {
  animation: none;
  transform: translateY(200%);
}

@keyframes imageCarouselTitleReveal {
  from {
    transform: translateY(200%);
  }

  to {
    transform: translateY(0%);
  }
}

.image-carousel-baluka .img-banner-2__description,
.image-carousel-baluka .img-banner-2__button {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}

.image-carousel-baluka__slide.is-active .img-banner-2__description {
  animation: balukaFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.1s;
}

.image-carousel-baluka__slide.is-active .img-banner-2__button {
  animation: balukaFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.45s;
}

.image-carousel-baluka__slide:not(.is-active) .img-banner-2__description,
.image-carousel-baluka__slide:not(.is-active) .img-banner-2__button {
  animation: none;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}

@keyframes balukaFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
#shopify-section-{{ section.id }} .image-carousel-baluka .img-banner-2__bg img,
#shopify-section-{{ section.id }} .image-carousel-baluka .img-banner-2__bg .xo-image {
  transform: scale(var(--slide-image-zoom, 1)) !important;
  transition: transform .6s ease;
  transform-origin: center center;
}