/* ═══════════════════════════════════════════
   3D PRINTING & LASER ENGRAVING PAGE STYLES
   Specific to pages/3dLaser.html
   Primary color: #ff2424 (--laser-red)
   Background: img/background.jpg
   ═══════════════════════════════════════════ */

:root {
  --laser-red: #ff2424;
  --laser-red-dark: #d91e1e;
  --it-blue: #008fb5;
  --dark: #1a1a2e;
  --light: #f5f6fa;
  --white: #ffffff;
  --text: #2d3436;
  --text-muted: #636e72;
  --radius: 10px;
  --transition: 0.25s ease;
}

/* ── Fondo de vídeo fijo legacy — oculto (ahora el vídeo vive dentro del hero) ── */
.laser-bg-video,
.laser-bg-overlay {
  display: none !important;
}

/* ── Navbar negro exclusivo 3D Laser + hover rojo + botón Get a Quote rojo brillante ── */
.navbar {
  background: #000000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.88);
}

.navbar-links a:hover {
  color: var(--laser-red);
}

.navbar-links a::after {
  background: var(--laser-red);
}

.nav-toggle span {
  background: var(--white);
}

.btn-get-quote {
  background: var(--laser-red);
  border-color: var(--laser-red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 36, 36, 0.45), 0 2px 8px rgba(255, 36, 36, 0.30);
}

.btn-get-quote:hover {
  background: var(--laser-red-dark);
  border-color: var(--laser-red-dark);
  box-shadow: 0 6px 22px rgba(255, 36, 36, 0.65), 0 4px 12px rgba(255, 36, 36, 0.45), 0 0 18px rgba(255, 36, 36, 0.35);
  transform: translateY(-1px);
}

/* Hover azul para Home / IT Support / Portfolio en navbar oscuro (solicitado) */
.navbar-links a[href*="index"]:hover,
.navbar-links a[href*="itSupport"]:hover,
.navbar-links a[href*="portfolio"]:hover {
  color: #008fb5;
}

.navbar-links a[href*="index"]:hover::after,
.navbar-links a[href*="itSupport"]:hover::after,
.navbar-links a[href*="portfolio"]:hover::after {
  background: #008fb5;
}

/* Botón Get a Quote hover azul en navbar oscuro */
.btn-get-quote:hover {
  background: #008fb5;
  border-color: #008fb5;
  box-shadow: 0 5px 16px rgba(0, 143, 181, 0.55), 0 3px 10px rgba(0, 143, 181, 0.35), 0 0 12px rgba(0, 143, 181, 0.25);
}

/* ── 3D Laser Hero 2-col invertido (video izquierda, texto derecha) ──
   Inverso al contact/itSupport (allí copy-izq/video-der) para dinamismo.
   Video en cuadro con sombreado, como en el antiguo contact.html. */
.laser-hero {
  position: relative;
  background: var(--light);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laser-hero-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.laser-hero-visual {
  opacity: 0;
  animation: fade-from-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
  order: 1;
}

.laser-hero-visual video {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #000;
  display: block;
  overflow: hidden;
}

.laser-hero-copy {
  text-align: left;
  opacity: 0;
  animation: fade-from-right 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
  order: 2;
}

.laser-hero-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 0 1rem 0;
  color: var(--laser-red);
}

.laser-hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.laser-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.laser-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.laser-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.laser-hero-btn:hover {
  transform: translateY(-2px);
}

.laser-hero-btn svg {
  width: 20px;
  height: 20px;
}

.laser-hero-btn-quote {
  background: var(--laser-red);
  color: var(--white);
  border-color: var(--laser-red);
  box-shadow: 0 4px 16px rgba(255, 36, 36, 0.35);
}

.laser-hero-btn-quote:hover {
  background: var(--white);
  color: var(--laser-red);
  border-color: var(--laser-red);
  box-shadow: 0 6px 20px rgba(255, 36, 36, 0.35), 0 4px 14px rgba(255, 36, 36, 0.25);
}

.laser-hero-btn-portfolio {
  background: var(--white);
  color: #008fb5;
  border-color: #008fb5;
  box-shadow: 0 4px 16px rgba(0, 143, 181, 0.22), 0 2px 8px rgba(0, 143, 181, 0.18);
}

.laser-hero-btn-portfolio:hover {
  background: #008fb5;
  color: var(--white);
  border-color: #008fb5;
  box-shadow: 0 6px 20px rgba(0, 143, 181, 0.35), 0 4px 14px rgba(0, 143, 181, 0.25);
}

.laser-hero-btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.laser-hero-btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* Compatibilidad: contenido centrado legacy */
.laser-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 2rem;
}

/* ── Our Services (estilo IT Support, fondo centrado detrás) ── */
.laser-services {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
  background: var(--light);
  isolation: isolate;
}

/* Fondo centrado detrás de Our Services — imágenes 1.png/2.png/3.png */
.laser-services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.laser-services-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.9);
}

.laser-services-bg-img.is-active {
  opacity: 0.90;
  transform: scale(1);
}

.laser-services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,246,250,0.68) 0%, rgba(245,246,250,0.52) 50%, rgba(245,246,250,0.72) 100%);
}

.laser-services-content {
  position: relative;
  z-index: 1;
}

.laser-services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.75rem;
}

.laser-services-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 0.65rem;
}

.laser-services-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.laser-services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.laser-service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--laser-red);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07), 0 3px 10px rgba(255, 36, 36, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.laser-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1), 0 6px 18px rgba(255, 36, 36, 0.12);
}

.laser-service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.laser-service-card-header svg {
  width: 28px;
  height: 28px;
  color: var(--laser-red);
  flex-shrink: 0;
}

.laser-service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.laser-service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-left: 2.4rem;
}

.laser-service-card.reveal {
  animation: none !important;
}

/* Legacy catalog — mantenido por compatibilidad pero ya no se usa (scrollytelling eliminado) */
.laser-catalog {
  position: relative;
  z-index: 2;
  height: 100vh;
  padding: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laser-catalog-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3rem;
}

/* ── Scrollytelling: contenedor pegajoso ──
   El .laser-story llena el 100% del .laser-catalog (que mide 100vh)
   y centra su contenido verticalmente. Así, cuando la sección entra
   en viewport (atrapada por IntersectionObserver), la imagen + la
   fila activa siempre se ven completas y centradas. */
.laser-story {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1rem;
}

/* Marco de la imagen — todas las imágenes se apilan en la misma
   posición absoluta; sólo la del paso activo (clase .is-active)
   es visible. El frame fija el alto para que las imagenes no
   "salten" al cambiar.
   El max-width lo controla el JS (448px = 80% fijo en todos
   los pasos). La transition hace que el cambio sea suave. */
.laser-story-img-frame {
  position: relative;
  width: 100%;
  max-width: 448px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  background: #000;
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.laser-story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.laser-story-img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Filas MODO SLIDESHOW: solo una visible a la vez.
   Cada fila está colapsada (opacity:0 + max-height:0) salvo la que
   tenga .is-active, que se expande. Así el contenedor .laser-story
   -rows` sólo "mide" la altura de la fila activa y el layout no
   salta al pasar de una fila a otra (todas miden lo mismo). */
.laser-story-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.laser-story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.laser-story-row.is-active {
  opacity: 1;
  transform: translateY(0);
  max-height: 600px;
}

/* Las reglas viejas del grid/column ya no se usan — placeholder
   para no romper otros posibles selects. */
.laser-catalog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.laser-catalog-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.laser-catalog-card {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--laser-red);
  padding: 1.5rem 1.5rem;
  box-shadow: 0 4px 14px rgba(255, 36, 36, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.laser-catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 36, 36, 0.22);
}

.laser-catalog-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.laser-catalog-card-header svg {
  width: 28px;
  height: 28px;
  color: var(--laser-red);
  flex-shrink: 0;
}

.laser-catalog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.laser-catalog-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-left: 2.35rem;
}

/* ── Examples Section ── */
.laser-examples {
  padding: 5rem 2rem;
  background: var(--white);
}

.laser-examples-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3rem;
}

.laser-examples-scroll {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--laser-red) var(--light);
}

.laser-examples-scroll::-webkit-scrollbar {
  height: 6px;
}

.laser-examples-scroll::-webkit-scrollbar-track {
  background: var(--light);
  border-radius: 3px;
}

.laser-examples-scroll::-webkit-scrollbar-thumb {
  background: var(--laser-red);
  border-radius: 3px;
}

.laser-example-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--laser-red);
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(255, 36, 36, 0.1);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.laser-example-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 36, 36, 0.22);
}

.laser-example-card svg {
  width: 36px;
  height: 36px;
  color: var(--laser-red);
  margin-bottom: 0.75rem;
}

.laser-example-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.laser-example-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Custom Quote Form ── */
.laser-form-section {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  background: var(--light);
}

.laser-form-container {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.laser-form-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--laser-red);
  margin-bottom: 2.5rem;
}

.laser-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.laser-form-row {
  display: flex;
  gap: 1.25rem;
}

.laser-form-row .laser-form-group {
  flex: 1;
}

.laser-form-group {
  position: relative;
}

.laser-form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--laser-red);
  pointer-events: none;
  z-index: 1;
}

.laser-form-group input,
.laser-form-group select,
.laser-form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.laser-form-group input::placeholder,
.laser-form-group textarea::placeholder {
  color: var(--text-muted);
}

.laser-form-group input:focus,
.laser-form-group select:focus,
.laser-form-group textarea:focus {
  outline: none;
  border-color: var(--laser-red);
  box-shadow: 0 0 0 3px rgba(255, 36, 36, 0.15);
}

.laser-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Date input */
.laser-form-group input[type="date"] {
  color: var(--text);
}

.laser-form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(20%) sepia(90%) saturate(3000%) hue-rotate(350deg) brightness(90%);
}

/* File input */
.laser-form-group input[type="file"] {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.laser-form-group input[type="file"]::file-selector-button {
  margin-right: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--laser-red);
  border-radius: 6px;
  background: var(--laser-red);
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.laser-form-group input[type="file"]::file-selector-button:hover {
  background: var(--laser-red-dark);
}

/* Select dropdown */
.laser-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2424' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.laser-form-submit {
  margin-top: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--laser-red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 36, 36, 0.35);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.laser-form-submit:hover {
  background: var(--laser-red-dark);
  box-shadow: 0 6px 20px rgba(255, 36, 36, 0.5);
  transform: translateY(-1px);
}

/* ── Marketing Consent Checkbox ── */
.laser-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
}

.laser-consent-check {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.laser-consent-check input[type="checkbox"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

.laser-consent-check svg {
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  color: var(--laser-red);
  pointer-events: none;
  opacity: 0.2;
  transition: opacity var(--transition);
}

.laser-consent-check input[type="checkbox"]:checked ~ svg {
  opacity: 1;
}

.laser-consent-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.laser-consent-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.laser-consent-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Final CTA ── */
.laser-cta {
  position: relative;
  z-index: 2;
  background: var(--dark);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

.laser-cta-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--laser-red);
}

.laser-cta-text {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.laser-cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--laser-red);
  color: var(--white);
  border: 2px solid var(--laser-red);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(255, 36, 36, 0.4);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.laser-cta-btn:hover {
  background: var(--laser-red-dark);
  box-shadow: 0 6px 20px rgba(255, 36, 36, 0.6);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .laser-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .laser-hero-copy {
    text-align: center;
    order: 2;
  }

  .laser-hero-visual {
    order: 1;
  }

  .laser-hero-icon {
    margin: 0 auto 1rem auto;
  }

  .laser-hero-buttons {
    justify-content: center;
  }

  .laser-hero-title {
    font-size: 1.9rem;
  }

  .laser-hero-visual video {
    max-width: 520px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .laser-hero-title {
    font-size: 1.65rem;
  }

  .laser-hero-subtitle {
    font-size: 1rem;
  }

  .laser-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .laser-hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .laser-catalog {
    height: 100vh;
    padding: 0;
  }

  .laser-catalog-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .laser-catalog-grid {
    flex-direction: column;
  }

  /* Scrollytelling responsive */
  .laser-story-row {
    grid-template-columns: 1fr;
  }

  .laser-story-img-frame {
    max-width: 100%;
  }

  .laser-examples {
    padding: 3rem 1rem;
  }

  .laser-examples-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .laser-examples-scroll {
    gap: 1rem;
  }

  .laser-example-card {
    flex: 0 0 200px;
  }

  .laser-form-section {
    padding: 3rem 1rem;
  }

  .laser-form-container {
    padding: 1.5rem 1.25rem;
  }

  .laser-form-title {
    font-size: 1.5rem;
  }

  .laser-form-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .laser-consent {
    flex-direction: column;
    gap: 0.5rem;
  }

  .laser-cta {
    padding: 3rem 1rem;
  }

  .laser-cta-text {
    font-size: 1.3rem;
  }

  .laser-services {
    padding: 3rem 1rem;
  }

  .laser-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════
   Scrollytelling — bloqueo del body mientras se está dentro
   ══════════════════════════════════════════════════════════════════ */
body.laser-story-locked {
  overflow: hidden;
}