@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --void: #070b14;
  --deep: #0d1526;
  --slate: #151f33;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --gold: #e8c872;
  --gold-soft: #f5e6b8;
  --pearl: #f8fafc;
  --muted: #94a3b8;
  --ink: #e2e8f0;
  --white: #fff;
  --max: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 0 80px rgba(34, 211, 238, 0.15);
  --font-ui: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--void);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(34, 211, 238, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(232, 200, 114, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(8, 145, 178, 0.08), transparent 60%),
    linear-gradient(180deg, var(--void) 0%, var(--deep) 40%, var(--void) 100%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: var(--cyan); color: var(--void); padding: 8px 16px; font-weight: 700; }
.skip-link:focus { left: 0; }

.top-bar {
  background: rgba(7, 11, 20, 0.9);
  border-bottom: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: .74rem;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.tasa-bcv { color: var(--gold); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 300;
  background: rgba(7, 11, 20, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: background .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(7, 11, 20, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--pearl) !important; text-decoration: none !important; }
.logo-mark svg { width: 46px; height: 46px; filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.35)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--pearl); letter-spacing: .02em; }
.logo-text span { font-size: .62rem; font-weight: 700; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; }

.nav-panel { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.nav-panel a {
  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: .84rem;
  color: var(--muted); transition: .2s;
}
.nav-panel a:hover, .nav-panel a.active { background: var(--glass); color: var(--pearl); border: 1px solid var(--glass-border); }
.nav-btn {
  display: none; border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--pearl); border-radius: 10px; padding: 8px 14px; cursor: pointer;
}
.header-cta { margin-left: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .88rem;
  border: 1px solid transparent; cursor: pointer; transition: .25s;
  letter-spacing: .02em;
}
.btn-glow {
  background: linear-gradient(135deg, var(--cyan-dim), var(--cyan));
  color: var(--void);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.35);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(34, 211, 238, 0.5); color: var(--void); }
.btn-gold {
  background: linear-gradient(135deg, #b8942e, var(--gold));
  color: var(--void);
  box-shadow: 0 0 24px rgba(232, 200, 114, 0.25);
}
.btn-gold:hover { transform: translateY(-3px); color: var(--void); }
.btn-ghost {
  background: transparent;
  border-color: var(--glass-border);
  color: var(--pearl);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--glass); color: var(--pearl); border-color: var(--cyan); }
.btn-block { width: 100%; margin-top: 14px; }

/* HERO CINEMATIC */
.hero-cine {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 24px 80px;
}
.hero-cine-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-cine-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-cine-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 11, 20, 0.97) 0%, rgba(7, 11, 20, 0.82) 45%, rgba(7, 11, 20, 0.55) 100%),
    linear-gradient(0deg, var(--void) 0%, transparent 30%);
}
.hero-cine-shine {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
  pointer-events: none;
}
.hero-cine-inner {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(232, 200, 114, 0.1);
  border: 1px solid rgba(232, 200, 114, 0.35);
  border-radius: 999px;
}
.hero-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.hero-cine h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--pearl);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-cine h1 em { font-style: italic; color: var(--cyan); }
.hero-cine .lead { font-size: 1.08rem; color: var(--muted); max-width: 540px; margin-bottom: 28px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.disclaimer-inline { font-size: .76rem; color: #64748b; max-width: 520px; }

.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 12px;
}
.hero-mosaic .mosaic-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), var(--glow);
  position: relative;
}
.hero-mosaic .mosaic-main img { width: 100%; height: 220px; object-fit: cover; }
.hero-mosaic .mosaic-sm {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.hero-mosaic .mosaic-sm img { width: 100%; height: 120px; object-fit: cover; }
.mosaic-label {
  position: absolute; bottom: 12px; left: 12px;
  font-size: .68rem; font-weight: 700; color: var(--pearl);
  background: rgba(7, 11, 20, 0.75); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--glass-border);
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
}
.stat-glass {
  flex: 1; min-width: 120px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.stat-glass strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--pearl); }
.stat-glass span { font-size: .7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* TRUST STRIP */
.trust-strip {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(13, 21, 38, 0.8);
  padding: 18px 24px;
  overflow: hidden;
}
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: .82rem; color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.trust-item span { font-size: .72rem; color: var(--muted); }

/* SECTIONS */
.section { padding: 80px 24px; max-width: var(--max); margin: 0 auto; }
.section-dark {
  background: linear-gradient(180deg, transparent, rgba(13, 21, 38, 0.6), transparent);
  max-width: none; padding-left: 24px; padding-right: 24px;
}
.section-dark .section-inner { max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--pearl);
  font-weight: 400;
  margin-bottom: 12px;
}
.section-head h2 .accent { color: var(--cyan); font-style: italic; }
.section-head p { color: var(--muted); max-width: 560px; font-size: 1rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }
.section-eyebrow {
  display: inline-block; font-size: .68rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}

/* GALLERY MIRROR */
.gallery-mirror {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 14px;
}
.gallery-mirror .g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.gallery-mirror .g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,11,20,.7) 0%, transparent 50%);
  pointer-events: none;
}
.gallery-mirror .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-mirror .g-item:hover img { transform: scale(1.08); }
.gallery-mirror .g-item span {
  position: absolute; bottom: 14px; left: 14px; z-index: 1;
  font-size: .78rem; font-weight: 700; color: var(--pearl);
}
.g-item.g1 { grid-column: span 5; grid-row: span 2; }
.g-item.g2 { grid-column: span 4; }
.g-item.g3 { grid-column: span 3; }
.g-item.g4 { grid-column: span 3; }
.g-item.g5 { grid-column: span 4; }
.g-item.g6 { grid-column: span 5; }

/* NOSOTROS SPLIT */
.nosotros-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.nosotros-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), var(--glow);
}
.nosotros-visual img { width: 100%; height: 420px; object-fit: cover; }
.nosotros-visual .float-card {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 200px;
}
.nosotros-visual .float-card strong { display: block; font-size: 1.4rem; color: var(--cyan); font-weight: 800; }
.nosotros-visual .float-card span { font-size: .72rem; color: var(--muted); }
.nosotros-copy p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.nosotros-copy .lead-n { font-size: 1.1rem; color: var(--pearl); margin-bottom: 16px; }

/* STEPS PREMIUM */
.steps-premium {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.step-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0; transition: .3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, 0.3); }
.step-card:hover::before { opacity: 1; }
.step-card .num {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--deep));
  border: 2px solid var(--glass-border);
  color: var(--gold);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { color: var(--pearl); font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.step-card p { font-size: .82rem; color: var(--muted); }

/* TESTIMONIALS */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testi-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testi-card .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 14px;
}
.testi-card blockquote { font-size: .9rem; color: var(--muted); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
.testi-card cite { font-size: .8rem; font-weight: 700; color: var(--pearl); font-style: normal; }
.testi-card cite span { display: block; font-weight: 500; color: var(--gold); font-size: .72rem; margin-top: 2px; }
.testi-disclaimer { text-align: center; font-size: .72rem; color: #64748b; margin-top: 20px; }

/* SERVICES GRID */
.grid-servicios, #catalogoGrid, #destacadosGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.svc-card {
  background: rgba(13, 21, 38, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: var(--shadow), var(--glow);
}
.svc-card-link { color: inherit; text-decoration: none; display: block; }
.svc-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.badge-top {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), #b8942e);
  color: var(--void);
  font-size: .65rem; font-weight: 800; padding: 5px 12px; border-radius: 999px;
  letter-spacing: .04em;
}
.svc-card-body { padding: 20px 22px 24px; }
.sku { font-size: .68rem; font-weight: 800; color: var(--cyan); letter-spacing: .08em; text-transform: uppercase; }
.svc-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--pearl); margin: 10px 0; font-weight: 400; }
.svc-card-body > p { font-size: .86rem; color: var(--muted); margin-bottom: 12px; }
.modalidad-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  background: rgba(34, 211, 238, 0.1); color: var(--cyan);
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(34, 211, 238, 0.2);
}

.card-precio { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--glass-border); }
.precio-label { font-size: .65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.precio-row { display: flex; align-items: baseline; gap: 8px; margin: 6px 0; }
.precio-row .usd { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.usd-tag { font-size: .7rem; font-weight: 800; color: var(--cyan); }
.bs-ref { font-size: .82rem; color: var(--muted); display: block; }
.precio-nota { font-size: .65rem; color: #64748b; display: block; margin-top: 6px; }

.feat-list { list-style: none; margin: 12px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.feat-list li {
  font-size: .68rem; font-weight: 700;
  background: rgba(232, 200, 114, 0.1); color: var(--gold-soft);
  padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(232, 200, 114, 0.2);
}

/* BENEFITS ICON ROW */
.benefits-pro {
  max-width: var(--max); margin: 0 auto; padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-pro {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: .3s;
}
.benefit-pro:hover { border-color: rgba(232, 200, 114, 0.35); transform: translateY(-4px); }
.benefit-icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,211,238,.15), rgba(232,200,114,.15));
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.benefit-pro h3 { color: var(--pearl); font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.benefit-pro p { font-size: .86rem; color: var(--muted); }

/* CTA BANNER */
.cta-mirror {
  max-width: var(--max); margin: 0 auto 80px; padding: 0 24px;
}
.cta-mirror-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 280px;
  display: flex; align-items: center;
}
.cta-mirror-bg { position: absolute; inset: 0; }
.cta-mirror-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-mirror-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,11,20,.95) 0%, rgba(7,11,20,.7) 60%, rgba(7,11,20,.4) 100%);
}
.cta-mirror-content {
  position: relative; z-index: 1; padding: 48px;
  max-width: 520px;
}
.cta-mirror-content h2 { font-family: var(--font-display); font-size: 2rem; color: var(--pearl); margin-bottom: 12px; font-weight: 400; }
.cta-mirror-content p { color: var(--muted); margin-bottom: 20px; }

/* CONTACT */
.contact-block {
  background: linear-gradient(180deg, var(--deep) 0%, var(--void) 100%);
  border-top: 1px solid var(--glass-border);
  padding: 80px 24px;
}
.contact-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.contact-inner h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--pearl); font-weight: 400; margin-bottom: 20px; }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 12px; font-size: .94rem; color: var(--muted); }
.contact-list a { color: var(--cyan); }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(30%) contrast(1.1); }

/* FOOTER */
.site-footer {
  background: #050810;
  border-top: 1px solid var(--glass-border);
  color: var(--muted);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-inner h4 { color: var(--pearl); font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; margin-bottom: 14px; }
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 8px; font-size: .85rem; }
.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: var(--max); margin: 28px auto 0; padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  font-size: .78rem; text-align: center;
}
.footer-legal { font-size: .72rem; color: #64748b; margin-top: 8px; }

/* LEGAL + CATALOG */
.legal-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.legal-page h1 { font-family: var(--font-display); color: var(--pearl); margin-bottom: 8px; font-weight: 400; }
.legal-page .fecha { color: var(--muted); font-size: .88rem; margin-bottom: 24px; }
.legal-page h2 { font-family: var(--font-display); color: var(--cyan); margin: 24px 0 10px; font-weight: 400; }
.legal-page p, .legal-page li { margin-bottom: 10px; font-size: .94rem; color: var(--muted); }

.catalog-hero {
  position: relative;
  padding: 100px 24px 72px;
  text-align: center;
  overflow: hidden;
}
.catalog-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.catalog-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.catalog-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,11,20,.85), rgba(7,11,20,.95));
}
.catalog-hero > *:not(.catalog-hero-bg):not(.catalog-hero-overlay) { position: relative; z-index: 2; }
.catalog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--pearl); font-weight: 400; }
.catalog-hero p { color: var(--muted); margin-top: 10px; }

.filter-bar {
  max-width: var(--max); margin: -24px auto 36px; padding: 0 24px;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.chip {
  border: 1px solid var(--glass-border); background: var(--glass);
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: .78rem;
  cursor: pointer; color: var(--muted); backdrop-filter: blur(8px); transition: .2s;
}
.chip.active, .chip:hover { border-color: var(--cyan); background: rgba(34, 211, 238, 0.15); color: var(--cyan); }

.noscript-servicios {
  max-width: var(--max); margin: 16px auto 0; padding: 20px 28px;
  background: var(--glass); border-radius: var(--radius); list-style: none;
  font-size: .88rem; line-height: 1.7; border: 1px solid var(--glass-border);
}
.noscript-servicios li { padding: 8px 0; border-bottom: 1px solid var(--glass-border); color: var(--muted); }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(13, 21, 38, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  transform: translateY(110%); transition: transform .35s;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max); margin: 0 auto; padding: 18px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.cookie-inner p { font-size: .84rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.is-visible { opacity: 1; transform: none; }

.img-ref-note { font-size: .68rem; color: var(--muted); margin-top: 8px; text-align: center; }

@media (max-width: 1024px) {
  .hero-cine-inner, .nosotros-split, .gallery-mirror { grid-template-columns: 1fr; }
  .gallery-mirror { grid-template-rows: auto; }
  .g-item.g1, .g-item.g2, .g-item.g3, .g-item.g4, .g-item.g5, .g-item.g6 { grid-column: span 1; grid-row: span 1; height: 200px; }
  .hero-mosaic { display: none; }
  .hero-cine { min-height: auto; padding-bottom: 60px; }
  .hero-cine-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .steps-premium, .testi-grid, .benefits-pro, .contact-inner, .footer-inner { grid-template-columns: 1fr; }
  .nav-panel {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7, 11, 20, 0.98); flex-direction: column; padding: 16px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-panel.open { display: flex; }
  .nav-btn { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .nosotros-visual img { height: 280px; }
}
