/*-- Use For Custom Styling --*/
@media (max-width: 768px) {
  .learn-more-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
  }
}

/* Parallax en desktop */
.learn-more-section {
  background-attachment: fixed;
  background-position: center;
}
.story-section {
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.story-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.story-section > * {
  position: relative;
  z-index: 2;
}

/* Desactivar parallax en móviles/tablets por compatibilidad */
@media (max-width: 1024px) {
  .learn-more-section,
  .story-section {
    background-attachment: scroll !important;
  }
}