/* ===========================
   CAMINO A LA MEJOR VERSIÓN
   Shared Stylesheet
   =========================== */

:root {
  --primary: #d4af35;
  --bg-dark: #0D0D0D;
  --bg-mid: #141414;
  --bg-card: #1F1F1F;
  --text-muted: #b6b1a0;
  --border: #37342a;
  --deep-blue: #0A2463;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: var(--bg-dark); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.navbar-brand .material-symbols-outlined { color: var(--primary); font-size: 28px; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color .2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--primary); font-weight: 700; }
.navbar-cta {
  background: var(--primary);
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  transition: background .2s !important;
}
.navbar-cta:hover { background: #b5952d !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta {
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  padding: 0.875rem;
  margin-top: 0.5rem;
  border: none;
}

/* ---- FOOTER ---- */
footer {
  background: #0c0b09;
  border-top: 1px solid #1f1d17;
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-brand .material-symbols-outlined { color: rgba(212,175,53,0.5); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  color: rgba(182,177,160,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.8rem; color: rgba(182,177,160,0.4); }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-size: 1rem;
}
.btn-gold:hover { background: #b5952d; transform: scale(1.03); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(212,175,53,0.5);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  font-size: 1rem;
}
.btn-outline:hover { background: rgba(212,175,53,0.1); }
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--bg-dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-size: 1rem;
}
.btn-white:hover { background: var(--primary); transform: scale(1.03); }

/* ---- SECTION UTILS ---- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pt-nav { padding-top: 72px; }

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; align-items: center; }
  .navbar-inner { padding: 0 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
