@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Unbounded:wght@500;600;700&display=swap');

:root {
  --void: #06041a;
  --deep: #0f0828;
  --surface: #160f35;
  --glass: rgba(22, 15, 53, 0.75);
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --magenta: #f472b6;
  --violet: #a855f7;
  --lime: #a3e635;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.12);
  --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--magenta) 100%);
  --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.35);
  --glow-prism: 0 0 60px rgba(168, 85, 247, 0.25);
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  /* compat legales */
  --navy: var(--deep);
  --wine: var(--magenta);
  --parchment: var(--text);
  --brass: var(--lime);
  --brass-light: var(--cyan);
  --slate: var(--text);
  --white: #fff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

*, *::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(--cyan); text-decoration: none; }
a:hover { color: var(--magenta); }

.skip-link { position: absolute; left: -9999px; z-index: 9999; padding: 8px 16px; background: var(--cyan); 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(--deep);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem; color: var(--muted);
}
.tasa-bcv { color: var(--cyan); font-weight: 600; white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6, 4, 26, 0.85);
  backdrop-filter: blur(18px) saturate(1.5);
  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-prism); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 20px; }
.logo img { height: 42px; width: auto; }
.nav-panel { display: flex; gap: 28px; margin-left: auto; }
.nav-panel a { color: var(--muted); font-weight: 500; font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.nav-panel a:hover, .nav-panel a.active { color: var(--cyan); text-decoration: none; }
.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.88rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-glow, .btn-wine, .btn-primary {
  background: var(--gradient); color: var(--void); border: none;
  box-shadow: var(--glow-cyan);
}
.btn-glow:hover, .btn-wine:hover, .btn-primary:hover { box-shadow: 0 0 50px rgba(34, 211, 238, 0.5); }
.btn-glass, .btn-outline {
  background: rgba(255, 255, 255, 0.05); color: var(--text);
  border-color: rgba(34, 211, 238, 0.35); backdrop-filter: blur(8px);
}
.btn-glass:hover, .btn-outline:hover { border-color: var(--cyan); background: rgba(34, 211, 238, 0.1); }
.btn-navy, .btn-teal {
  background: transparent; color: var(--cyan); border: 2px solid var(--cyan);
}
.btn-navy:hover, .btn-teal:hover { background: rgba(34, 211, 238, 0.12); }
.btn-block { width: 100%; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gradient); }
.section-intro { margin-bottom: 48px; }
.section-intro.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-intro h2, .section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  line-height: 1.15; font-weight: 600; letter-spacing: -0.02em;
}
.section-intro p { margin-top: 16px; color: var(--muted); max-width: 620px; }
.section-intro.center p { margin-left: auto; margin-right: auto; }
.prism-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

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

/* HERO PRISM */
.hero-prism {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 100px 0 80px;
}
.hero-orbs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb-1 { width: 480px; height: 480px; background: var(--violet); top: -10%; left: -5%; }
.orb-2 { width: 400px; height: 400px; background: var(--cyan); bottom: 10%; right: -8%; animation-delay: -4s; }
.orb-3 { width: 320px; height: 320px; background: var(--magenta); top: 40%; left: 40%; animation-delay: -7s; opacity: 0.35; }
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-prism-inner {
  position: relative; z-index: 3;
  max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.25);
  font-size: 0.72rem; font-weight: 600; color: var(--cyan); margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08; margin-bottom: 24px; font-weight: 700;
}
.hero-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-disclaimer {
  font-size: 0.78rem; color: var(--muted); line-height: 1.55;
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(244, 114, 182, 0.06); border-left: 3px solid var(--magenta);
  max-width: 540px;
}
.hero-disclaimer strong { color: var(--magenta); }

.hero-visual { position: relative; }
.hero-glass {
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 24px;
  padding: 24px; box-shadow: var(--shadow), var(--glow-prism);
  position: relative;
}
.hero-glass::before {
  content: ''; position: absolute; inset: -1px; border-radius: 25px; padding: 1px;
  background: var(--gradient);
  -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;
}
.hero-photo { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; 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: 12px; }
.metric {
  text-align: center; padding: 14px 8px;
  background: rgba(0, 0, 0, 0.25); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.metric strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--cyan); }
.metric span { font-size: 0.65rem; color: var(--muted); }

.marquee-wrap { overflow: hidden; padding: 18px 0; border-block: 1px solid var(--border); background: var(--deep); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track span::after { content: '◆'; color: var(--violet); font-size: 0.45rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.stats-prism {
  margin-top: -36px; position: relative; z-index: 10;
}
.stats-prism-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-prism);
}
.stat-prism {
  background: var(--surface); padding: 28px 16px; text-align: center;
  transition: background 0.3s;
}
.stat-prism:hover { background: rgba(168, 85, 247, 0.1); }
.stat-prism strong { display: block; font-family: var(--font-display); font-size: 1.85rem; color: var(--cyan); margin-bottom: 6px; }
.stat-prism span { font-size: 0.74rem; color: var(--muted); }

.pill-orbit { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  padding: 12px 22px; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.25s;
}
.pill:hover { border-color: var(--violet); color: var(--cyan); box-shadow: var(--glow-cyan); transform: translateY(-2px); }

/* Service cards */
.svc-prism-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-prism {
  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-prism:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: var(--glow-prism), var(--shadow);
}
.svc-prism-img { flex-shrink: 0; width: 38%; max-width: 200px; min-width: 130px; }
.svc-prism-img img { width: 100%; aspect-ratio: 4/3; max-height: 140px; object-fit: cover; }
.svc-prism-body { padding: 18px 20px; flex: 1; border-left: 2px solid transparent; border-image: var(--gradient) 1; min-width: 0; }
.svc-prism-body .sku { font-size: 0.68rem; font-weight: 700; color: var(--lime); letter-spacing: 0.1em; }
.svc-prism-body h3 { font-family: var(--font-display); font-size: 0.95rem; margin: 6px 0 8px; font-weight: 600; }
.svc-prism-body p { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.precio-line strong { font-size: 0.98rem; color: var(--cyan); }
.precio-line span { display: block; font-size: 0.76rem; color: var(--muted); }
.precio-note { font-size: 0.72rem; color: var(--magenta); margin-top: 4px; }

.about-prism { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  width: 100%; aspect-ratio: 5/4; max-height: 400px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.about-float-tag {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 24px; box-shadow: var(--glow-cyan);
}
.about-float-tag strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--magenta); }
.about-float-tag span { font-size: 0.74rem; color: var(--muted); }
.about-prism ul { list-style: none; margin: 20px 0; }
.about-prism li { padding: 10px 0 10px 28px; position: relative; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.about-prism li::before { content: '✦'; position: absolute; left: 0; color: var(--violet); }

.timeline-prism { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.timeline-prism::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 2px; background: var(--gradient); opacity: 0.5;
}
.t-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.t-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  background: var(--surface); border: 2px solid var(--cyan);
  box-shadow: var(--glow-cyan); color: var(--cyan);
}
.t-step h3 { font-size: 0.9rem; margin-bottom: 6px; }
.t-step p { font-size: 0.78rem; color: var(--muted); }

.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-strip img {
  width: 100%; height: 150px; object-fit: cover;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-strip img:hover { transform: scale(1.03); box-shadow: var(--glow-cyan); }

.perk-prism { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perk-p {
  padding: 26px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.perk-p::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.perk-p:hover { border-color: rgba(34, 211, 238, 0.35); transform: translateY(-3px); }
.perk-p-icon { font-size: 1.5rem; margin-bottom: 12px; }
.perk-p h3 { font-size: 0.88rem; margin-bottom: 6px; }
.perk-p p { font-size: 0.78rem; color: var(--muted); }

.faq-list { max-width: 800px; 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(168, 85, 247, 0.35); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-weight: 600; font-size: 0.92rem; cursor: pointer; color: var(--text); display: flex; justify-content: space-between; gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--cyan); }
.faq-item.open .faq-q::after { content: '−'; color: var(--magenta); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 0.86rem; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

.cta-prism {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 320px;
  display: flex; align-items: center; border: 1px solid var(--border);
}
.cta-prism-bg { position: absolute; inset: 0; }
.cta-prism-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-prism-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(6,4,26,0.95), rgba(15,8,40,0.75), rgba(168,85,247,0.2)); }
.cta-prism-inner { position: relative; z-index: 1; padding: 52px; max-width: 580px; }
.cta-prism-inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); 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.92rem; padding-left: 28px; position: relative; color: var(--muted); }
.contact-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--gradient); }
.contact-list a { color: var(--cyan); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.1); }

.ads-disclaimer {
  background: rgba(244, 114, 182, 0.06); border: 1px solid rgba(244, 114, 182, 0.2);
  border-left: 4px solid var(--magenta);
  padding: 18px 24px; margin: 40px auto; max-width: 1240px;
  font-size: 0.84rem; color: var(--muted); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.ads-disclaimer strong { color: var(--magenta); }
.legal-strip { background: var(--deep); text-align: center; padding: 14px 24px; font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); }
.legal-strip a { color: var(--cyan); }

.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: 42px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.84rem; line-height: 1.6; max-width: 300px; color: var(--muted); }
.site-footer h4 { color: var(--text); font-size: 0.72rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.12em; }
.site-footer a { display: block; color: var(--muted); font-size: 0.86rem; margin-bottom: 10px; text-decoration: none; }
.site-footer a:hover { color: var(--cyan); }
.footer-base { max-width: 1240px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.78rem; 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(--cyan); 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.84rem; flex: 1; min-width: 260px; color: var(--muted); }
.cookie-inner a { color: var(--cyan); }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Catalog */
.catalog-hero { position: relative; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.catalog-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.catalog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,4,26,0.3), rgba(6,4,26,0.95)); }
.catalog-hero-inner { position: relative; z-index: 1; padding: 80px 24px 56px; max-width: 1240px; margin: 0 auto; width: 100%; }
.catalog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); 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); }
.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.8rem; font-weight: 500; cursor: pointer; color: var(--muted); transition: all 0.25s; }
.chip.active, .chip:hover { background: rgba(168, 85, 247, 0.15); color: var(--cyan); border-color: var(--violet); box-shadow: var(--glow-cyan); }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.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(34, 211, 238, 0.4); box-shadow: var(--glow-prism); transform: translateY(-3px); }
.cat-img { flex-shrink: 0; width: 36%; max-width: 180px; min-width: 120px; }
.cat-img img { width: 100%; aspect-ratio: 4/3; max-height: 140px; object-fit: cover; }
.cat-body { padding: 18px 20px; flex: 1; border-left: 2px solid var(--violet); min-width: 0; }
.cat-body h2 { font-family: var(--font-display); font-size: 0.95rem; margin: 8px 0; font-weight: 600; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 10px 0; }
.feat-tags li { font-size: 0.66rem; background: rgba(34, 211, 238, 0.1); padding: 4px 10px; border-radius: 999px; color: var(--cyan); }
.modalidad-tag { font-size: 0.72rem; color: var(--muted); margin-bottom: 10px; display: inline-block; }
.sku { font-size: 0.66rem; font-weight: 700; color: var(--lime); letter-spacing: 0.1em; }

.legal-page { padding: 56px 0 80px; background: var(--deep); }
.legal-page h1 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 32px 0 14px; color: var(--cyan); font-weight: 600; }
.legal-page p, .legal-page li { font-size: 0.92rem; 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-prism-inner, .about-prism, .contact-grid, .catalog-intro, .footer-grid, .svc-prism-grid { grid-template-columns: 1fr; }
  .timeline-prism { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .timeline-prism::before { display: none; }
  .about-float-tag { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 768px) {
  .stats-prism-inner, .perk-prism, .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-prism, .cat-card { flex-direction: column; }
  .svc-prism-img, .cat-img { width: 100%; max-width: none; }
  .svc-prism-img img, .cat-img img { max-height: 160px; aspect-ratio: 16/9; }
}
@media (max-width: 520px) {
  .stats-prism-inner, .perk-prism, .timeline-prism, .gallery-strip { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
