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

:root {
  --pr-night: #0a0d12;
  --pr-deep: #12161e;
  --pr-panel: #1a2030;
  --pr-panel-hover: #222a3c;
  --pr-champagne: #e8d9c0;
  --pr-gold: #c9a86c;
  --pr-gold-bright: #dfc18a;
  --pr-cream: #f6f1e8;
  --pr-cream-dark: #ebe4d6;
  --pr-muted: #8f96a3;
  --pr-line: rgba(201, 168, 108, 0.22);
  --pr-line-soft: rgba(255, 255, 255, 0.08);
  --pr-glow: rgba(201, 168, 108, 0.15);
  --pr-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --pr-serif: "Cormorant Garamond", Georgia, serif;
  --pr-radius: 14px;
  --pr-radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pr-font);
  color: var(--pr-cream);
  background: var(--pr-night);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pr-gold-bright); text-decoration: none; }
a:hover { color: var(--pr-champagne); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: var(--pr-gold); color: var(--pr-night); padding: 8px 16px; }
.skip-link:focus { left: 8px; top: 8px; }

.pr-container { width: min(1180px, 92%); margin: 0 auto; }
.pr-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--pr-gold); margin-bottom: 18px;
}
.pr-eyebrow::before { content: ""; width: 32px; height: 1px; background: linear-gradient(90deg, var(--pr-gold), transparent); }

/* Mast flotante */
.pr-mast {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0; transition: background .35s, padding .35s, box-shadow .35s;
}
.pr-mast.is-scrolled {
  background: rgba(10, 13, 18, 0.92);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--pr-line-soft);
}
.pr-mast-inner {
  width: min(1180px, 92%); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
}
.pr-logo img { height: 42px; width: auto; }
.pr-nav { display: flex; gap: 28px; margin-left: auto; }
.pr-nav a {
  color: rgba(246, 241, 232, 0.65); font-size: .86rem; font-weight: 600;
  text-decoration: none; transition: color .2s;
}
.pr-nav a:hover, .pr-nav a.active { color: var(--pr-champagne); }
.pr-mast-actions { display: flex; align-items: center; gap: 16px; margin-left: 20px; }
.pr-mast-tel { font-size: .78rem; color: var(--pr-muted); }
.pr-mast-tel a { color: var(--pr-champagne); text-decoration: none; }
.pr-nav-toggle {
  display: none; background: none; border: 1px solid var(--pr-line);
  color: var(--pr-cream); padding: 8px 12px; border-radius: 8px; cursor: pointer; margin-left: auto;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; font-weight: 700; font-size: .84rem; border: none; cursor: pointer;
  text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s;
  font-family: var(--pr-font); border-radius: 999px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--pr-gold-bright), var(--pr-gold));
  color: var(--pr-night); box-shadow: 0 8px 32px var(--pr-glow);
}
.btn-gold:hover { color: var(--pr-night); box-shadow: 0 12px 40px rgba(201, 168, 108, 0.35); }
.btn-ghost {
  background: transparent; color: var(--pr-champagne);
  border: 1px solid var(--pr-line);
}
.btn-ghost:hover { border-color: var(--pr-gold); color: var(--pr-gold-bright); transform: translateY(-1px); }
.btn-ink {
  background: var(--pr-night); color: var(--pr-champagne);
  border: 1px solid var(--pr-line);
}
.btn-block { width: 100%; }

/* Hero cinematográfico */
.pr-hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 80px; overflow: hidden;
}
.pr-hero-aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(201, 168, 108, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 60%, rgba(120, 140, 180, 0.08), transparent 45%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201, 168, 108, 0.06), transparent 40%);
}
.pr-hero-grid {
  position: relative; z-index: 1;
  width: min(1180px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: center;
}
.pr-hero h1 {
  font-family: var(--pr-serif); font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05; margin: 0 0 22px; font-weight: 600; letter-spacing: -0.02em;
}
.pr-hero h1 em {
  font-style: italic; color: var(--pr-gold-bright);
  background: linear-gradient(135deg, var(--pr-champagne), var(--pr-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pr-hero-lead { color: var(--pr-muted); font-size: 1.05rem; max-width: 46ch; margin: 0 0 32px; line-height: 1.7; }
.pr-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.pr-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pr-hero-pills span {
  font-size: .7rem; padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--pr-line-soft);
  color: var(--pr-muted); font-weight: 600;
}
.pr-hero-visual { position: relative; }
.pr-hero-frame {
  position: relative; border-radius: var(--pr-radius-lg); overflow: hidden;
  border: 1px solid var(--pr-line);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pr-hero-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 13, 18, 0.7) 100%);
  pointer-events: none;
}
.pr-hero-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.pr-hero-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  font-size: .78rem; color: var(--pr-champagne);
}
.pr-hero-caption strong { display: block; color: var(--pr-gold); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.pr-float {
  position: absolute; background: rgba(26, 32, 48, 0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--pr-line); border-radius: 12px; padding: 14px 18px;
  font-size: .8rem; font-weight: 700; color: var(--pr-champagne);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  animation: pr-float 5s ease-in-out infinite;
}
.pr-float--a { top: -12px; right: -8px; animation-delay: 0s; }
.pr-float--b { bottom: 48px; left: -24px; animation-delay: 1.5s; }
.pr-float strong { display: block; font-family: var(--pr-serif); font-size: 1.4rem; color: var(--pr-gold-bright); font-weight: 700; }
@keyframes pr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Marquee */
.pr-marquee {
  border-top: 1px solid var(--pr-line-soft); border-bottom: 1px solid var(--pr-line-soft);
  background: var(--pr-deep); padding: 14px 0; overflow: hidden;
}
.pr-marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: pr-marquee 40s linear infinite;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pr-muted);
}
.pr-marquee-track span { white-space: nowrap; }
.pr-marquee-track span::after { content: "◆"; margin-left: 48px; color: var(--pr-gold); font-size: .5rem; vertical-align: middle; }
@keyframes pr-marquee { to { transform: translateX(-50%); } }

/* Stats */
.pr-stats {
  background: var(--pr-cream); color: var(--pr-night); padding: 0;
}
.pr-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: min(1180px, 92%); margin: 0 auto;
}
.pr-stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--pr-cream-dark);
}
.pr-stat:last-child { border-right: none; }
.pr-stat strong {
  display: block; font-family: var(--pr-serif); font-size: 2.4rem;
  color: var(--pr-night); font-weight: 700; line-height: 1;
}
.pr-stat span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--pr-muted); margin-top: 8px; display: block; }

/* Sections */
.pr-section { padding: clamp(72px, 10vw, 110px) 0; position: relative; }
.pr-section--cream { background: var(--pr-cream); color: var(--pr-night); }
.pr-section--cream .pr-eyebrow { color: #8b6914; }
.pr-section--cream .pr-eyebrow::before { background: linear-gradient(90deg, #8b6914, transparent); }
.pr-section--cream h2 { color: var(--pr-night); }
.pr-section--cream p { color: #5c5348; }
.pr-section-head { margin-bottom: 48px; max-width: 620px; }
.pr-section-head h2 {
  font-family: var(--pr-serif); font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 14px; font-weight: 600; line-height: 1.12;
}
.pr-section-head p { color: var(--pr-muted); margin: 0; font-size: .95rem; }
.pr-section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Gallery strip */
.pr-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pr-gallery-item {
  position: relative; border-radius: var(--pr-radius); overflow: hidden;
  border: 1px solid var(--pr-line-soft);
}
.pr-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.pr-gallery-item:hover img { transform: scale(1.04); }
.pr-gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(10, 13, 18, 0.9));
  font-size: .76rem; font-weight: 700; color: var(--pr-champagne);
}

/* Bento mosaic */
.pr-mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(180px, auto); gap: 16px;
}
.pr-mosaic-card {
  background: var(--pr-panel); border: 1px solid var(--pr-line-soft);
  border-radius: var(--pr-radius); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pr-mosaic-card:hover {
  border-color: var(--pr-line); transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.pr-mosaic-card--lg { grid-column: span 6; grid-row: span 2; }
.pr-mosaic-card--md { grid-column: span 4; }
.pr-mosaic-card--sm { grid-column: span 3; }
.pr-mosaic-img { overflow: hidden; flex: 1; min-height: 140px; }
.pr-mosaic-img img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; transition: transform .5s; }
.pr-mosaic-card:hover .pr-mosaic-img img { transform: scale(1.05); }
.pr-mosaic-body { padding: 22px 24px 26px; }
.pr-sku { font-size: .65rem; font-weight: 700; color: var(--pr-gold); letter-spacing: .12em; font-family: ui-monospace, monospace; }
.pr-mosaic-body h3 { font-family: var(--pr-serif); font-size: 1.15rem; margin: 8px 0 8px; font-weight: 600; }
.pr-mosaic-body p { font-size: .84rem; color: var(--pr-muted); margin: 0 0 14px; }
.pr-mosaic-price { font-size: 1.1rem; font-weight: 700; color: var(--pr-gold-bright); }

/* Pricing cards */
.pr-pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pr-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: var(--pr-panel); border: 1px solid var(--pr-line-soft);
  border-radius: 12px; transition: border-color .2s, background .2s;
}
.pr-price-row:hover { border-color: var(--pr-line); background: var(--pr-panel-hover); }
.pr-price-row--feat { border-color: var(--pr-line); background: linear-gradient(135deg, rgba(201, 168, 108, 0.08), var(--pr-panel)); }
.pr-price-row .sku { font-family: ui-monospace, monospace; font-size: .72rem; color: var(--pr-gold); font-weight: 700; min-width: 56px; }
.pr-price-row .name { flex: 1; font-size: .88rem; font-weight: 600; }
.pr-price-row .mod { font-size: .72rem; color: var(--pr-muted); display: none; }
.pr-price-row .usd { font-weight: 700; color: var(--pr-gold-bright); white-space: nowrap; font-size: .95rem; }

/* Steps */
.pr-journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.pr-journey::before {
  content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pr-line), transparent);
}
.pr-journey-step { text-align: center; padding: 0 12px; position: relative; }
.pr-journey-num {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--pr-panel); border: 1px solid var(--pr-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pr-serif); font-size: 1.2rem; font-weight: 700; color: var(--pr-gold);
  position: relative; z-index: 1;
}
.pr-journey-step h3 { font-size: .9rem; margin: 0 0 8px; font-weight: 700; }
.pr-journey-step p { font-size: .78rem; color: var(--pr-muted); margin: 0; }

/* FAQ */
.pr-faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pr-faq-item {
  padding: 28px; background: var(--pr-panel); border: 1px solid var(--pr-line-soft);
  border-radius: var(--pr-radius); position: relative; overflow: hidden;
}
.pr-faq-item::before {
  content: attr(data-num); position: absolute; top: -8px; right: 16px;
  font-family: var(--pr-serif); font-size: 4rem; font-weight: 700;
  color: rgba(201, 168, 108, 0.06); line-height: 1;
}
.pr-faq-item h3 { font-size: .92rem; margin: 0 0 10px; font-weight: 700; position: relative; }
.pr-faq-item p { font-size: .84rem; color: var(--pr-muted); margin: 0; position: relative; }

/* CTA band */
.pr-cta-band {
  position: relative; padding: 80px 4%; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #1a1510 0%, #2a2218 50%, #1a1510 100%);
  border-top: 1px solid var(--pr-line); border-bottom: 1px solid var(--pr-line);
}
.pr-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 108, 0.15), transparent 70%);
  pointer-events: none;
}
.pr-cta-band h2 {
  font-family: var(--pr-serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 14px; position: relative; font-weight: 600;
}
.pr-cta-band p { margin: 0 0 28px; color: var(--pr-muted); position: relative; font-size: .92rem; }

/* Contact */
.pr-contact { display: grid; grid-template-columns: 380px 1fr; gap: 24px; align-items: start; }
.pr-contact-photo {
  border-radius: var(--pr-radius-lg); overflow: hidden; border: 1px solid var(--pr-line);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.pr-contact-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pr-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pr-contact-tile {
  padding: 20px 22px; background: var(--pr-panel); border: 1px solid var(--pr-line-soft);
  border-radius: 12px;
}
.pr-contact-tile h3 { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--pr-gold); margin: 0 0 8px; }
.pr-contact-tile p { margin: 0; font-size: .88rem; color: var(--pr-champagne); }
.pr-contact-map {
  grid-column: 1 / -1; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--pr-line-soft); min-height: 260px; margin-top: 4px;
}
.pr-contact-map iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(30%) contrast(1.05); }

.ads-disclaimer {
  background: rgba(201, 168, 108, 0.08); border: 1px solid var(--pr-line);
  border-left: 3px solid var(--pr-gold); padding: 18px 22px; margin: 40px auto;
  font-size: .82rem; color: var(--pr-muted); max-width: 1180px; width: 92%;
  border-radius: 12px;
}
.ads-disclaimer a { color: var(--pr-gold-bright); font-weight: 700; }

/* Footer */
.pr-footer { background: var(--pr-deep); padding: 56px 0 28px; border-top: 1px solid var(--pr-line-soft); }
.pr-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.pr-footer-brand p { font-size: .84rem; margin: 14px 0 0; color: var(--pr-muted); max-width: 28ch; line-height: 1.6; }
.pr-footer-col h4 { color: var(--pr-gold); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 14px; }
.pr-footer-col a { display: block; color: rgba(246, 241, 232, 0.6); font-size: .84rem; margin-bottom: 10px; text-decoration: none; transition: color .2s; }
.pr-footer-col a:hover { color: var(--pr-champagne); }
.pr-footer-legal { display: flex; flex-wrap: wrap; gap: 14px 24px; padding-top: 24px; border-top: 1px solid var(--pr-line-soft); margin-bottom: 16px; }
.pr-footer-legal a { color: var(--pr-muted); font-size: .76rem; text-decoration: none; }
.pr-footer-copy { font-size: .72rem; color: rgba(143, 150, 163, 0.6); margin: 0; }
.pr-legal-strip { padding: 16px 0; text-align: center; font-size: .78rem; color: var(--pr-muted); background: var(--pr-night); border-top: 1px solid var(--pr-line-soft); }

/* Cookies */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(18, 22, 30, 0.96); backdrop-filter: blur(16px);
  color: var(--pr-cream); padding: 20px; transform: translateY(110%); transition: transform .4s;
  border-top: 1px solid var(--pr-line);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-inner p { margin: 0; font-size: .82rem; max-width: 680px; color: var(--pr-muted); }
.cookie-inner a { color: var(--pr-gold-bright); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

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

/* Inner / legal pages */
body.pr-page-light { background: var(--pr-cream); color: var(--pr-night); }
.pr-page-hero {
  padding: 140px 0 64px; text-align: center; position: relative; overflow: hidden;
  background: var(--pr-night);
}
.pr-page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 168, 108, 0.1), transparent 60%);
}
.pr-page-hero h1 { font-family: var(--pr-serif); font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 8px 0; position: relative; font-weight: 600; }
.pr-page-hero p { color: var(--pr-muted); max-width: 520px; margin: 0 auto; position: relative; font-size: .92rem; }

.legal-page { padding: 120px 0 88px; background: var(--pr-cream); color: var(--pr-night); }
.legal-page h1 { font-family: var(--pr-serif); font-size: clamp(2rem, 4vw, 2.6rem); margin: 0 0 8px; }
.legal-page .fecha { color: var(--pr-muted); margin-bottom: 28px; }
.legal-page h2 { font-size: 1.1rem; margin: 32px 0 12px; color: var(--pr-night); font-weight: 700; }
.legal-page p, .legal-page li { color: #4a4540; font-size: .92rem; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--pr-cream-dark); padding: 12px 14px; text-align: left; }
.legal-page th { background: var(--pr-cream-dark); font-weight: 700; }

.pr-about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pr-about-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--pr-radius-lg); border: 1px solid var(--pr-cream-dark); }

/* Catalog */
.pr-cat-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; }
.pr-chip {
  background: var(--pr-panel); border: 1px solid var(--pr-line-soft); color: var(--pr-muted);
  padding: 10px 18px; font-size: .76rem; font-weight: 700; cursor: pointer;
  border-radius: 999px; font-family: var(--pr-font); transition: all .2s;
}
.pr-chip.active, .pr-chip:hover { background: var(--pr-gold); color: var(--pr-night); border-color: var(--pr-gold); }
.pr-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.pr-cat-card {
  background: var(--pr-panel); border: 1px solid var(--pr-line-soft);
  border-radius: var(--pr-radius); overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.pr-cat-card:hover { transform: translateY(-4px); border-color: var(--pr-line); box-shadow: 0 20px 48px rgba(0,0,0,.35); }
.pr-cat-img { height: 200px; overflow: hidden; }
.pr-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pr-cat-card:hover .pr-cat-img img { transform: scale(1.05); }
.pr-cat-body { padding: 24px; }
.pr-cat-body h2 { font-family: var(--pr-serif); font-size: 1.1rem; margin: 6px 0 10px; font-weight: 600; }
.feat-tags { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tags li { font-size: .66rem; padding: 5px 11px; background: rgba(255,255,255,.04); border-radius: 999px; color: var(--pr-muted); border: 1px solid var(--pr-line-soft); }
.modalidad-tag { font-size: .72rem; color: var(--pr-gold); font-weight: 600; display: block; margin-bottom: 12px; }
.precio-slot { background: rgba(201,168,108,.06); padding: 14px 16px; margin-bottom: 16px; border-left: 3px solid var(--pr-gold); border-radius: 0 10px 10px 0; }
.precio-line strong { color: var(--pr-gold-bright); font-size: 1.1rem; }
.precio-line span { display: block; font-size: .72rem; color: var(--pr-muted); margin-top: 2px; }
.precio-note { font-size: .72rem; color: var(--pr-muted); margin: 6px 0 0; }
.tasa-bcv { font-size: .72rem; color: var(--pr-muted); }

.pr-legal-hub { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 32px; }
.pr-legal-hub a {
  display: block; padding: 24px; background: var(--pr-white, #fff); border: 1px solid var(--pr-cream-dark);
  border-radius: 12px; color: var(--pr-night); text-decoration: none; transition: border-color .2s, box-shadow .2s;
}
.pr-legal-hub a:hover { border-color: var(--pr-gold); box-shadow: 0 8px 24px rgba(0,0,0,.06); color: var(--pr-night); }
.pr-legal-hub strong { display: block; font-family: var(--pr-serif); font-size: 1.1rem; margin-bottom: 6px; }

@media (min-width: 900px) {
  .pr-price-row .mod { display: block; font-size: .7rem; margin-top: 2px; }
  .pr-price-row { flex-wrap: wrap; }
  .pr-price-row .name-wrap { flex: 1; min-width: 200px; }
}

@media (max-width: 1024px) {
  .pr-hero-grid { grid-template-columns: 1fr; }
  .pr-hero-visual { max-width: 480px; margin: 0 auto; }
  .pr-mosaic-card--lg, .pr-mosaic-card--md, .pr-mosaic-card--sm { grid-column: span 6; grid-row: span 1; }
  .pr-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .pr-stat:nth-child(2) { border-right: none; }
  .pr-journey { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pr-journey::before { display: none; }
  .pr-contact { grid-template-columns: 1fr; }
  .pr-contact-photo img { aspect-ratio: 16/10; max-height: 320px; }
  .pr-about-split { grid-template-columns: 1fr; }
  .pr-pricing { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pr-nav { display: none; position: absolute; top: 100%; left: 4%; right: 4%;
    background: rgba(18, 22, 30, 0.98); flex-direction: column; padding: 20px;
    border: 1px solid var(--pr-line-soft); border-radius: 12px; margin-top: 8px; }
  .pr-nav.open { display: flex; }
  .pr-nav-toggle { display: block; }
  .pr-mast-actions .pr-mast-tel { display: none; }
  .pr-mast { position: absolute; }
  .pr-mast.is-scrolled { position: fixed; }
  .pr-gallery { grid-template-columns: 1fr; }
  .pr-mosaic-card--lg, .pr-mosaic-card--md, .pr-mosaic-card--sm { grid-column: span 12; }
  .pr-faq { grid-template-columns: 1fr; }
  .pr-journey { grid-template-columns: 1fr; }
  .pr-stats-inner { grid-template-columns: 1fr; }
  .pr-stat { border-right: none; border-bottom: 1px solid var(--pr-cream-dark); }
  .pr-contact-grid { grid-template-columns: 1fr; }
  .pr-footer-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}
