
/* ═══════════════════════════════════════════════════════
   SISTEMA DE VARIABLES UNIFICADO
   Comparte base con panel + login, agrega gold para landing
═══════════════════════════════════════════════════════ */
:root {
  /* ── Base compartida con panel y login ── */
  --accent:       #3b82f6;
  --accent-rgb:   59,130,246;
  --accent-dark:  #2563eb;
  --success:      #22c55e;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --bg:           #0f172a;
  --bg-2:         #0c1220;
  --bg-card:      #1e293b;
  --bg-card-2:    #263348;
  --border:       rgba(148,163,184,.12);
  --border-hover: rgba(148,163,184,.22);
  --text:         #e2e8f0;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;
  --radius:       .875rem;
  --radius-sm:    .5rem;
  --radius-xs:    .25rem;
  --shadow:       0 4px 24px rgba(0,0,0,.35);
  --transition:   .2s cubic-bezier(.4,0,.2,1);
  --font:         'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* ── Exclusivo landing: dorado como acento editorial ── */
  --gold:         #c9a84c;
  --gold2:        #e8c96a;
  --gold3:        #a07c2e;
  --gold-rgb:     201,168,76;
  --border-gold:  rgba(201,168,76,.2);
  --font-display: 'Bebas Neue', sans-serif;

  color-scheme: dark;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* Scrollbar — igual que el panel */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(148,163,184,.25); border-radius: 99px; }

/* ── Cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .18s, height .18s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 30px;
  border: 1px solid rgba(var(--gold-rgb),.3);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .18s, height .18s;
}
.cursor.hover  { width: 14px; height: 14px; }
.cursor-ring.hover { width: 44px; height: 44px; }

/* ── Grain — igual que panel ─────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000; opacity: .18;
}

/* ── Orbs de fondo ───────────────────────────────────── */
.bg-orb {
  position: fixed; border-radius: 50%;
  filter: blur(130px); pointer-events: none; z-index: 0;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--gold-rgb),.05) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.04) 0%, transparent 70%);
  bottom: 10%; left: -200px;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(15,23,42,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 800;
}
.navbar-brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text);
}
.navbar-brand em { color: var(--accent); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-login {
  font-family: var(--font-mono) !important;
  font-size: .67rem !important;
  color: var(--text-dim) !important;
  border: 1px solid var(--border);
  padding: .3rem .85rem;
  border-radius: var(--radius-xs);
  letter-spacing: .08em !important;
  transition: border-color var(--transition), color var(--transition) !important;
}
.nav-login:hover {
  border-color: rgba(var(--accent-rgb),.35) !important;
  color: var(--accent) !important;
}
.nav-login::after { display: none !important; }

/* Hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 16px;
  background: transparent; border: none;
  cursor: pointer; z-index: 810;
}
.menu-toggle span {
  width: 100%; height: 2px;
  background: var(--text-muted);
  border-radius: 2px; transition: all .3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--gold); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); background: var(--gold); }

/* ══════════════════════════════════════════════════════
   HERO — tipográfico, sin columna derecha vacía
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  position: relative; overflow: hidden; z-index: 1;
}

/* Líneas de cuadrícula */
.hero-grid { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid::before,
.hero-grid::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb),.06), transparent);
}
.hero-grid::before { left: 25%; }
.hero-grid::after  { right: 25%; }
.hero-hline {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--gold-rgb),.05), transparent);
}
.hero-hline.t { top: 28%; }
.hero-hline.b { bottom: 26%; }

.hero-inner {
  position: relative; z-index: 2;
  padding: 4rem 2rem 8rem;
  max-width: 960px; width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp .6s .1s forwards;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-family: var(--font-mono);
  font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}

/* Nombre principal */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem,14vw,13rem);
  line-height: .88; letter-spacing: .01em; color: var(--text);
  opacity: 0; animation: fadeUp .8s .25s forwards;
}
.hero-name .gold   { color: var(--gold); }
.hero-name .stroke {
  -webkit-text-stroke: 1px rgba(var(--gold-rgb),.3);
  color: transparent;
}

/* Subtítulo */
.hero-sub {
  margin-top: 2rem;
  display: flex; align-items: center;
  justify-content: center; gap: 1.5rem;
  opacity: 0; animation: fadeUp .7s .45s forwards;
}
.hero-sub-line { width: 40px; height: 1px; background: rgba(var(--gold-rgb),.25); }
.hero-sub span {
  font-size: .74rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted);
}

/* Descripción */
.hero-desc {
  margin: 2.5rem auto 0; max-width: 460px;
  font-size: .97rem; font-weight: 300; line-height: 1.9;
  color: var(--text-muted);
  opacity: 0; animation: fadeUp .7s .6s forwards;
}

/* CTAs */
.hero-actions {
  margin-top: 2.75rem;
  display: flex; align-items: center;
  justify-content: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s .75s forwards;
}

/* Botón dorado — acento editorial */
.btn-gold {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .78rem 1.75rem;
  background: var(--gold); color: #0a0f1e;
  font-family: var(--font);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: none;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

/* Botón ghost */
.btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .78rem 1.75rem;
  background: transparent; color: var(--text-muted);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: var(--radius-xs);
  cursor: none;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--border-gold); }

/* Stats bar inferior del hero */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border); z-index: 2;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(8px);
  opacity: 0; animation: fadeIn .8s 1s forwards;
}
.hero-stat {
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--gold); line-height: 1; flex-shrink: 0;
}
.hero-stat-text strong {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--text); margin-bottom: .15rem; letter-spacing: -.01em;
}
.hero-stat-text span { font-size: .7rem; font-weight: 300; color: var(--text-dim); }

/* ══════════════════════════════════════════════════════
   SECCIONES BASE
══════════════════════════════════════════════════════ */
.section { position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 6.5rem 3rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-tag::before {
  content: ''; width: 18px; height: 1px;
  background: var(--gold); display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,5.5vw,5rem);
  line-height: .95; letter-spacing: .01em; color: var(--text);
}

/* ══════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════ */
.servicios-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.servicios-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  margin-top: 3.5rem;
}
.servicio-card {
  background: var(--bg); padding: 2.25rem 1.75rem;
  position: relative; overflow: hidden;
  transition: background var(--transition);
}
.servicio-card:hover { background: var(--bg-card-2); }
.servicio-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width .4s ease;
}
.servicio-card:hover::after { width: 100%; }
.servicio-num {
  font-family: var(--font-display);
  font-size: 3.5rem; color: rgba(var(--gold-rgb),.07);
  line-height: 1; margin-bottom: 1rem;
  transition: color var(--transition);
}
.servicio-card:hover .servicio-num { color: rgba(var(--gold-rgb),.12); }
.servicio-icon { font-size: 1.4rem; margin-bottom: .85rem; display: block; }
.servicio-name {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: .03em;
  color: var(--text); margin-bottom: .5rem; line-height: 1;
}
.servicio-desc {
  font-size: .82rem; font-weight: 300;
  line-height: 1.78; color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════
   SOBRE MÍ
══════════════════════════════════════════════════════ */
.sobre-section { background: var(--bg); }
.sobre-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}
.sobre-text {
  font-size: .97rem; font-weight: 300;
  line-height: 1.95; color: var(--text-muted);
}
.sobre-text strong { color: var(--text); font-weight: 600; }
.sobre-quote {
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(var(--gold-rgb),.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .97rem; font-weight: 300; font-style: italic;
  color: var(--text); line-height: 1.72;
}

/* Pills */
.sobre-pills {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  position: sticky; top: calc(64px + 1.5rem);
}
.sobre-pill {
  background: var(--bg-card); padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition);
}
.sobre-pill:hover { background: var(--bg-card-2); }
.sobre-pill-label {
  font-family: var(--font-mono);
  font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-dim);
}
.sobre-pill-val {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: .04em; color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   RESEÑAS — carrusel
══════════════════════════════════════════════════════ */
.resenas-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.resenas-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1.5rem; margin-bottom: 3rem;
}
.resenas-controls { display: flex; align-items: center; gap: .65rem; }
.ctrl-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb),.2);
  background: rgba(var(--gold-rgb),.05);
  color: var(--gold); cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform .15s;
}
.ctrl-btn:hover {
  background: rgba(var(--gold-rgb),.13);
  border-color: rgba(var(--gold-rgb),.4);
  transform: scale(1.06);
}
.ctrl-btn svg { width: 14px; height: 14px; }
.dots { display: flex; align-items: center; gap: 5px; }
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(var(--gold-rgb),.18); cursor: pointer;
  transition: background .25s, width .25s;
}
.dot.active { background: var(--gold); width: 14px; border-radius: 3px; }

.carousel-wrap { overflow: hidden; }
.carousel-track {
  display: flex; gap: 1.25rem;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.test-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem;
  flex-shrink: 0; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.test-card:hover {
  border-color: rgba(var(--gold-rgb),.2);
  background: rgba(30,41,59,.5);
  transform: translateY(-3px);
}
.test-card::before {
  content: '\201C';
  position: absolute; top: -.4rem; right: 1rem;
  font-size: 5.5rem; color: rgba(var(--gold-rgb),.05);
  font-family: Georgia,serif; line-height: 1; pointer-events: none;
}
.test-stars { display: flex; gap: .2rem; margin-bottom: .85rem; }
.test-star  { width: 12px; height: 12px; }
.test-star.filled { color: var(--warning); }
.test-star.empty  { color: rgba(148,163,184,.15); }
.test-text {
  font-size: .862rem; line-height: 1.8;
  color: var(--text-muted); flex: 1; margin-bottom: 1.1rem;
}
.test-author {
  display: flex; align-items: center; gap: .7rem;
  padding-top: .9rem; border-top: 1px solid var(--border);
}
.test-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(var(--gold-rgb),.08); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: .62rem;
  flex-shrink: 0; border: 1px solid rgba(var(--gold-rgb),.14); overflow: hidden;
}
.test-av img { width: 100%; height: 100%; object-fit: cover; }
.test-name { font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .1rem; }
.test-meta { font-size: .67rem; color: var(--text-dim); }

.progress-wrap {
  height: 1px; background: var(--border);
  margin-top: 1.75rem; overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
  width: 0%; transition: width .1s linear;
}
.test-empty { padding: 2.5rem 1rem; color: var(--text-dim); font-size: .875rem; }

/* ══════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════ */
.contacto-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contacto-inner {
  max-width: 1200px; margin: 0 auto; padding: 6.5rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.contacto-left .section-title {
  font-size: clamp(3.5rem,8vw,7.5rem);
  margin-top: .75rem; margin-bottom: 0;
}
.contacto-left p {
  margin-top: 1.4rem;
  font-size: .92rem; font-weight: 300;
  line-height: 1.85; color: var(--text-muted); max-width: 360px;
}
.contacto-right { display: flex; flex-direction: column; gap: .85rem; }

.contact-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.15rem 1.4rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-card);
  cursor: none; position: relative; overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.contact-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold);
  transform: scaleY(0); transition: transform var(--transition);
  transform-origin: bottom;
}
.contact-card:hover {
  border-color: rgba(var(--gold-rgb),.2);
  background: var(--bg-card-2);
  transform: translateX(4px);
}
.contact-card:hover::before { transform: scaleY(1); }
.contact-card.whatsapp::before { background: var(--success); }
.contact-card.whatsapp:hover  { border-color: rgba(34,197,94,.2); }

.contact-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon.email    { background: rgba(var(--accent-rgb),.1); color: var(--accent); }
.contact-icon.whatsapp { background: rgba(34,197,94,.1); color: var(--success); }

.contact-info small {
  display: block; font-family: var(--font-mono);
  font-size: .58rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: .28rem;
}
.contact-info strong {
  display: block; font-size: .88rem;
  font-weight: 600; color: var(--text);
}
.contact-arrow {
  margin-left: auto; color: var(--text-dim);
  transition: color var(--transition), transform var(--transition);
}
.contact-card:hover .contact-arrow { color: var(--gold); transform: translateX(3px); }

.contacto-note {
  margin-top: .5rem;
  font-family: var(--font-mono);
  font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; align-items: center; gap: .5rem;
}
.contacto-note::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 8px var(--success);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card); position: relative; z-index: 1;
}
.footer-brand {
  font-size: 1rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--text-dim);
}
.footer-brand em { color: var(--accent); font-style: normal; }
.footer-copy {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .08em; color: var(--text-dim);
}

/* Scroll to top */
#scrollToTop {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(var(--gold-rgb),.08);
  border: 1px solid rgba(var(--gold-rgb),.18);
  color: var(--gold); font-size: .95rem;
  cursor: none; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--transition); z-index: 700;
}
#scrollToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollToTop:hover {
  background: rgba(var(--gold-rgb),.15);
  transform: translateY(-3px);
}

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10,15,30,.97); backdrop-filter: blur(16px);
    padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--border);
    gap: 0; z-index: 799;
  }
  .nav-links.open a {
    padding: .9rem 0; font-size: .88rem;
    border-bottom: 1px solid var(--border); width: 100%;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-login { margin-top: .75rem; text-align: center; }

  .hero-stats { display: none; }
  .hero-inner { padding-bottom: 3rem; }
  .section-inner { padding: 5rem 1.5rem; }
  .servicios-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-pills { position: static; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
}
@media (max-width: 640px) {
  .hero-name { font-size: clamp(4rem,17vw,6.5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-ghost { justify-content: center; }
  .resenas-header { flex-direction: column; align-items: flex-start; }
  .contacto-left .section-title { font-size: clamp(3rem,11vw,4.5rem); }
}