.parallax-section {
  height: 35vh;
  /* Altura completa de pantalla */
  overflow-x: hidden;
  /* Evita scroll horizontal */
}

.parallax-image {
  /* Imagen de fondo parallax */
  background-image: url('../../images/DPTech-Innovation-Park-EDEntrada.webp');
  height: 35vh;
  background-attachment: fixed;
  /* ¡MAGIA DEL PARALLAX! */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.4);
  /* Overlay sutil */
  padding: 2rem;
}

@supports not (background-attachment: fixed) {
  .parallax-image {
    background-attachment: scroll;
    /* Fallback móviles */
  }
}

/* Móviles - desactiva parallax */
@media (max-width: 768px) {
  .parallax-image {
    background-attachment: scroll;
  }
}
