.parallax-item.bg1 {
  background-image: url('../../assets/images/gallery/image_gallery_30.webp');
}

.parallax-item.bg2 {
  background-image: url('../../assets/images/gallery/image_gallery_17.webp');
}

.parallax-item.bg3 {
  background-image: url('../../assets/images/gallery/image_gallery_28.webp');
}

.parallax-section .parallax-item {
  min-height: 100dvh;

  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.parallax-section .parallax-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(47, 93, 80, 0) 55%,
      rgba(47, 93, 80, 0.12) 80%,
      rgba(47, 93, 80, 0.28) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Overlay superior - Calidez de luz filtrándose entre el follaje */
.parallax-section .parallax-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(47, 93, 80, 0) 55%,
      rgba(47, 93, 80, 0.06) 80%,
      rgba(47, 93, 80, 0.14) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.parallax-item .caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
}

.parallax-item .caption span.border {
  display: inline-block;
  color: #fff;
  padding: 0.65em 1.2em;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;

  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(47, 93, 80, 0.14);
  text-shadow: 0 1px 8px rgba(47, 93, 80, 0.55);
}