/* ── BASE STYLES COMPARTIDOS ── */
:root {
  --dark:    #0D0D14;
  --dark2:   #12101C;
  --teal:    #0E2A2A;
  --teal2:   #1A4A44;
  --cream:   #F5F2EC;
  --cream2:  #EDEAE3;
  --white:   #FFFFFF;
  --gray:    #888888;
  --c-lav:   #C4B8E8;
  --c-turq:  #7DDBC8;
  --c-terra: #E8A878;
  --c-steel: #90C8E8;
  --c-gold:  #F0C840;
  --ff-disp: 'Nunito', sans-serif;
  --ff-body: 'Outfit', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(13,13,20,0.95); backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-mark { display: flex; align-items: center; }
.logo-word { font-family: var(--ff-disp); font-weight: 400; font-size: 42px; color: var(--white); line-height: 1; letter-spacing: -0.5px; }
.logo-sub { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.nav-links { display: flex; gap: 28px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--white); border-bottom-color: rgba(255,255,255,0.4); }
.btn-nav { background: var(--white); color: var(--dark); border: none; border-radius: 40px; padding: 11px 24px; font-size: 14px; font-family: var(--ff-body); font-weight: 500; cursor: pointer; text-decoration: none; transition: opacity .2s; white-space: nowrap; flex-shrink: 0; }
.btn-nav:hover { opacity: .88; }
.nav-burger { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
.nav-mobile { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--dark2); z-index: 99; padding: 28px 32px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.nav-mobile ul a { font-size: 18px; color: rgba(255,255,255,0.6); text-decoration: none; }

/* FOOTER */
footer { background: var(--dark); padding: 56px 48px 36px; }
.footer-inner { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; list-style: none; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.14); }

/* HELPERS */
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.section-label.dk { color: rgba(0,0,0,0.35); }
.section-h2 { font-family: var(--ff-disp); font-size: clamp(26px, 4vw, 42px); font-weight: 300; line-height: 1.2; margin-bottom: 14px; }
.section-h2.dk { color: var(--dark); }
.section-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); max-width: 520px; line-height: 1.75; margin-bottom: 48px; }
.section-desc.dk { color: var(--gray); }
.container { max-width: 960px; margin: 0 auto; }
.pt { padding-top: 96px; } 
.sec { padding: 96px 48px; }
.btn-white { background: var(--white); color: var(--dark2); border: none; border-radius: 40px; padding: 14px 32px; font-size: 14px; font-family: var(--ff-body); font-weight: 500; cursor: pointer; text-decoration: none; transition: opacity .2s; display: inline-block; }
.btn-white:hover { opacity: .9; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.22); border-radius: 40px; padding: 13px 32px; font-size: 14px; font-family: var(--ff-body); cursor: pointer; text-decoration: none; transition: border-color .2s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
.btns { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero { min-height: 50vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 130px 48px 64px; }
.page-hero h1 { font-family: var(--ff-disp); font-size: clamp(36px, 6vw, 64px); font-weight: 300; line-height: 1.1; max-width: 640px; margin-bottom: 16px; }
.page-hero p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.7; margin-bottom: 36px; }

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-burger { display: block; }
  .sec { padding: 72px 20px; }
  .page-hero { padding: 110px 20px 48px; }
  footer { padding: 48px 20px 28px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
