/* ============================================================
   LUMENARIA STUDIO RENTALS
   Main Stylesheet — "Donde la luz cuenta historias"
   ============================================================ */

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

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --bg:            #0B0B0E;
  --bg-card:       #1A1A20;
  --accent:        #C8A35A;
  --accent-dim:    rgba(200, 163, 90, 0.28);
  --accent-faint:  rgba(200, 163, 90, 0.06);
  --deep:          #6B1F2A;
  --deep-hover:    #7d2330;
  --headline:      #E8E4D9;
  --body-text:     #B8B5AC;
  --muted:         #5A5750;
  --border:        #2A2A30;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-label:   'Cinzel', serif;
  --font-body:    'Lora', 'Georgia', serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --section-py:    120px;
  --container-max: 1320px;
  --container-px:  2rem;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   200ms ease;
  --t-slow:   300ms ease;
  --t-xslow:  600ms ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--body-text);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }
::selection { background: rgba(200, 163, 90, 0.25); color: var(--headline); }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-pad { padding: var(--section-py) 0; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 500;
  color: var(--headline);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 580px;
}

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-headline { color: var(--headline); }

/* Ornamental fleuron divider */
.fleuron {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  justify-content: center;
}
.fleuron::before, .fleuron::after {
  content: '';
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--accent-dim);
}
.fleuron-symbol {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.65;
  letter-spacing: 0.15em;
}

/* Gold rule */
.gold-rule {
  width: 100%;
  height: 1px;
  background: var(--accent-dim);
}

/* Section ornamental divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent-dim);
}
.section-divider-sym {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 0.25em;
}

/* ============================================================
   4. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes goldRuleDraw {
  from { clip-path: inset(0 50% 0 50%); }
  to   { clip-path: inset(0 0% 0 0%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0.35; transform: translateY(9px); }
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   5. CUSTOM CURSOR (desktop)
   ============================================================ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], label[for], input, select, textarea { cursor: none; }
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.2s ease;
}
.cursor-ring {
  width: 28px; height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0.45;
  transition: width 0.3s cubic-bezier(0.16,1,0.32,1),
              height 0.3s cubic-bezier(0.16,1,0.32,1),
              opacity 0.25s ease;
}
.cursor-dot.hover  { width: 10px; height: 10px; }
.cursor-ring.hover { width: 52px; height: 52px; opacity: 0.75; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: background var(--t-slow), color var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
  line-height: 1;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-slow);
}
.btn:hover::before { width: 100%; }

.btn-primary {
  background: var(--deep);
  color: var(--headline);
  border: 1px solid var(--deep);
}
.btn-primary:hover {
  background: var(--deep-hover);
  box-shadow: 0 8px 32px rgba(107, 31, 42, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--headline);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-faint);
  color: var(--headline);
}
.btn-ghost {
  background: transparent;
  color: var(--body-text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent-dim);
  color: var(--headline);
}
.btn-text {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  gap: 0.6rem;
  overflow: visible;
}
.btn-text::before { display: none; }
.btn-text svg { transition: transform var(--t-base); }
.btn-text:hover { color: var(--headline); }
.btn-text:hover svg { transform: translateX(5px); }

/* ============================================================
   7. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--t-slow), backdrop-filter var(--t-slow);
}
.site-header.scrolled {
  background: rgba(11, 11, 14, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-availability {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}
.header-main { padding: 1.35rem 0 0; }
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}
.logo-monogram {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.2em;
  line-height: 1;
}
.logo-wordmark {
  font-family: var(--font-label);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--headline);
  line-height: 1;
}
.site-nav ul {
  display: flex;
  gap: 2.75rem;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-label);
  font-size: 0.525rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body-text);
  position: relative;
  transition: color var(--t-base);
  padding-bottom: 4px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-slow);
}
.site-nav a:hover,
.site-nav a.active { color: var(--headline); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.header-rule {
  height: 1px;
  background: var(--accent-dim);
  margin-top: 1.35rem;
  animation: goldRuleDraw 1.4s ease-out forwards;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--headline);
  transition: all var(--t-slow);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 300;
  color: var(--headline);
  letter-spacing: 0.04em;
  transition: color var(--t-base);
}
.mobile-nav-overlay a:hover { color: var(--accent); }
.mobile-nav-logo {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 2rem;
}
.mobile-nav-rule {
  width: 1px;
  height: 40px;
  background: var(--accent-dim);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-studio.webp'), url('../images/hero-studio.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: #111115;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 14, 0.58);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 9rem 2rem 7rem;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 500;
  color: var(--headline);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hero-title .word.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-title .word-br {
  display: block;
  height: 0;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--body-text);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}
.hero-fleuron {
  margin: 0 auto 2.25rem;
  max-width: 360px;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.15s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-text {
  font-family: var(--font-label);
  font-size: 0.43rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ============================================================
   9. VENTAJAS SECTION
   ============================================================ */
.ventajas { background: var(--bg); }
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.ventaja-card {
  padding: 2.75rem 2.25rem;
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-slow);
  overflow: hidden;
}
.ventaja-card:nth-child(3n) { border-right: none; }
.ventaja-card:nth-child(n+4) { border-bottom: none; }
.ventaja-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.ventaja-card:hover { background: rgba(26, 26, 32, 0.8); }
.ventaja-card:hover::before { transform: scaleX(1); }
.ventaja-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.ventaja-icon svg { width: 100%; height: 100%; }
.ventaja-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.ventaja-rule {
  width: 20px; height: 1px;
  background: var(--accent);
  opacity: 0.55;
  margin: 0.875rem 0;
}
.ventaja-text {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--body-text);
}

/* ============================================================
   10. EQUIPMENT CATEGORIES (Homepage)
   ============================================================ */
.equip-cats { background: var(--bg-card); }
.equip-cats-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
.equip-cats-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.equip-cat-card {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: border-color var(--t-slow);
  display: block;
  text-decoration: none;
}
.equip-cats-grid-bottom .equip-cat-card { aspect-ratio: 16/7; }
.equip-cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-xslow);
  background-color: #111115;
}
.equip-cat-card:hover .equip-cat-img { transform: scale(1.05); }
.equip-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,14,0.92) 0%, rgba(11,11,14,0.15) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
}
.equip-cat-count {
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.equip-cat-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.equip-cat-desc {
  font-size: 0.8rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.equip-cat-link {
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  transition: color var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.equip-cat-link svg { transition: transform var(--t-base); width: 12px; height: 12px; }
.equip-cat-card:hover .equip-cat-link { color: var(--headline); }
.equip-cat-card:hover .equip-cat-link svg { transform: translateX(4px); }

/* ============================================================
   11. PACKAGES SECTION
   ============================================================ */
.paquetes-section { background: var(--bg); }
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.paquete-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: border-color var(--t-slow), box-shadow var(--t-slow), transform var(--t-slow);
}
.paquete-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  transform: translateY(-4px);
}
.paquete-card.featured {
  border: 1px solid var(--accent);
  background: var(--bg-card);
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.paquete-card.featured:hover { border-color: var(--accent); }
.paquete-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.22em;
  padding: 0.35rem 1.25rem;
  white-space: nowrap;
  text-transform: uppercase;
}
.paquete-eyebrow {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.paquete-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}
.paquete-subtitle {
  font-size: 0.825rem;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 2rem;
}
.paquete-price-block {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.paquete-price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  padding-bottom: 0.45rem;
}
.paquete-price-amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--headline);
  line-height: 1;
  font-variant-numeric: oldstyle-nums;
}
.paquete-price-unit {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding-bottom: 0.55rem;
  margin-left: 0.25rem;
}
.paquete-price-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.paquete-divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}
.paquete-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.paquete-feature {
  display: flex;
  gap: 0.875rem;
  font-size: 0.8125rem;
  color: var(--body-text);
  line-height: 1.55;
  align-items: flex-start;
}
.paquete-feature-check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.625rem;
}
.paquetes-footnote {
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.paquetes-footnote a { color: var(--accent); }

/* ============================================================
   12. WORKS GALLERY (Homepage)
   ============================================================ */
.works-section { background: var(--bg-card); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.work-card {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.work-card:first-child { grid-column: span 2; aspect-ratio: unset; min-height: 420px; }
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-xslow);
  background-color: #111115;
}
.work-card:hover img { transform: scale(1.05); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,14,0.72);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--t-slow);
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-category {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.work-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 0.25rem;
}
.work-card-meta { font-size: 0.75rem; color: var(--body-text); }
.work-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(11,11,14,0.9), transparent);
}
.work-card-label-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--headline);
}
.work-card-label-sub {
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* ============================================================
   13. HOW IT WORKS
   ============================================================ */
.como-funciona { background: var(--bg); }
.steps-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 4.5rem;
}
.steps-timeline {
  position: absolute;
  left: 1.5rem;
  top: 1.25rem; bottom: 1.25rem;
  width: 1px;
  background: var(--accent-dim);
}
.step-item {
  position: relative;
  padding-bottom: 3.75rem;
}
.step-item:last-child { padding-bottom: 0; }
.step-marker {
  position: absolute;
  left: -4.5rem;
  top: 0;
  width: 3rem; height: 3rem;
  border: 1px solid var(--accent-dim);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-slow);
}
.step-item:hover .step-marker { border-color: var(--accent); }
.step-numeral {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent);
  font-variant-numeric: oldstyle-nums;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
  line-height: 1.2;
}
.step-text {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.75;
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonios { background: var(--bg-card); }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonio-card {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--t-slow);
}
.testimonio-card:hover { border-color: var(--accent-dim); }
.testimonio-quote-mark {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: -0.75rem;
  user-select: none;
}
.testimonio-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--headline);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.testimonio-divider { width: 22px; height: 1px; background: var(--accent); margin-bottom: 1.25rem; }
.testimonio-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 0.2rem;
}
.testimonio-role {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   15. CONTACT SECTION (Shared)
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-frame {
  border: 1px solid var(--accent-dim);
  padding: 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-info-eyebrow {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.contact-info-group { margin-bottom: 1.75rem; }
.contact-info-label {
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}
.contact-info-value {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.65;
}
.contact-info-value a { transition: color var(--t-base); }
.contact-info-value a:hover { color: var(--accent); }
.contact-info-value strong { color: var(--headline); font-weight: 400; }
.contact-sede-label {
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

/* ============================================================
   16. FORM STYLES
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1.5rem;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  color: var(--headline);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--t-slow);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-control:focus { border-bottom-color: var(--accent); }
.form-control::placeholder { color: var(--muted); font-style: italic; font-size: 0.875rem; }
.form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px var(--bg) inset;
  -webkit-text-fill-color: var(--headline);
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath stroke='%235A5750' stroke-width='1' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 1.5rem;
  cursor: pointer;
}
select.form-control option { background: var(--bg-card); color: var(--headline); }
textarea.form-control {
  resize: vertical;
  min-height: 110px;
  border: 1px solid var(--border);
  padding: 0.875rem;
  line-height: 1.65;
}
textarea.form-control:focus { border-color: var(--accent); }
.form-honeypot { display: none !important; visibility: hidden !important; }
.form-checkbox-group {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding-top: 0.5rem;
}
.form-checkbox-group input[type="checkbox"] {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-checkbox-group label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  cursor: pointer;
}
.form-checkbox-group a { color: var(--accent); }
.form-checkbox-group a:hover { color: var(--headline); text-decoration: underline; }
.form-error {
  color: #e05252;
  font-family: var(--font-label);
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  display: none;
}
.form-error.show { display: block; }
.field-error .form-control { border-bottom-color: #e05252; }
.form-actions { grid-column: 1 / -1; padding-top: 0.5rem; }
.form-submit-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success-check {
  width: 48px; height: 48px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  font-size: 1.25rem;
}
.form-success-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--headline);
  margin-bottom: 0.5rem;
}
.form-success-text { font-size: 0.9rem; color: var(--body-text); }
.form-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
}
.form-loading.show { display: flex; }
.form-spinner {
  width: 18px; height: 18px;
  border: 1px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top { padding: 4.5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo-area {}
.footer-logo-wordmark {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--headline);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.footer-address {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}
.footer-nav-heading {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav-list a {
  font-size: 0.875rem;
  color: var(--body-text);
  transition: color var(--t-base);
}
.footer-nav-list a:hover { color: var(--headline); }
.footer-contact-item { margin-bottom: 1rem; }
.footer-contact-label {
  font-family: var(--font-label);
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.footer-contact-value { font-size: 0.875rem; color: var(--body-text); }
.footer-contact-value a { transition: color var(--t-base); }
.footer-contact-value a:hover { color: var(--accent); }
.footer-divider { height: 1px; background: var(--border); }
.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-legal-text {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.75;
}
.footer-legal-text a { color: var(--muted); transition: color var(--t-base); }
.footer-legal-text a:hover { color: var(--accent); }

/* ============================================================
   18. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 2px solid var(--accent);
  padding: 1.5rem;
  display: none;
}
.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}
.cookie-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  min-width: 260px;
}
.cookie-banner-text a { color: var(--accent); }
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cookie-accept { font-size: 0.55rem; padding: 0.75rem 1.5rem; }
.btn-cookie-reject {
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent-dim);
  color: var(--body-text);
  background: transparent;
  text-transform: uppercase;
  transition: all var(--t-base);
}
.btn-cookie-reject:hover { border-color: var(--accent); color: var(--headline); }
.btn-cookie-config {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-base);
}
.btn-cookie-config:hover { color: var(--accent); }
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,14,0.88);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.cookie-modal-backdrop.show { display: flex; }
.cookie-modal {
  background: var(--bg-card);
  border: 1px solid var(--accent-dim);
  max-width: 540px;
  width: 92%;
  padding: 2.5rem;
  max-height: 85vh;
  overflow-y: auto;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 0.5rem;
}
.cookie-modal-desc {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cookie-category {
  border-top: 1px solid var(--border);
  padding: 1.375rem 0;
}
.cookie-category:last-of-type { border-bottom: 1px solid var(--border); }
.cookie-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cookie-cat-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--headline);
}
.cookie-toggle {
  width: 40px; height: 22px;
  background: var(--border);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--t-base);
  flex-shrink: 0;
  position: relative;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left var(--t-base);
}
.cookie-toggle.on { background: var(--accent); }
.cookie-toggle.on::after { left: 21px; }
.cookie-toggle.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.cookie-cat-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }
.cookie-modal-footer {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   19. PAGE HERO (Secondary pages)
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,163,90,0.045) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--headline);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.08;
}
.page-hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.47rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2rem;
}
.breadcrumb a { color: var(--muted); transition: color var(--t-base); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   20. EQUIPMENT PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}
.filter-btn {
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t-base);
  background: transparent;
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--headline);
  background: var(--accent-faint);
}
.equip-page-section { margin-bottom: 5rem; }
.equip-page-section:last-child { margin-bottom: 0; }
.equip-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--accent-dim);
}
.equip-section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--headline);
}
.equip-section-count {
  font-family: var(--font-label);
  font-size: 0.47rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  white-space: nowrap;
}
.equip-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.equip-item-card {
  background: var(--bg-card);
  overflow: hidden;
  transition: background var(--t-slow);
  position: relative;
}
.equip-item-card:hover { background: #1e1e26; }
.equip-item-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.equip-item-card:hover::after { transform: scaleX(1); }
.equip-item-img-wrap {
  background: #0e0e12;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.equip-item-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-xslow);
  background-color: #111115;
}
.equip-item-card:hover .equip-item-img-wrap img { transform: scale(1.04); }
.equip-item-body { padding: 1.375rem 1.25rem; }
.equip-item-brand {
  font-family: var(--font-label);
  font-size: 0.43rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}
.equip-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}
.equip-item-specs { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1rem; }
.equip-item-spec {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.5;
}
.equip-item-spec::before { content: '—  '; color: var(--border); }
.equip-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
  margin-top: auto;
}
.equip-item-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.equip-item-price-currency { font-family: var(--font-display); font-size: 0.875rem; color: var(--accent); font-weight: 300; }
.equip-item-price-amount { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--headline); }
.equip-item-price-unit { font-family: var(--font-label); font-size: 0.4rem; letter-spacing: 0.15em; color: var(--muted); margin-left: 0.2rem; }
.equip-item-cta {
  font-family: var(--font-label);
  font-size: 0.43rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  transition: all var(--t-base);
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}
.equip-item-cta:hover { border-color: var(--accent); color: var(--headline); }

/* Advisory */
.advisory-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3.5rem;
  text-align: center;
  margin-top: 4rem;
}
.advisory-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 0.75rem;
}
.advisory-text {
  font-size: 0.9375rem;
  color: var(--body-text);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ============================================================
   21. PACKAGES PAGE
   ============================================================ */
.comparison-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 5rem;
  min-width: 620px;
}
.comparison-table th, .comparison-table td {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  vertical-align: middle;
}
.comparison-table thead th {
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: var(--bg-card);
  text-transform: uppercase;
}
.comparison-table thead th:first-child { text-align: left; color: var(--muted); }
.comparison-table tbody td { color: var(--body-text); }
.comparison-table tbody td:first-child {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.comparison-table .col-highlight { background: rgba(200,163,90,0.03); }
.comparison-table .check { color: var(--accent); font-size: 1rem; }
.comparison-table .dash { color: var(--border); }
.comparison-table .price-cell {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 300;
  color: var(--headline);
}
.package-full { padding: 4rem 0; border-top: 1px solid var(--border); }
.package-full:first-of-type { border-top: none; padding-top: 0; }
.package-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.package-full-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
  background-color: #111115;
}
.package-full-eyebrow {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.package-full-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--headline);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.package-full-price-block {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  margin: 1.25rem 0 0.2rem;
}
.package-full-currency { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; color: var(--accent); padding-bottom: 0.45rem; }
.package-full-amount { font-family: var(--font-display); font-size: 3.75rem; font-weight: 300; color: var(--headline); line-height: 1; font-variant-numeric: oldstyle-nums; }
.package-full-unit { font-family: var(--font-label); font-size: 0.48rem; letter-spacing: 0.15em; color: var(--muted); padding-bottom: 0.6rem; margin-left: 0.25rem; }
.package-full-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
.package-full-ideal {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--body-text);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.package-full-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.package-full-item {
  display: flex;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.55;
  align-items: flex-start;
}
.package-full-item-icon { color: var(--accent); flex-shrink: 0; font-size: 0.625rem; margin-top: 4px; }
.paquetes-custom {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3.5rem;
  text-align: center;
  margin-top: 4rem;
}
.faq-section { padding: var(--section-py) 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.625rem 0;
  cursor: pointer;
}
.faq-q-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent); flex-shrink: 0; width: 2rem; }
.faq-q-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--headline);
  flex: 1;
  line-height: 1.3;
}
.faq-q-icon { color: var(--accent); flex-shrink: 0; font-size: 1.125rem; line-height: 1; transition: transform var(--t-base); }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.75rem 3.25rem; font-size: 0.9375rem; color: var(--body-text); line-height: 1.75; }

/* ============================================================
   22. WORKS / PORTFOLIO PAGE
   ============================================================ */
.works-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.works-page-grid .work-card { aspect-ratio: 4/3; }
.works-page-grid .work-card:nth-child(7) { grid-column: span 2; }
.work-filter-bar { margin-bottom: 3rem; }
.works-featured-section {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.work-featured-item { padding: 4rem 0; border-top: 1px solid var(--border); }
.work-featured-item:first-child { border-top: none; padding-top: 0; }
.work-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.work-featured-img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--border);
  background-color: #111115;
}
.work-featured-eyebrow { font-family: var(--font-label); font-size: 0.48rem; letter-spacing: 0.22em; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.work-featured-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 500; color: var(--headline); margin-bottom: 0.5rem; line-height: 1.1; }
.work-featured-client { font-family: var(--font-label); font-size: 0.47rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 1.5rem; }
.work-featured-text { font-size: 0.9375rem; color: var(--body-text); line-height: 1.8; margin-bottom: 1.75rem; }
.work-equip-label { font-family: var(--font-label); font-size: 0.43rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.625rem; display: block; }
.work-equip-list { display: flex; flex-direction: column; gap: 0.25rem; }
.work-equip-item { font-family: var(--font-mono); font-size: 0.65rem; color: var(--body-text); }

/* ============================================================
   23. CONTACT PAGE
   ============================================================ */
.sedes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.sede-card { border: 1px solid var(--border); overflow: hidden; transition: border-color var(--t-slow); }
.sede-card:hover { border-color: var(--accent-dim); }
.sede-img { width: 100%; height: 220px; object-fit: cover; background-color: #111115; }
.sede-body { padding: 2rem; }
.sede-city {
  font-family: var(--font-label);
  font-size: 0.47rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.sede-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--headline); margin-bottom: 1rem; }
.sede-detail { font-size: 0.875rem; color: var(--body-text); margin-bottom: 0.4rem; line-height: 1.6; }
.contact-map-wrap {
  width: 100%;
  height: 380px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg) saturate(0.65); opacity: 0.88; }
.contact-map-placeholder { text-align: center; color: var(--muted); }
.contact-map-placeholder svg { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--accent); opacity: 0.4; }
.action-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.action-block {
  border: 1px solid var(--border);
  padding: 2.25rem;
  text-align: center;
  transition: border-color var(--t-slow), background var(--t-slow);
}
.action-block:hover { border-color: var(--accent-dim); background: var(--accent-faint); }
.action-block-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.action-block-label { font-family: var(--font-label); font-size: 0.45rem; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.action-block-value { font-family: var(--font-display); font-size: 1.1rem; color: var(--headline); margin-bottom: 0.25rem; }
.action-block-sub { font-size: 0.8rem; color: var(--muted); }
.action-block-value a { transition: color var(--t-base); }
.action-block-value a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.hours-table td { padding: 0.625rem 0; font-size: 0.875rem; border-bottom: 1px solid var(--border); color: var(--body-text); }
.hours-table td:first-child { color: var(--muted); font-family: var(--font-label); font-size: 0.47rem; letter-spacing: 0.15em; text-transform: uppercase; width: 40%; }
.hours-table tr:last-child td { border-bottom: none; }

/* ============================================================
   24. LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 4rem 0 6rem; }
.legal-date {
  font-family: var(--font-label);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--headline);
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  line-height: 1.2;
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--headline);
  margin: 2rem 0 0.625rem;
}
.legal-content p { font-size: 0.9375rem; color: var(--body-text); line-height: 1.82; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul { list-style: none; }
.legal-content ul li { position: relative; padding-left: 1rem; }
.legal-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; }
.legal-content ol { list-style: decimal; }
.legal-content li { font-size: 0.9375rem; color: var(--body-text); line-height: 1.8; margin-bottom: 0.4rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: 0.875rem; }
.legal-content th { background: var(--bg-card); color: var(--accent); font-family: var(--font-label); font-size: 0.47rem; letter-spacing: 0.15em; padding: 0.875rem 1rem; text-align: left; border: 1px solid var(--border); text-transform: uppercase; }
.legal-content td { padding: 0.875rem 1rem; border: 1px solid var(--border); color: var(--body-text); vertical-align: top; line-height: 1.65; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { color: var(--headline); text-decoration: underline; }
.legal-content strong { color: var(--headline); font-weight: 500; }
.legal-highlight {
  background: var(--bg-card);
  border-left: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.legal-highlight p { margin: 0; }
.cancellation-row-free td:last-child { color: #5db870; }
.cancellation-row-half td:last-child { color: var(--accent); }
.cancellation-row-full td:last-child { color: #e05252; }

/* ============================================================
   25. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  :root { --section-py: 100px; --container-px: 2rem; }
  .equip-catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-title { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
}

/* 992px */
@media (max-width: 992px) {
  :root { --section-py: 80px; --container-px: 2rem; }
  .ventajas-grid { grid-template-columns: repeat(2, 1fr); }
  .ventaja-card:nth-child(2n) { border-right: none; }
  .ventaja-card:nth-child(n+5) { border-bottom: none; }
  .paquetes-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .paquete-card.featured { margin: 0; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .works-grid .work-card:first-child { grid-column: 1 / -1; min-height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-frame { padding: 2.5rem; }
  .equip-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .package-full-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .work-featured-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sedes-grid { grid-template-columns: 1fr; }
  .action-blocks { grid-template-columns: 1fr 1fr; }
  .works-page-grid { grid-template-columns: 1fr 1fr; }
  .works-page-grid .work-card:nth-child(7) { grid-column: span 1; }
  .equip-cats-grid-top { grid-template-columns: 1fr 1fr; }
}

/* 768px */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .site-logo { flex-direction: row; gap: 0.75rem; }
  .logo-monogram { display: none; }
  .ventajas-grid { grid-template-columns: 1fr; }
  .ventaja-card { border-right: none; }
  .ventaja-card:nth-child(n+5) { border-bottom: 1px solid var(--border); }
  .ventaja-card:last-child { border-bottom: none; }
  .testimonios-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .works-grid { grid-template-columns: 1fr; }
  .works-grid .work-card:first-child { min-height: 280px; }
  .works-page-grid { grid-template-columns: 1fr; }
  .works-page-grid .work-card:nth-child(7) { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cookie-banner-inner { flex-direction: column; }
  .equip-cats-grid-top { grid-template-columns: 1fr; }
  .equip-cats-grid-bottom { grid-template-columns: 1fr; }
  .paquetes-grid { max-width: 420px; }
  .comparison-table { font-size: 0.8rem; }
  .contact-frame { padding: 2rem 1.5rem; }
  .action-blocks { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* 576px */
@media (max-width: 576px) {
  :root { --section-py: 60px; --container-px: 1.25rem; }
  .hero-title { font-size: 2.75rem; }
  .hero-content { padding: 8rem 1.25rem 5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
  .equip-catalog-grid { grid-template-columns: 1fr; }
  .paquetes-grid { max-width: 100%; }
  .paquete-price-amount { font-size: 2.75rem; }
  .steps-wrapper { padding-left: 3.5rem; }
  .step-marker { left: -3.5rem; width: 2.5rem; height: 2.5rem; }
  .comparison-wrap { overflow-x: scroll; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 560px; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .contact-frame { padding: 1.5rem 1rem; }
  .legal-content { padding: 2.5rem 0 4rem; }
}

/* 375px */
@media (max-width: 375px) {
  :root { font-size: 15px; --container-px: 1rem; }
  .hero-title { font-size: 2.25rem; }
  .logo-wordmark { font-size: 1.1rem; letter-spacing: 0.28em; }
  .btn { padding: 0.875rem 1.5rem; }
  .site-nav ul { gap: 1.5rem; }
}