* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-dark: #0a0f1c; --bg-card: #131a2b; --gold: #d4af37; --gold-light: #f0d060;
    --text-light: #e2e8f0; --text-muted: #94a3b8; --border-color: rgba(212,175,55,0.15);
    --font: 'Inter', sans-serif; --max-width: 1200px; --header-height: 80px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #ffffff; color: var(--bg-dark); line-height: 1.6; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-weight: 700; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; color: var(--bg-dark); }
.section-header p { color: #555; max-width: 600px; margin: 0 auto; }
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.8rem 2rem; border-radius: 40px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b8960f); color: #0a0f1c; box-shadow: 0 8px 20px rgba(212,175,55,0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(212,175,55,0.45); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(212,175,55,0.1); }
/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background: rgba(10,15,28,0.95); backdrop-filter: blur(15px); z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.03); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { font-size: 1.7rem; font-weight: 800; color: white; letter-spacing: -1px; text-decoration: none; }
.logo span { color: var(--gold); }
.nav-menu ul { display: flex; list-style: none; gap: 2.2rem; }
.nav-menu a { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; transition: color 0.3s; position: relative; text-decoration: none; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 28px; height: 2px; background: white; }
main { margin-top: var(--header-height); }
section { padding: 6rem 0; }
/* FOOTER */
.footer { text-align: center; padding: 2.5rem 0; background: var(--bg-dark); color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.03); }
.footer a { color: var(--text-muted); margin: 0 1rem; text-decoration: none; }
.footer .legal-links { margin-bottom: 1rem; }
/* MOBILE */
@media (max-width: 780px) {
    .hamburger { display: flex; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px; height: 100vh; background: #0d1321; padding: 6rem 2rem 2rem; transition: 0.4s; border-left: 1px solid rgba(255,255,255,0.05); }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 2rem; }
}
