/* ============================================================
   ARI HERNÁNDEZ — Design System v3.0
   styles.css · Compartido en todas las páginas
   Manual de marca: junio 2026
   ============================================================ */

/* ── TOKENS v3 ── */
:root {
  /* Base */
  --obsidian:    #0f1c20;
  --teal:        #3d8fa3;
  --niebla:      #edf4f5;

  /* Extendida */
  --teal-deep:   #0a4d5c;
  --aguamarina:  #62b8b0;
  --teal-soft:   #c9dde2;

  /* Semántica */
  --verde:       #3a8c6e;
  --ambar:       #c4956a;
  --salmon:      #c0574a;

  /* Neutros */
  --tinta:       #1a2e34;
  --pizarra:     #5a8490;
  --borde:       #d0e4e8;
  --blanco:      #ffffff;

  /* Tipografía */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Radios */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transición */
  --dur:  220ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: var(--dur) var(--ease);

  /* Sombras */
  --shadow-card:   0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.09);
  --shadow-lift:   0 4px 16px rgba(0,0,0,.10), 0 16px 40px rgba(0,0,0,.12);

  /* Layout */
  --max: 1180px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--niebla);
  color: var(--tinta);
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
*:focus-visible { outline: 2px solid var(--aguamarina); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── UTILIDADES ── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pizarra); margin-bottom: 12px;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--teal);
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.sr.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
.nav {
  background: rgba(15,28,32,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 56px; width: auto; opacity: .9; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}
.nav-links a:hover { color: rgba(255,255,255,0.85); }
.nav-links a.active { color: rgba(255,255,255,0.85); }
.nav-cta {
  background: transparent !important;
  color: var(--ambar) !important;
  padding: 8px 18px;
  border: 1px solid rgba(196,149,106,.45) !important;
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  min-width: 104px; text-align: center; box-sizing: border-box;
}
.nav-cta:hover {
  background: rgba(196,149,106,.10) !important;
  border-color: var(--ambar) !important;
  color: var(--ambar) !important;
}
.nav-cta::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: calc(var(--r-sm) + 3px);
  border: 1.5px solid var(--ambar); opacity: 0;
  animation: pulseRing 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
  pointer-events: none;
}

/* Portal — contorno + onda verde, al extremo derecho del nav */
.nav-portal { color: var(--verde) !important; border-color: rgba(58,140,110,.45) !important; }
.nav-portal:hover { background: rgba(58,140,110,.10) !important; border-color: var(--verde) !important; color: var(--verde) !important; }
.nav-portal::after { border-color: var(--verde); }

/* Nav hamburger móvil */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--blanco); transition: all .2s;
}

/* ── BOTONES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-sm); border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn .ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  animation: rippleAnim 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
  pointer-events: none; background: rgba(255,255,255,0.22);
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

.btn-teal   { background: var(--teal); color: var(--blanco); }
.btn-teal:hover { background: #4da0b5; transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.16); font-weight: 500;
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,.4); color: var(--blanco); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,.65);
  border: 1.5px solid rgba(255,255,255,.2); font-weight: 500;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.45); color: var(--blanco); }

/* Botón ámbar — único CTA primario por página */
.btn-pulse {
  background: var(--ambar); color: var(--blanco);
  box-shadow: 0 4px 14px rgba(196,149,106,.35);
}
.btn-pulse:hover { background: #b5845a; transform: translateY(-2px); }
.btn-pulse::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: calc(var(--r-sm) + 4px);
  border: 2px solid var(--ambar); opacity: 0;
  animation: pulseRing 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
}
.btn-pulse::after {
  content: ''; position: absolute; inset: -9px;
  border-radius: calc(var(--r-sm) + 9px);
  border: 1.5px solid var(--ambar); opacity: 0;
  animation: pulseRing 2.8s cubic-bezier(0.4,0,0.6,1) 0.45s infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0; }
  20%  { opacity: 0.35; }
  100% { transform: scale(1.14); opacity: 0; }
}

/* ── FOOTER ── */
.footer {
  background: var(--obsidian);
  padding: 64px 40px 28px;
  position: relative; overflow: hidden;
}
.footer-watermark {
  position: absolute; right: -30px; top: -30px;
  height: 260px; width: auto;
  opacity: 0.03; pointer-events: none; color: var(--aguamarina);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.footer-logo { height: 30px; width: auto; opacity: .9; margin-bottom: 18px; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.30); line-height: 1.75; margin-bottom: 20px; }
.footer-cnsf {
  font-size: 11px; color: rgba(255,255,255,.20); line-height: 1.9;
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-cnsf::before {
  content: ''; display: inline-block; width: 2px; height: 36px;
  background: var(--teal); opacity: 0.4; border-radius: 1px;
  flex-shrink: 0; margin-top: 2px;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--aguamarina); opacity: 0.65; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.34); transition: color var(--transition); }
.footer-col ul a:hover { color: rgba(255,255,255,.80); }
.footer-col ul a .arr { font-size: 10px; opacity: 0.5; }
.footer-pf-list { display: flex; flex-direction: column; gap: 12px; }
.footer-pf-list a { display: block; font-size: 13px; color: rgba(255,255,255,.34); line-height: 1.4; transition: color var(--transition); }
.footer-pf-list a:hover { color: rgba(255,255,255,.80); }
.footer-pf-date { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .04em; color: rgba(255,255,255,.20); margin-top: 4px; }
.footer-pf-empty { font-size: 12px; color: rgba(255,255,255,.26); }
.footer-pf-all { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.34); }
.footer-pf-all:hover { color: rgba(255,255,255,.80); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11px; color: rgba(255,255,255,.16);
  flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 1;
}

/* ── DOT NAVIGATOR (index only) ── */
.dot-nav {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 200; display: flex; flex-direction: column;
  align-items: flex-end; gap: 14px;
}
.dot-item {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; background: none; border: none; padding: 0;
}
.dot-tooltip {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--aguamarina); background: rgba(15,28,32,0.92);
  padding: 4px 10px; border-radius: 4px; white-space: nowrap;
  opacity: 0; transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none; border: 1px solid rgba(98,184,176,0.18);
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-soft); opacity: 0.35; flex-shrink: 0; transition: all 0.35s cubic-bezier(0.16,1,0.3,1); }
.dot-item.active .dot { background: var(--aguamarina); opacity: 1; width: 8px; height: 8px; box-shadow: 0 0 0 3px rgba(98,184,176,0.18); }
.dot-item:hover .dot { opacity: 0.7; background: var(--aguamarina); }
.dot-item:hover .dot-tooltip { opacity: 1; transform: translateX(0); }

/* ── INDEX — HERO ── */
.hero {
  background: var(--obsidian);
  min-height: auto;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 56px 28px 64px; position: relative; overflow: hidden;
}
.hero-bg-mono {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  height: 85%; width: auto; opacity: 0.04; pointer-events: none; color: var(--aguamarina);
}
.hero-stat {
  position: absolute; top: 80px; right: 28px;
  background: var(--blanco); border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-lift); opacity: 0;
}
.hero-stat.in { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-license {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  color: var(--aguamarina); letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 22px; opacity: 0;
}
.hero-license::before {
  content: ''; display: inline-block; width: 2px; height: 11px;
  background: var(--aguamarina); border-radius: 1px; flex-shrink: 0;
}
.hero-license.in { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 56px); font-weight: 600;
  line-height: 1.08; color: var(--blanco); letter-spacing: -1.2px; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--aguamarina); }
.hero-line { display: block; overflow: hidden; }
.hero-line-inner { display: block; transform: translateY(110%); opacity: 0; }
.hero-line-inner.in { animation: lineSlide 0.72s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes lineSlide { to { transform: translateY(0); opacity: 1; } }
.hero-sub { font-size: 15px; line-height: 1.78; color: rgba(255,255,255,.46); margin-bottom: 32px; max-width: 340px; opacity: 0; }
.hero-sub.in { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; opacity: 0; }
.hero-actions.in { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.s-label { font-family: var(--font-mono); font-size: 8px; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.s-val { font-size: 12px; font-weight: 500; color: var(--tinta); line-height: 1.4; }

/* ── TYPEWRITER ── */
.typewriter {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(98,184,176,.8); letter-spacing: 0.05em; line-height: 2.2; min-height: 1.4em;
}
.typewriter-cursor {
  display: inline-block; width: 1px; height: 0.9em;
  background: var(--teal); margin-left: 1px; vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── GRADIENT BRIDGE (hero → about) ── */
.gradient-bridge {
  height: 160px;
  background: linear-gradient(to bottom, var(--obsidian), var(--niebla));
  pointer-events: none;
}

/* ── ABOUT ── */
.about { background: var(--niebla); padding: 88px 40px; }
.about-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: start; }
.about-quote { border-left: 2px solid var(--teal); padding-left: 20px; margin-bottom: 24px; }
.about-quote p { font-family: var(--font-display); font-size: 15px; font-style: italic; line-height: 1.65; color: var(--pizarra); font-weight: 400; }
.about h2 { font-family: var(--font-display); font-size: clamp(22px,2.6vw,32px); font-weight: 600; color: var(--tinta); letter-spacing: -0.3px; line-height: 1.2; margin-bottom: 18px; }
.about-body { font-size: 15px; line-height: 1.78; color: var(--pizarra); margin-bottom: 14px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.pillar { background: var(--blanco); border-radius: var(--r-md); padding: 18px; border: 1px solid var(--borde); }
.pillar h4 { font-size: 13px; font-weight: 600; color: var(--tinta); margin-bottom: 5px; }
.pillar p { font-size: 12px; color: var(--pizarra); line-height: 1.6; }

/* ── SERVICES (index) ── */
.services { background: var(--niebla); padding: 88px 0; }
.section-header { margin-bottom: 44px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(24px,2.8vw,38px); font-weight: 600; color: var(--tinta); letter-spacing: -0.4px; line-height: 1.15; margin-top: 10px; }
.service-list { display: flex; flex-direction: column; }
.service-item {
  display: grid; grid-template-columns: 76px 1fr 28px; gap: 0 18px;
  align-items: center; padding: 22px 16px;
  border-bottom: 1px solid var(--borde); cursor: pointer;
  border-radius: var(--r-sm); transition: background var(--transition);
}
.service-item:first-child { border-top: 1px solid var(--borde); }
.service-item:hover { background: var(--blanco); }
.service-item:hover .service-title { color: var(--teal); }
.service-item:hover .service-arrow { color: var(--teal); }
.service-title { font-size: 15px; font-weight: 600; color: var(--tinta); margin-bottom: 3px; transition: color var(--transition); }
.service-desc { font-size: 13px; color: var(--pizarra); line-height: 1.5; }
.service-arrow { font-size: 18px; color: var(--teal-soft); transition: color var(--transition); }

/* ── WHY ── */
.why { background: var(--teal-deep); padding: 88px 40px; position: relative; overflow: hidden; }
.why-watermark { position: absolute; left: -60px; bottom: -60px; height: 440px; width: auto; opacity: 0.04; pointer-events: none; color: var(--aguamarina); }
.why-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.why .eyebrow { color: rgba(255,255,255,.26); }
.why h2 { font-family: var(--font-display); font-size: clamp(24px,2.8vw,38px); font-weight: 600; color: var(--blanco); letter-spacing: -0.4px; line-height: 1.15; margin-top: 10px; margin-bottom: 44px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r-lg); overflow: hidden; }
.why-card { background: var(--teal-deep); padding: 28px 24px; transition: background var(--transition); }
.why-card:hover { background: #0d5e71; }
.why-card h3 { font-size: 14px; font-weight: 600; color: var(--blanco); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.68; }

/* ── CTA SECTION ── */
.cta-section { background: var(--niebla); padding: 88px 40px; }
.cta-box {
  background: var(--obsidian);
  border-radius: var(--r-xl); padding: 80px 60px; text-align: center;
  max-width: var(--max); margin: 0 auto;
  position: relative; overflow: hidden;
}
/* Detalle teal como acento estructural en el CTA */
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--aguamarina), transparent);
  opacity: 0.5;
}
.cta-box h2 { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); font-weight: 600; color: var(--blanco); letter-spacing: -0.4px; margin-bottom: 14px; }
.cta-box p { font-size: 15px; color: rgba(255,255,255,.50); max-width: 480px; margin: 0 auto 36px; line-height: 1.78; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.22); letter-spacing: 0.08em; margin-top: 20px; }

/* ── GRADIENT BRIDGE — CTA hacia footer ── */
.bridge-footer {
  height: 120px;
  background: linear-gradient(to bottom, var(--niebla), var(--obsidian));
  pointer-events: none;
  margin-top: -88px; /* absorbe el padding del cta-section */
  position: relative; z-index: 0;
}

/* ── SERVICIOS PAGE — HERO ── */
.servicios-hero {
  background: var(--obsidian);
  padding: 88px 40px 80px; position: relative; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
}
.servicios-hero-watermark { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); height: 88%; width: auto; opacity: 0.04; pointer-events: none; color: var(--aguamarina); }
.servicios-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.servicios-hero .eyebrow { color: rgba(255,255,255,.26); }
.servicios-hero h1 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 600; color: var(--blanco); letter-spacing: -1.2px; line-height: 1.08; margin-top: 10px; max-width: 580px; }
.servicios-hero h1 em { font-style: italic; color: var(--aguamarina); }
.servicios-hero-sub { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: 0.06em; margin-top: 18px; }

/* ── SERVICIOS PAGE — CARDS ── */
.service-cards { background: var(--niebla); padding: 72px 0; }
.service-card {
  background: var(--blanco); border-radius: var(--r-xl); padding: 44px;
  margin-bottom: 16px;
  display: grid; grid-template-columns: 1fr 260px; gap: 44px; align-items: center;
  border: 1px solid var(--borde);
  transition: box-shadow var(--transition), transform var(--transition); cursor: pointer;
}
.service-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.service-card-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.service-card-tag::before { content: ''; width: 2px; height: 12px; background: var(--teal); border-radius: 1px; }
.service-card h2 { font-family: var(--font-display); font-size: clamp(20px,2.2vw,28px); font-weight: 600; color: var(--tinta); margin-bottom: 14px; letter-spacing: -0.3px; line-height: 1.2; }
.service-card p { font-size: 14px; color: var(--pizarra); line-height: 1.75; margin-bottom: 22px; }
.service-card-visual {
  background: linear-gradient(135deg, var(--niebla) 0%, var(--teal-soft) 100%);
  border-radius: var(--r-lg); height: 180px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.service-card-visual .big-tag { font-family: var(--font-display); font-size: 52px; font-weight: 600; color: var(--teal); opacity: 0.18; }
.service-card-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── RESERVAR PAGE ── */
.reservar-hero { background: var(--obsidian); padding: 72px 40px 64px; position: relative; overflow: hidden; }
.reservar-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.reservar-hero .eyebrow { color: rgba(255,255,255,.26); }
.reservar-hero h1 { font-family: var(--font-display); font-size: clamp(30px,4vw,52px); font-weight: 600; color: var(--blanco); letter-spacing: -1.2px; line-height: 1.07; margin-top: 12px; }
.reservar-hero h1 em { font-style: italic; color: var(--aguamarina); }
.reservar-hero-sub { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: 0.06em; margin-top: 18px; }

/* ── PRIVACIDAD PAGE ── */
.privacidad-hero { background: var(--obsidian); padding: 72px 40px 56px; position: relative; overflow: hidden; }
.privacidad-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.privacidad-hero .eyebrow { color: rgba(255,255,255,.26); }
.privacidad-hero h1 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,44px); font-weight: 600; color: var(--blanco); letter-spacing: -1px; line-height: 1.1; margin-top: 10px; }
.privacidad-body { background: var(--niebla); padding: 72px 40px; }
.privacidad-inner { max-width: 800px; margin: 0 auto; }
.privacidad-tabs { display: flex; gap: 8px; margin-bottom: 40px; }
.priv-tab {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--r-sm);
  border: 1.5px solid var(--borde);
  cursor: pointer; transition: all var(--transition);
  background: var(--blanco); color: var(--pizarra);
}
.priv-tab.active { background: var(--teal); border-color: var(--teal); color: var(--blanco); }
.priv-content { display: none; }
.priv-content.active { display: block; }
.priv-section { margin-bottom: 36px; }
.priv-section h2 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--tinta); margin-bottom: 12px; letter-spacing: -0.2px; }
.priv-section h3 { font-size: 14px; font-weight: 600; color: var(--tinta); margin-bottom: 8px; margin-top: 18px; }
.priv-section p { font-size: 14px; color: var(--pizarra); line-height: 1.8; margin-bottom: 10px; }
.priv-section ul { margin-left: 16px; margin-bottom: 10px; }
.priv-section ul li { font-size: 14px; color: var(--pizarra); line-height: 1.8; list-style: disc; }
.priv-section strong { color: var(--tinta); font-weight: 600; }
.priv-meta { font-family: var(--font-mono); font-size: 10px; color: var(--pizarra); letter-spacing: 0.06em; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--borde); }
.priv-contact-box { background: var(--blanco); border-radius: var(--r-lg); padding: 28px; border: 1.5px solid var(--borde); margin-top: 32px; }
.priv-contact-box h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--tinta); margin-bottom: 12px; }
.priv-contact-box p { font-size: 14px; color: var(--pizarra); line-height: 1.75; }
.priv-contact-box a { color: var(--teal); font-weight: 500; }
.priv-contact-box a:hover { color: var(--aguamarina); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) and (min-width: 681px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav { padding: 10px 20px; }
  .nav-logo img { height: 40px; }
  /* Menú desplegable móvil */
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(15,28,32,.98);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    padding: 8px 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav.open .nav-links { display: flex; }
  .nav.open .nav-links a:not(.nav-cta) { padding: 13px 2px; }
  .nav.open .nav-cta { margin-top: 10px; text-align: center; }
  .nav.open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-hamburger { display: flex; }

  .hero { padding: 72px 20px 56px; }
  .hero-stat { display: none; }

  .gradient-bridge { height: 80px; }

  .about { padding: 64px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .pillars { grid-template-columns: 1fr; }

  .services { padding: 64px 0; }
  .container { padding: 0 20px; }

  .why { padding: 64px 20px; }
  .why-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 64px 20px; }
  .cta-box { padding: 48px 24px; }
  .hero-actions { flex-direction: column; }

  .footer { padding: 48px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }

  .dot-nav { right: 12px; }
  .dot-tooltip { display: none; }

  .servicios-hero { padding: 72px 20px 64px; min-height: auto; }
  .service-cards { padding: 48px 0; }
  .service-card { grid-template-columns: 1fr; }
  .service-card-visual { display: none; }

  .reservar-hero { padding: 56px 20px 44px; }

  .privacidad-hero { padding: 56px 20px 44px; }
  .privacidad-body { padding: 48px 20px; }
  .privacidad-tabs { flex-direction: column; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
