/* ═══════════════════════════════════
   NAROPS — Estilos base del tema
   (nav, footer, resets globales)
   ═══════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #08090D;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E4E4E7;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 26px; height: 26px; }
.logo-mark { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.4px; color: #08090D; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  color: #52525B; text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: #08090D; }
.nav-cta {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  background: #08090D; color: #FFFFFF !important;
  padding: 10px 22px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #284AE1 !important; transform: translateY(-1px); }

/* FOOTER */
.narops-footer {
  background: #07070F; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 48px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-mark { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.3px; color: rgba(255,255,255,0.82); }
.footer-copy { font-family: 'Outfit', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.22); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-family: 'Outfit', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* Botón outline para hero */
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: #FFFFFF; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  .narops-footer { padding: 44px 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-copy { order: 3; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
}

/* SCROLL REVEAL — global */
.narops-reveal { opacity: 0; transform: translateY(30px) scale(0.97); }
