/* ═════════════════════════════════════════
   GARU Studios — estilos.css v5.0
══════════════════════════════════════════ */

:root {
  --bg:           #060A0F;
  --surface:      #0B1018;
  --surface2:     #101820;
  --border:       rgba(255,255,255,0.07);
  --accent:       #1A8FFF;
  --accent-bright:#4DABFF;
  --accent-glow:  rgba(26,143,255,0.25);
  --green:        #00E5A0;
  --text:         #EEF2F7;
  --muted:        #6B7B8E;
  --danger:       #FF4D6D;
  --font-head:    'Nunito Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:       14px;
  --max:          1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--bg); color: var(--text); font-family: var(--font-body);
        font-weight: 300; line-height: 1.7; overflow-x: hidden; 
        padding-top: 70px; /* Evita que el menú fijo tape el contenido superior */
      }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }

/* ══════════════════════════════
   NAV (Encabezado Principal)
══════════════════════════════ */
nav {
  position: fixed !important; 
  top: 0 !important; 
  left: 0 !important;
  width: 100% !important; 
  z-index: 9999 !important; /* Z-index máximo para que NADA lo tape */
  padding: 13px 0;
  background: rgba(6,10,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .92; }

/* ─ Lista de enlaces ── */
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li { display: flex; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 400;
  padding: 7px 13px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ── Botón CTA del nav ── */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .84rem !important;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s !important;
  box-shadow: 0 0 18px rgba(37,211,102,.35);
}
.nav-cta:hover {
  background: #22c35e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 28px rgba(37,211,102,.5) !important;
  color: #fff !important;
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Fondo foto */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/imagenes/hero-fondo-garustudios.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6,10,15,.96) 0%,
    rgba(6,10,15,.82) 48%,
    rgba(6,10,15,.45) 78%,
    rgba(6,10,15,.18) 100%
  );
}

/* ── Partículas ── */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  left: var(--x);
  top:  var(--y);
  font-size: calc(1.05rem * var(--s));
  opacity: 0;
  animation: particleDrift var(--dur, 8s) ease-in-out infinite var(--d, 0s);
  user-select: none;
  will-change: transform, opacity;
}

@keyframes particleDrift {
  0%   { opacity: 0;    transform: translateY(0)     scale(.85); }
  15%  { opacity: .18; }
  50%  { opacity: .11;  transform: translateY(-20px) scale(1);   }
  85%  { opacity: .18; }
  100% { opacity: 0;    transform: translateY(-40px) scale(.85); }
}

/* ── Layout grid hero ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,143,255,.12);
  border: 1px solid rgba(26,143,255,.3);
  color: var(--accent-bright);
  padding: 6px 14px; border-radius: 50px;
  font-size: .78rem; font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero-badge::before { content: '●'; font-size: .55rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  color: var(--text);
}
h1 em { font-style: normal; color: var(--accent-bright); }

.hero-sub {
  font-size: 1.05rem; color: #8FA0B5;
  max-width: 520px; margin-bottom: 34px;
  font-weight: 300; line-height: 1.75;
}

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 500; font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 32px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(26,143,255,.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); padding: 14px 22px; border-radius: 50px;
  font-size: .9rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }

.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 900; color: var(--text); line-height: 1; }
.stat-num span { color: var(--accent-bright); }
.stat-label { font-size: .73rem; color: var(--muted); margin-top: 3px; }

/* ── Imagen hero ── */
.hero-img-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1024 / 1536;
  object-fit: cover;
  border-radius: 20px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 24px 60px rgba(26,143,255,.28));
}
.hero-img-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(26,143,255,.22) 0%, transparent 65%);
  z-index: 1;
}

/* ── Imagen CTA final ── */
.cta-img-wrap { display: flex; justify-content: center; align-items: center; }
.cta-img-wrap img {
  width: 100%; max-width: 400px; height: auto;
  aspect-ratio: 1024 / 1536; object-fit: cover;
  border-radius: 20px;
  filter: drop-shadow(0 20px 50px rgba(26,143,255,.2));
}

/* ── Flotación suave ── */
@keyframes floatImg {
  0%   { transform: translateY(0)    rotate(0deg); }
  33%  { transform: translateY(-12px) rotate(.4deg); }
  66%  { transform: translateY(-6px)  rotate(-.3deg); }
  100% { transform: translateY(0)    rotate(0deg); }
}
.float-img { animation: floatImg 6s ease-in-out infinite; will-change: transform; }

/* ══════════════════════════════
   SECCIONES BASE
══════════════════════════════ */
section { padding: 96px 0; position: relative; }
section + section { border-top: 1px solid var(--border); }

.tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent-bright); margin-bottom: 14px;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.8vw, 2.65rem);
  font-weight: 800; letter-spacing: -.01em; line-height: 1.18;
  margin-bottom: 18px;
}
h2 em { font-style: normal; color: var(--accent-bright); }

.section-lead { font-size: 1.05rem; color: var(--muted); max-width: 540px; margin-bottom: 52px; }

/* ══════════════════════════════
   PROBLEMA
══════════════════════════════ */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 14px; }
.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; transition: border-color .2s;
}
.problem-card:hover { border-color: rgba(255,77,109,.3); }
.problem-icon { font-size: 1.7rem; margin-bottom: 12px; }
.problem-card h3 { font-family: var(--font-head); font-size: .98rem; font-weight: 700; margin-bottom: 7px; color: var(--danger); }
.problem-card p  { font-size: .85rem; color: var(--muted); }

/* ══════════════════════════════
   SOLUCIÓN
══════════════════════════════ */
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 18px; }
.sol-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.sol-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  opacity: 0; transition: opacity .2s;
}
.sol-card:hover { border-color: rgba(26,143,255,.25); transform: translateY(-4px); }
.sol-card:hover::before { opacity: 1; }
.sol-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: rgba(26,143,255,.1); line-height: 1; margin-bottom: 14px; }
.sol-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.sol-card p   { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.sol-list { list-style: none; }
.sol-list li { font-size: .83rem; color: var(--muted); padding: 4px 0 4px 16px; position: relative; }
.sol-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* ══════════════════════════════
   COMPARATIVA
══════════════════════════════ */
.compare-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.compare-col { background: var(--surface); }
.compare-col.garu { background: linear-gradient(135deg,rgba(26,143,255,.07),rgba(0,229,160,.04)); }
.compare-head { padding: 22px 26px; border-bottom: 1px solid var(--border); }
.compare-head h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.compare-col.garu .compare-head h3 { color: var(--accent-bright); }
.compare-col:not(.garu) .compare-head h3 { color: var(--muted); }
.compare-row {
  display: flex; padding: 13px 26px; border-bottom: 1px solid var(--border);
  align-items: center; gap: 10px; font-size: .875rem;
}
.compare-row:last-child { border-bottom: none; }
.check { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.cross { color: var(--danger); font-size: 1rem; flex-shrink: 0; }
.compare-col.garu .compare-row { color: var(--text); }
.compare-col:not(.garu) .compare-row { color: var(--muted); }

/* ══════════════════════════════
   SECTORES
══════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(185px,1fr)); gap: 12px; }
.sector-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px;
  text-align: center; text-decoration: none; display: block;
  transition: all .2s;
}
.sector-card:hover { background: var(--surface2); border-color: rgba(26,143,255,.35); transform: translateY(-3px); }
.sector-icon { font-size: 1.9rem; margin-bottom: 9px; display: block; }
.sector-card h3 { font-family: var(--font-head); font-size: .92rem; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.sector-kw { font-size: .73rem; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════
   PLATAFORMAS
══════════════════════════════ */
.plat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }
.plat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.plat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.plat-card:hover { border-color: rgba(26,143,255,.3); transform: translateY(-4px); }
.plat-card:hover::before { transform: scaleX(1); }

/* Cabecera de la ficha: logo + badge */
.plat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.plat-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  padding: 4px;
}

.plat-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(26,143,255,.1); border: 1px solid rgba(26,143,255,.2);
  color: var(--accent-bright);
  font-size: .7rem; font-weight: 600;
  padding: 3px 9px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .06em;
  width: fit-content;
}
.plat-badge.green { background: rgba(0,229,160,.1); border-color: rgba(0,229,160,.2); color: var(--green); }

.plat-card h3 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.plat-card p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }
.plat-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-bright); font-size: .82rem; font-weight: 500;
  margin-top: auto;
}
.plat-link svg { transition: transform .2s; }
.plat-card:hover .plat-link svg { transform: translateX(4px); }

/* ══════════════════════════════
   CASOS
══════════════════════════════ */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 18px; }
.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.case-tag {
  display: inline-block;
  background: rgba(26,143,255,.1); color: var(--accent-bright);
  font-size: .73rem; font-weight: 500;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 14px;
}
.case-card h3 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; margin-bottom: 18px; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric { background: var(--surface2); border-radius: 8px; padding: 13px; text-align: center; }
.metric-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--green); line-height: 1; }
.metric-label { font-size: .7rem; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════
   PROCESO
══════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 27px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg,transparent,var(--accent),var(--green),transparent);
  opacity: .25;
}
.step { text-align: center; padding: 22px 14px; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface2); border: 1px solid rgba(26,143,255,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-head); font-weight: 900; font-size: 1.05rem;
  color: var(--accent-bright); position: relative; z-index: 1;
}
.step h3 { font-family: var(--font-head); font-size: .88rem; font-weight: 700; margin-bottom: 5px; }
.step p   { font-size: .76rem; color: var(--muted); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list { max-width: 760px; }
details { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; transition: border-color .2s; }
details[open] { border-color: rgba(26,143,255,.3); }
summary {
  padding: 18px 22px; cursor: pointer;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; background: var(--surface); user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--accent-bright); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; margin-left: 16px; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 18px; font-size: .875rem; color: var(--muted); line-height: 1.75; background: var(--surface); }

/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
#cta-final {
  background: linear-gradient(135deg,rgba(26,143,255,.07),rgba(0,229,160,.04));
  border-top: 1px solid rgba(26,143,255,.18) !important;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
#cta-final h2 { margin-bottom: 18px; }
.cta-text > p { color: var(--muted); margin-bottom: 30px; }
.cta-contacts { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.contact-item { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .85rem; text-decoration: none; transition: color .2s; }
.contact-item:hover { color: var(--text); }

/* ══════════════════════════════
   FOOTER (Pie de Página)
══════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: var(--surface);
  position: relative !important;
  z-index: 1 !important;
  width: 100%;
  display: block !important;
}

.footer-top {
  display: flex;
  flex-direction: column; /* Logo arriba, texto abajo */
  align-items: center;    /* Todo centrado */
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  text-align: center;
}

.footer-logo { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img { 
  height: 38px; 
  width: auto; 
  filter: brightness(0) invert(1); 
  opacity: .82; 
}

.footer-tagline { 
  font-size: .88rem; 
  color: var(--muted); 
  max-width: 600px;
}

/* ── Menú de enlaces simples ── */
.footer-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 32px 0 !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  padding: 0 !important;
}

.footer-nav a {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: .85rem !important;
  transition: color .2s !important;
  display: inline-block !important;
  white-space: nowrap !important;
}

.footer-nav a:hover { 
  color: var(--text) !important;
}

/* Separador visual entre enlaces */
.footer-nav a:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  color: rgba(255,255,255,0.1);
}

.footer-bottom { 
  border-top: 1px solid var(--border); 
  padding-top: 24px; 
}
.footer-copy { 
  font-size: .82rem; 
  color: var(--muted); 
  text-align: center;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav a:not(:last-child)::after {
    display: none; /* Quitar separadores en móvil */
  }
}

/* ═════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  z-index: 998; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════
   ANIMACIONES DE ENTRADA
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up      { animation: fadeUp .7s ease both; }
.fade-up.d1   { animation-delay: .10s; }
.fade-up.d2   { animation-delay: .22s; }
.fade-up.d3   { animation-delay: .34s; }
.fade-up.d4   { animation-delay: .46s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 340px; gap: 32px; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-img-wrap { display: none; }
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-col:not(.garu) { display: none; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 67px; left: 0; right: 0;
    background: rgba(6,10,15,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a   { width: 100%; padding: 11px 14px; }
  .nav-cta       { justify-content: center; }

  section        { padding: 64px 0; }
  h1             { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats    { gap: 20px; }
  .footer-top    { flex-direction: column; align-items: flex-start; }
  .footer-nav    { flex-direction: column; }
  .footer-nav a  { width: 100%; text-align: center; }
}

/* Forzar que el footer-nav esté solo en el footer, no fijo arriba */
footer .footer-nav {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 1 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 24px !important;
  margin: 32px 0 !important;
}

footer .footer-nav a {
  color: var(--muted) !important;
  font-size: .85rem !important;
  text-decoration: none !important;
  display: inline-block !important;
}

footer .footer-nav a:hover {
  color: var(--text) !important;
}

footer .footer-nav a:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  color: rgba(255,255,255,0.1);
}
