/** Shopify CDN: Minification failed

Line 117:4 Unexpected "1fr"

**/
.dual-image-hero {
  margin-top: 0;
  margin-bottom: 0;
}

.dual-image-hero__container {
  margin: 0 auto;
}

/* Contenedor normal con page-width */
.dual-image-hero__container.page-width {
  max-width: var(--page-width);
  padding: 0 1.5rem;
}

/* Contenedor full width - sin padding */
.dual-image-hero--full-width .dual-image-hero__container--full-width {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: -20px;
}

.dual-image-hero--full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

.dual-image-hero__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

/* Desktop grid layouts */
@media screen and (min-width: 750px) {
  /* Grid para 1 item */
  .dual-image-hero__grid--1-items {
    grid-template-columns: 1fr;
  }
  
  /* Grid para 2 items - Sistema más simple y directo */
  .dual-image-hero__grid--2-items {
    grid-template-columns: 1fr 1fr; /* Fallback 50/50 */
  }
  
  /* Combinaciones específicas usando :has() para mayor compatibilidad */
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-1:first-child) {
    grid-template-columns: 1fr 11fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-2:first-child) {
    grid-template-columns: 2fr 10fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-3:first-child) {
    grid-template-columns: 3fr 9fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-4:first-child) {
    grid-template-columns: 4fr 8fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-5:first-child) {
    grid-template-columns: 5fr 7fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-6:first-child) {
    grid-template-columns: 6fr 6fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-7:first-child) {
    grid-template-columns: 7fr 5fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-8:first-child) {
    grid-template-columns: 8fr 4fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-9:first-child) {
    grid-template-columns: 9fr 3fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-10:first-child) {
    grid-template-columns: 10fr 2fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-11:first-child) {
    grid-template-columns: 11fr 1fr;
  }
  
  .dual-image-hero__grid--2-items:has(.dual-image-hero__item--width-12:first-child) {
    grid-template-columns: 1fr;
  }
  
  /* Para 3 o más items */
  .dual-image-hero__grid--3-items,
  .dual-image-hero__grid--4-items,
  .dual-image-hero__grid--5-items,
  .dual-image-hero__grid--6-items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* En mobile siempre stack vertical */
@media screen and (max-width: 749px) {
  .dual-image-hero__grid {
    grid-template-columns: 1fr !important;
  }
}fr 1fr; /* Fallback */
  }
}

/* En mobile siempre stack vertical */
@media screen and (max-width: 749px) {
  .dual-image-hero__grid {
    grid-template-columns: 1fr !important;
  }
}

.dual-image-hero__item {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  height: 90vh;
}

@media screen and (min-width: 750px) {
  .dual-image-hero__item {
    min-height: 750px;
    height: 750px;
  }
}

@media screen and (min-width: 990px) {
  .dual-image-hero__item {
    min-height: calc(80vh + 100px);
    height: calc(80vh + 100px);
    max-height: 1000px;
  }
}

.dual-image-hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dual-image-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}

/*.dual-image-hero__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.dual-image-hero__item:hover .dual-image-hero__image--hover {
  opacity: 1;
}

.dual-image-hero__item:hover .dual-image-hero__image--primary {
  opacity: 0;
}*/

.dual-image-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
  padding: 3rem 2rem;
}

@media screen and (min-width: 750px) {
  .dual-image-hero__content {
    padding: 4rem 3rem;
  }
}

@media screen and (min-width: 990px) {
  .dual-image-hero__content {
    padding: 5rem 4rem;
  }
}

/* Content positioning */
.dual-image-hero__content--top {
  align-items: flex-start;
}

.dual-image-hero__content--center {
  align-items: center;
}

.dual-image-hero__content--bottom {
  align-items: flex-end;
}

/* Text alignment */
.dual-image-hero__content--left {
  justify-content: flex-start;
  text-align: left;
}

.dual-image-hero__content--center {
  justify-content: center;
  text-align: center;
}

.dual-image-hero__content--right {
  justify-content: flex-end;
  text-align: right;
}

.dual-image-hero__content-inner {
  max-width: 100%;
  color: rgb(var(--color-foreground));
}

.dual-image-hero__subheading {
  margin: 1rem 0 0 0;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
  opacity: 0.9;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .dual-image-hero__subheading {
    font-size: 0.8rem;
  }
}

.dual-image-hero__heading {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02rem;
  line-height: 1.1;
  text-transform: uppercase;
}

@media screen and (min-width: 750px) {
  .dual-image-hero__heading {
    font-size: 4rem;
  }
}

@media screen and (min-width: 990px) {
  .dual-image-hero__heading {
    font-size: 1.8rem;
  }
}

.dual-image-hero__content .button {
  margin-top: 2rem;
  min-width: 15rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.0rem 1.0rem;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 0.1rem solid transparent;
}

/* Overlay effect for better text readability */
.dual-image-hero__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  transition: background-color 0.3s ease;
}

/*.dual-image-hero__item:hover .dual-image-hero__content::before {
  background: rgba(0, 0, 0, 0.4);
}*/

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .dual-image-hero__item:not(:last-child) {
    margin-bottom: 0;
  }
  
  .dual-image-hero__heading {
    font-size: 1.8rem;
  }
  
  .dual-image-hero__subheading {
    font-size: 0.7rem;
  }
}

/* Focus states for accessibility */
.dual-image-hero__content .button:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
              0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Smooth transitions for all interactive elements */
.dual-image-hero__item * {
  transition: all 0.3s ease;
}

/* Color scheme support */
.dual-image-hero .dual-image-hero__content-inner {
  color: rgb(var(--color-foreground));
}

/* Color scheme support - Botones */
.dual-image-hero .button--primary {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-color: rgb(var(--color-button));
}

.dual-image-hero .button--primary:hover {
  background-color: rgb(var(--color-button-text));
  color: rgb(var(--color-button));
  border-color: rgb(var(--color-button));
}

.dual-image-hero .button--secondary {
  border-color: rgb(var(--color-foreground));
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.dual-image-hero .button--secondary:hover {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}