/* =========================================
   CSS Variables
   ========================================= */
:root {
  --c-black:      #000000;
  --c-dark:       #1d1d1f;
  --c-mid:        #6e6e73;
  --c-surface:    #f5f5f7;
  --c-white:      #ffffff;
  --c-blue:       #0071e3;
  --c-blue-hover: #0077ed;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 52px;
  --ease: 0.3s ease;
  --gap: 12px;
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--c-white);
  color: var(--c-dark);
  line-height: 1.47059;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* =========================================
   Navbar
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(29, 29, 31, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--ease);
}

.navbar.scrolled {
  background: rgba(29, 29, 31, 0.96);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.nav-logo { flex-shrink: 0; }

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links > li > a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  transition: color var(--ease);
}

.nav-links > li > a:hover { color: var(--c-white); }

/* ── Galería Dropdown ── */
.nav-item--dropdown { position: relative; }

.nav-dropdown-toggle { cursor: pointer; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--c-white);
  border-radius: 10px;
  min-width: 170px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  padding: 6px 0;
  z-index: 300;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 0.82rem;
  color: var(--c-dark);
  transition: background var(--ease);
}

.nav-dropdown a:hover {
  background: var(--c-surface);
  color: var(--c-black);
}

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--ease), border-color var(--ease);
}

.lang-toggle:hover {
  opacity: 0.75;
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-flag-icon { font-size: 1rem; line-height: 1; }

.lang-code {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* CTA button */
.nav-cta-btn {
  background: var(--c-white);
  color: var(--c-black);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 980px;
  transition: background var(--ease);
  white-space: nowrap;
}

.nav-cta-btn:hover { background: rgba(255, 255, 255, 0.85); }

/* Mobile-only sticky CTA */
.nav-cta-btn--mobile { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--ease);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile {
  display: none;
  background: rgba(22, 22, 23, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile.is-open { display: block; }

.nav-mobile > ul { padding: 4px 22px 16px; }

.nav-mobile > ul > li > a,
.nav-mobile-dropdown-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-family: var(--font);
  padding: 13px 0;
  cursor: pointer;
  transition: color var(--ease);
}

.nav-mobile > ul > li:last-child > a,
.nav-mobile > ul > li:last-child > button { border-bottom: none; }

.nav-mobile > ul > li > a:hover,
.nav-mobile-dropdown-toggle:hover { color: var(--c-white); }

/* Mobile Galería sub-dropdown */
.nav-mobile-dropdown {
  display: none;
  padding: 4px 0 8px 16px;
}

.nav-mobile-dropdown.is-open { display: block; }

.nav-mobile-dropdown a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--ease);
}

.nav-mobile-dropdown li:last-child a { border-bottom: none; }
.nav-mobile-dropdown a:hover { color: rgba(255, 255, 255, 0.95); }

/* Mobile lang toggle row */
.nav-mobile-lang-item { padding: 12px 0; }

.lang-toggle--mobile {
  border-color: rgba(255, 255, 255, 0.2);
  padding: 7px 12px;
  gap: 8px;
}

.lang-toggle-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 500;
  border-radius: 980px;
  padding: 10px 22px;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), opacity var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--white {
  background: var(--c-white);
  color: var(--c-black);
}
.btn--white:hover { background: rgba(255, 255, 255, 0.86); }

.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-white:hover { border-color: var(--c-white); }

.btn--blue {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn--blue:hover { background: var(--c-blue-hover); }

.btn--link-light {
  background: transparent;
  color: var(--c-white);
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}
.btn--link-light:hover { text-decoration: underline; }

.btn--link-dark {
  background: transparent;
  color: var(--c-blue);
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}
.btn--link-dark:hover { text-decoration: underline; }

.btn--lg {
  font-size: 1.05rem;
  padding: 14px 32px;
}

/* Hero CTA scale on hover */
.btn--hero:hover {
  transform: scale(1.05);
  opacity: 0.92;
}

/* =========================================
   Cards — Hero
   ========================================= */
.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px 0;
  min-height: 500px;
}

.card--dark  { background: var(--c-black); }
.card--light { background: var(--c-surface); }
.card--full  { grid-column: 1 / -1; }

.card--hero {
  min-height: 620px;
  justify-content: center;
  padding: 80px 24px;
}

.card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.48) 100%);
}

.card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.card__body--center { justify-content: center; }

/* Typography */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.75); }
.eyebrow--dark  { color: var(--c-mid); }

.card__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
}
.card__title--light { color: var(--c-white); }
.card__title--dark  { color: var(--c-dark); }

.card__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.42;
  margin-top: 2px;
}
.card__sub--light { color: rgba(255, 255, 255, 0.82); }
.card__sub--dark  { color: var(--c-mid); }

.card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

/* Card image (grid cards) */
.card__img-wrap {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  width: 100%;
  max-width: 540px;
}

.card__img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.card__img-wrap--wide { max-width: 700px; }

.card__img-wrap--wide img { height: 380px; }

/* Hero single CTA */
.hero-cta { margin-top: 40px; }

/* Reveal animation */
.reveal-hero {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/* =========================================
   Estilos Grid
   ========================================= */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  padding: var(--gap);
  background: var(--c-white);
}

/* =========================================
   Sección Promoción
   ========================================= */
.promo {
  background: var(--c-black);
  padding: 88px 40px;
}

.promo__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.promo__text {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo__title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-top: 4px;
}

.promo__sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.promo__btn {
  margin-top: 18px;
  align-self: flex-start;
}

.promo__img-wrap {
  flex: 2;
  border-radius: 18px;
  overflow: hidden;
}

.promo__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* =========================================
   TPG — Galería carousel estilo original
   ========================================= */
.tpg {
  background: var(--c-black);
  padding: 72px 0 48px;
}

.tpg__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

.tpg__header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.tpg__header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.tpg__wrapper {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  padding: 0 5%;
}

.tpg__wrapper:active { cursor: grabbing; }

.tpg__track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.tpg__slide {
  position: relative;
  /* Mostrar 1 imagen completa + peek de las laterales */
  min-width: calc(100% - 120px);
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.45;
  transform: scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease;
  cursor: pointer;
}

.tpg__slide.is-active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
}

.tpg__slide img {
  width: 100%;
  /* Altura fija razonable — las imágenes se ven completas sin ser enormes */
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Dots */
.tpg__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}

.tpg__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tpg__dot.is-active {
  background: var(--c-white);
  transform: scale(1.25);
}

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner {
  background: var(--c-black);
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-banner__content h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--c-white);
}

.cta-banner__content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 16px auto 32px;
  line-height: 1.6;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--c-black);
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 9px; }

.footer__col a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--ease);
}

.footer__col a:hover { color: var(--c-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal { display: flex; gap: 20px; }

.footer__legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--ease);
}

.footer__legal a:hover { color: rgba(255, 255, 255, 0.65); }

/* =========================================
   Scroll reveal
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */

/* Tablet / mobile navbar */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions { display: none; }

  .nav-cta-btn--mobile {
    display: inline-block;
    font-size: 0.72rem;
    padding: 6px 13px;
  }

  .hamburger { display: flex; }

  /* Footer 2 columns */
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* Carousel tablet */
@media (max-width: 900px) {
  .tpg__wrapper { padding: 0 8%; }
  .tpg__slide {
    min-width: calc(100% - 60px);
    border-radius: 12px;
  }
  .tpg__slide img { height: 320px; }
}

/* Promo tablet */
@media (max-width: 900px) {
  .promo__inner { gap: 40px; }
  .promo__text  { flex: 1; }
  .promo__img-wrap { flex: 1; }
  .promo__img-wrap img { height: 360px; }
}

/* Small tablet */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .card--full,
  .card--half { grid-column: 1; }

  .promo { padding: 64px 24px; }
  .promo__inner { flex-direction: column; gap: 32px; }
  .promo__text  { width: 100%; }
  .promo__img-wrap { width: 100%; }
  .promo__img-wrap img { height: 300px; }
  .promo__btn { align-self: center; }
}

/* Mobile */
@media (max-width: 600px) {
  .card--hero {
    min-height: 520px;
    padding: 60px 16px;
  }

  .card { padding: 48px 16px 0; }

  .tpg__wrapper { padding: 0 4%; }
  .tpg__slide {
    min-width: calc(100% - 32px);
    border-radius: 10px;
  }
  .tpg__slide img { height: 260px; }

  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   Minimalismo Card — Ghost 3D Scene
   ========================================= */
.card--minimalism {
  perspective: 800px;
  min-height: 720px;
}

.card__overlay--minimalism {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.08) 42%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.ghost-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  margin-top: 16px;
  perspective: 600px;
  cursor: grab;
  overflow: visible;
}

.ghost-scene:active { cursor: grabbing; }

.ghost-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.08s ease-out;
  will-change: transform;
}

.ghost {
  position: absolute;
  pointer-events: none;
}

/* Fantasma central — primer plano, abajo al centro */
.ghost-1 {
  width: clamp(230px, 92%, 700px);
  bottom: 0;
  left: 50%;
  z-index: 3;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.55));
  animation: ghostFloat1 4.2s ease-in-out infinite;
}

/* Fantasma izquierdo — segundo plano, arriba a la izquierda */
.ghost-2 {
  width: clamp(185px, 75%, 570px);
  top: 0;
  left: -6%;
  z-index: 2;
  opacity: 0.88;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4));
  animation: ghostFloat2 5.6s ease-in-out infinite 0.9s;
}

/* Fantasma derecho — tercer plano, medio a la derecha */
.ghost-3 {
  width: clamp(172px, 70%, 520px);
  top: 28%;
  right: -6%;
  z-index: 1;
  opacity: 0.82;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  animation: ghostFloat3 4.9s ease-in-out infinite 1.8s;
}

@keyframes ghostFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-2deg); }
  35%       { transform: translateX(-50%) translateY(-24px) rotate(2.5deg); }
  68%       { transform: translateX(-50%) translateY(-11px) rotate(-1deg); }
}

@keyframes ghostFloat2 {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50%       { transform: translateY(-28px) rotate(-2.5deg); }
}

@keyframes ghostFloat3 {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  42%       { transform: translateY(-20px) rotate(1.5deg); }
  76%       { transform: translateY(-9px) rotate(-2deg); }
}

/* =========================================
   Gallery Modal
   ========================================= */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-modal.is-open .gallery-modal__content {
  transform: scale(1);
}

.gallery-modal__img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.7);
  display: block;
}

.gallery-modal__close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--c-white);
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
  line-height: 1;
}

.gallery-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-modal__prev,
.gallery-modal__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--c-white);
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.gallery-modal__prev { left: 18px; }
.gallery-modal__next { right: 18px; }

.gallery-modal__prev:hover,
.gallery-modal__next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.tpg__slide.is-active { cursor: zoom-in; }

@media (max-width: 600px) {
  .gallery-modal__prev { left: 6px; }
  .gallery-modal__next { right: 6px; }
  .gallery-modal__prev,
  .gallery-modal__next {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .gallery-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .ghost-scene { height: 420px; }

  /* Tamaños mobile */
  .ghost-1 { width: 72vw; }
  .ghost-2 { width: 62vw; }
  .ghost-3 { width: 56vw; }

  /* Posiciones mobile — izquierda centro-alto, derecha centro-bajo, abajo centro */
  .ghost-2 {
    top: 18%;
    left: 3%;
    right: auto;
  }
  .ghost-3 {
    top: 44%;
    right: 3%;
    left: auto;
  }
  /* ghost-1 mantiene bottom:0 left:50% del estilo base */
}