@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --void: #050608;
  --obsidian: #0a0c10;
  --surface: #12151c;
  --glass: rgba(18, 21, 28, 0.72);
  --gold: #d4af37;
  --gold-bright: #f5d78e;
  --gold-dim: #b8860b;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --teal: #2dd4bf;
  --text: #f0ead6;
  --muted: #8a8f9a;
  --border: rgba(212, 175, 55, 0.12);
  --gradient-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-dim) 100%);
  --gradient-mesh: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(212,175,55,0.14) 0%, transparent 55%),
                   radial-gradient(ellipse 60% 50% at 85% 70%, rgba(45,212,191,0.08) 0%, transparent 50%);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Syne', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 0 40px var(--gold-glow);
  /* compat legales */
  --charcoal: var(--obsidian);
  --bronze: var(--gold);
  --bronze-light: var(--gold-bright);
  --cream: var(--text);
  --navy: #1a2744;
  --slate: var(--muted);
  --white: #fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--void);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }

.skip-link { position: absolute; left: -9999px; z-index: 9999; padding: 8px 16px; background: var(--gold); color: var(--void); font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }

.top-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 24px; background: var(--obsidian);
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem; color: var(--muted);
}
.tasa-bcv { color: var(--gold-bright); font-weight: 600; white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--glow-gold); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 20px; }
.logo img { height: 44px; width: auto; max-width: 280px; object-fit: contain; }
.nav-panel { display: flex; gap: 32px; margin-left: auto; }
.nav-panel a { color: var(--muted); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.04em; }
.nav-panel a:hover, .nav-panel a.active { color: var(--gold-bright); }
.nav-btn { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; color: var(--text); cursor: pointer; }
.header-cta { margin-left: 8px; white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 0.84rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s, background 0.25s;
  letter-spacing: 0.03em;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-gold, .btn-bronze, .btn-primary {
  background: var(--gradient-gold); color: var(--void); border: none;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover, .btn-bronze:hover, .btn-primary:hover { box-shadow: 0 0 50px rgba(245, 215, 142, 0.45); color: var(--void); }
.btn-glass {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border-color: rgba(212, 175, 55, 0.35); backdrop-filter: blur(10px);
}
.btn-glass:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.1); color: var(--gold-bright); }
.btn-outline {
  background: transparent; color: var(--gold-bright); border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.12); }
.btn-cream {
  background: rgba(255,255,255,0.08); color: var(--text); border-color: var(--border);
}
.btn-cream:hover { border-color: var(--gold); }
.btn-block { width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-void { background: var(--void); }
.section-deep { background: var(--obsidian); }
.section-surface { background: var(--surface); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gradient-gold); }
.section-intro { margin-bottom: 52px; }
.section-intro.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-intro h2, .section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.12; font-weight: 700; letter-spacing: -0.01em;
}
.section-intro p { margin-top: 16px; color: var(--muted); max-width: 640px; }
.section-intro.center p { margin-left: auto; margin-right: auto; }
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

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

/* HERO MERIDIAN */
.hero-meridian {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 100px 0 80px;
  background: var(--void);
}
.hero-mesh { position: absolute; inset: 0; background: var(--gradient-mesh); z-index: 0; }
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; opacity: 0.035;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-orbs { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: orbDrift 16s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 420px; height: 420px; background: var(--gold); top: -8%; right: 5%; opacity: 0.18; }
.hero-orb-2 { width: 360px; height: 360px; background: var(--teal); bottom: 5%; left: -5%; opacity: 0.1; animation-delay: -5s; }
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-24px, 20px) scale(1.06); }
}

.hero-meridian-inner {
  position: relative; z-index: 3;
  max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.7rem; font-weight: 600; color: var(--gold-bright); margin-bottom: 26px;
}
.hero-tag-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 14px var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05; margin-bottom: 26px; font-weight: 700;
}
.hero-lead { font-size: 1.06rem; color: var(--muted); margin-bottom: 34px; max-width: 520px; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-disclaimer {
  font-size: 0.76rem; color: var(--muted); line-height: 1.55;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.05); border-left: 3px solid var(--gold);
  max-width: 540px;
}
.hero-disclaimer strong { color: var(--gold-bright); }

.hero-stage { position: relative; perspective: 1200px; }
.hero-card-stack { position: relative; }
.hero-card-main {
  background: var(--glass); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: 24px;
  padding: 20px; box-shadow: var(--shadow), var(--glow-gold);
  position: relative; z-index: 2;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.hero-card-main:hover { transform: rotateY(0) rotateX(0); }
.hero-card-main::before {
  content: ''; position: absolute; inset: -1px; border-radius: 25px; padding: 1px;
  background: var(--gradient-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0.6;
}
.hero-photo { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; max-height: 220px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-metric {
  text-align: center; padding: 14px 8px;
  background: rgba(0, 0, 0, 0.35); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.hero-metric strong { display: block; font-family: var(--font-display); font-size: 1.55rem; color: var(--gold-bright); }
.hero-metric span { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-float-badge {
  position: absolute; top: -20px; right: -16px; z-index: 4;
  background: var(--gradient-gold); color: var(--void);
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.78rem; box-shadow: var(--glow-gold);
  transform: rotate(3deg);
}
.hero-float-badge em { display: block; font-style: normal; font-family: var(--font-display); font-size: 1.2rem; }

/* MARQUEE */
.marquee-gold { overflow: hidden; padding: 20px 0; border-block: 1px solid var(--border); background: var(--obsidian); }
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee-track span::after { content: '◆'; margin-left: 56px; color: var(--gold); font-size: 0.4rem; vertical-align: middle; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* STATS RIBBON */
.stats-ribbon { margin-top: -40px; position: relative; z-index: 10; }
.stats-ribbon-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--glow-gold);
}
.stat-cell {
  background: var(--surface); padding: 30px 16px; text-align: center;
  transition: background 0.3s;
}
.stat-cell:hover { background: rgba(212, 175, 55, 0.08); }
.stat-cell strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-bright); margin-bottom: 6px; }
.stat-cell span { font-size: 0.72rem; color: var(--muted); }

/* BENTO */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.bento {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
}
.bento:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.35); box-shadow: var(--glow-gold); }
.bento::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold); opacity: 0; transition: opacity 0.3s;
}
.bento:hover::after { opacity: 1; }
.bento-lg { grid-column: span 4; }
.bento-md { grid-column: span 3; }
.bento-sm { grid-column: span 3; }
.bento-icon { font-size: 1.6rem; margin-bottom: 12px; }
.bento h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.bento p { font-size: 0.82rem; color: var(--muted); }

.pill-orbit { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  padding: 11px 20px; border-radius: 999px; font-size: 0.8rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.25s; color: var(--muted);
}
.pill:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: var(--glow-gold); transform: translateY(-2px); }

/* SERVICE BENTO */
.svc-bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc-bento {
  display: flex; flex-direction: row; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.svc-bento:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--glow-gold), var(--shadow);
}
.svc-bento-img { flex-shrink: 0; width: 36%; max-width: 185px; min-width: 125px; }
.svc-bento-img img { width: 100%; aspect-ratio: 4/3; max-height: 140px; object-fit: cover; }
.svc-bento-body { padding: 18px 20px; flex: 1; min-width: 0; border-left: 2px solid transparent; border-image: var(--gradient-gold) 1; }
.svc-bento-body .sku { font-size: 0.66rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; }
.svc-bento-body h3 { font-family: var(--font-display); font-size: 1rem; margin: 6px 0 8px; }
.svc-bento-body p { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.precio-line strong { font-size: 0.96rem; color: var(--gold-bright); }
.precio-line span { display: block; font-size: 0.74rem; color: var(--muted); }
.precio-note { font-size: 0.7rem; color: var(--teal); margin-top: 4px; }

/* ABOUT */
.about-meridian { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-frame-back {
  position: absolute; inset: 12px -12px -12px 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--gradient-gold); opacity: 0.15; z-index: 0;
}
.about-frame-front {
  position: relative; z-index: 1;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.about-frame-front img { width: 100%; aspect-ratio: 5/4; max-height: 400px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -18px; left: -18px; z-index: 2;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 22px; box-shadow: var(--glow-gold);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-bright); }
.about-badge span { font-size: 0.72rem; color: var(--muted); }
.about-meridian ul { list-style: none; margin: 22px 0; }
.about-meridian li {
  padding: 11px 0 11px 28px; position: relative; color: var(--muted);
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.about-meridian li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 14px; }

/* TIMELINE */
.timeline-meridian { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.timeline-meridian::before {
  content: ''; position: absolute; top: 34px; left: 8%; right: 8%;
  height: 1px; background: var(--gradient-gold); opacity: 0.5;
}
.t-mer { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.t-mer-num {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  background: var(--surface); border: 2px solid var(--gold);
  box-shadow: var(--glow-gold); color: var(--gold-bright);
}
.t-mer h3 { font-size: 0.9rem; margin-bottom: 6px; }
.t-mer p { font-size: 0.76rem; color: var(--muted); }

.gallery-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery-mosaic img {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-mosaic img:nth-child(1) { grid-column: span 2; height: 180px; }
.gallery-mosaic img:nth-child(4) { grid-column: span 2; }
.gallery-mosaic img:hover { transform: scale(1.03); box-shadow: var(--glow-gold); }

.perk-meridian { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perk-m {
  padding: 28px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.perk-m::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.12), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.perk-m:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.35); }
.perk-m:hover::before { opacity: 1; }
.perk-m-icon { font-size: 1.6rem; margin-bottom: 12px; position: relative; }
.perk-m h3 { font-size: 0.88rem; margin-bottom: 6px; position: relative; }
.perk-m p { font-size: 0.76rem; color: var(--muted); position: relative; }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); overflow: hidden; }
.faq-item.open { border-color: rgba(212, 175, 55, 0.4); box-shadow: var(--glow-gold); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-weight: 600; font-size: 0.9rem; cursor: pointer; color: var(--text); display: flex; justify-content: space-between; gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); }
.faq-item.open .faq-q::after { content: '−'; color: var(--teal); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 0.84rem; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

.cta-meridian {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 340px;
  display: flex; align-items: center; border: 1px solid var(--border);
}
.cta-meridian-bg { position: absolute; inset: 0; }
.cta-meridian-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.cta-meridian-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(5,6,8,0.94), rgba(10,12,16,0.8), rgba(212,175,55,0.15)); }
.cta-meridian-inner { position: relative; z-index: 1; padding: 56px; max-width: 600px; }
.cta-meridian-inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.25rem); margin-bottom: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; margin-top: 20px; }
.contact-list li { margin-bottom: 14px; font-size: 0.9rem; padding-left: 26px; position: relative; color: var(--muted); }
.contact-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--gradient-gold); }
.contact-list a { color: var(--gold-bright); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; box-shadow: var(--shadow), var(--glow-gold); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(1.1) sepia(0.2); }

.ads-disclaimer {
  background: rgba(212, 175, 55, 0.06); border: 1px solid rgba(212, 175, 55, 0.2);
  border-left: 4px solid var(--gold);
  padding: 18px 24px; margin: 40px auto; max-width: 1240px;
  font-size: 0.82rem; color: var(--muted); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.ads-disclaimer strong { color: var(--gold-bright); }
.legal-strip { background: var(--obsidian); text-align: center; padding: 14px 24px; font-size: 0.78rem; color: var(--muted); border-top: 1px solid var(--border); }
.legal-strip a { color: var(--gold-bright); }

.site-footer { background: var(--void); padding: 56px 24px 28px; border-top: 1px solid var(--border); }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo { height: 44px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.82rem; line-height: 1.6; max-width: 300px; color: var(--muted); }
.site-footer h4 { color: var(--text); font-size: 0.7rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.site-footer a { display: block; color: var(--muted); font-size: 0.84rem; margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-base { max-width: 1240px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.76rem; text-align: center; color: var(--muted); }
.footer-legal { margin-top: 10px; }

.fab-wa { position: fixed; bottom: 28px; right: 28px; z-index: 90; filter: drop-shadow(0 8px 24px rgba(37, 211, 102, 0.4)); transition: transform 0.2s; }
.fab-wa:hover { transform: scale(1.08); }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--surface); color: var(--text); padding: 20px 24px; transform: translateY(110%); transition: transform 0.4s; border-top: 2px solid var(--gold); backdrop-filter: blur(12px); }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between; }
.cookie-inner p { font-size: 0.82rem; flex: 1; min-width: 260px; color: var(--muted); }
.cookie-inner a { color: var(--gold-bright); }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* CATALOG */
.catalog-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; background: var(--void); }
.catalog-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.catalog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,8,0.2), rgba(5,6,8,0.96)); }
.catalog-hero-inner { position: relative; z-index: 1; padding: 88px 24px 56px; max-width: 1240px; margin: 0 auto; width: 100%; }
.catalog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 14px; }

.catalog-intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; margin-bottom: 44px; }
.catalog-intro-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--glow-gold); }
.catalog-intro-photo img { width: 100%; aspect-ratio: 16/10; max-height: 200px; object-fit: cover; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); font-size: 0.78rem; font-weight: 500; cursor: pointer; color: var(--muted); transition: all 0.25s; }
.chip.active, .chip:hover { background: rgba(212, 175, 55, 0.12); color: var(--gold-bright); border-color: var(--gold); box-shadow: var(--glow-gold); }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.cat-card { display: flex; flex-direction: row; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all 0.35s; }
.cat-card:hover { border-color: rgba(212, 175, 55, 0.4); box-shadow: var(--glow-gold); transform: translateY(-3px); }
.cat-img { flex-shrink: 0; width: 36%; max-width: 175px; min-width: 118px; }
.cat-img img { width: 100%; aspect-ratio: 4/3; max-height: 140px; object-fit: cover; }
.cat-body { padding: 16px 18px; flex: 1; min-width: 0; border-left: 2px solid transparent; border-image: var(--gradient-gold) 1; }
.cat-body h2 { font-family: var(--font-display); font-size: 0.95rem; margin: 6px 0; font-weight: 700; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 5px; list-style: none; margin: 8px 0; }
.feat-tags li { font-size: 0.64rem; background: rgba(212, 175, 55, 0.1); padding: 3px 9px; border-radius: 999px; color: var(--gold-bright); }
.modalidad-tag { font-size: 0.7rem; color: var(--muted); margin-bottom: 8px; display: inline-block; }
.sku { font-size: 0.64rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }

.legal-page { padding: 56px 0 80px; background: var(--obsidian); }
.legal-page h1 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 8px; color: var(--text); }
.legal-page .fecha { color: var(--muted); font-size: 0.86rem; margin-bottom: 28px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 32px 0 14px; color: var(--gold-bright); font-weight: 700; }
.legal-page p, .legal-page li { font-size: 0.9rem; margin-bottom: 10px; color: var(--muted); }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 12px; text-align: left; }
.legal-page th { background: var(--surface); color: var(--text); }

@media (max-width: 1024px) {
  .hero-meridian-inner, .about-meridian, .contact-grid, .catalog-intro, .footer-grid, .svc-bento-grid { grid-template-columns: 1fr; }
  .bento-lg, .bento-md, .bento-sm { grid-column: span 6; }
  .timeline-meridian { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .timeline-meridian::before { display: none; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); }
  .gallery-mosaic img:nth-child(1) { grid-column: span 3; }
}
@media (max-width: 768px) {
  .stats-ribbon-inner, .perk-meridian, .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .nav-panel { position: fixed; inset: 64px 0 auto 0; background: var(--surface); flex-direction: column; padding: 24px; transform: translateY(-130%); transition: transform 0.35s; border-bottom: 1px solid var(--border); }
  .nav-panel.open { transform: translateY(0); }
  .nav-btn { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .svc-bento, .cat-card { flex-direction: column; }
  .svc-bento-img, .cat-img { width: 100%; max-width: none; }
  .svc-bento-img img, .cat-img img { max-height: 160px; aspect-ratio: 16/9; }
  .hero-card-main { transform: none; }
}
@media (max-width: 520px) {
  .stats-ribbon-inner, .perk-meridian, .timeline-meridian, .gallery-mosaic, .bento-grid { grid-template-columns: 1fr; }
  .bento-lg, .bento-md, .bento-sm { grid-column: span 1; }
  .section { padding: 64px 0; }
}
