/* ═══════════════════════════════════════
   Gallegos & Verástegui — Shared Styles
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #1A2744;
  --navy-light: #243352;
  --navy-dark: #0F1B30;
  --gold: #C9A455;
  --gold-light: #F5EDD8;
  --gold-dim: rgba(201,164,85,0.15);
  --warm: #FAFAF7;
  --white: #fff;
  --slate: #64748B;
  --dark: #0F172A;
  --border: #E8E4DC;
  --green: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--dark); background: var(--warm); overflow-x: hidden; }
.serif { font-family: 'DM Serif Display', Georgia, serif; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(15,27,48,.97); backdrop-filter: blur(16px); border-bottom-color: var(--gold-dim); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 44px; height: 44px; border-radius: 6px; object-fit: contain; }
.nav-name { font-size: 15px; color: #fff; }
.nav-name em { color: var(--gold); font-style: normal; }
.nav-sub { font-size: 8px; color: rgba(255,255,255,.4); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a.link { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; transition: color .2s; }
.nav-links a.link:hover { color: #fff; }
@media(max-width:768px) { .nav-links a.link { display: none; } }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ── SECTIONS ── */
.section { padding: 96px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.gold-bar { width: 48px; height: 2.5px; background: var(--gold); margin: 14px 0; }
.section h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.2; }
.section p.sub { font-size: 15px; color: var(--slate); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); padding: 52px 24px 28px; border-top: 3px solid var(--gold); }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 4px; object-fit: contain; }
.footer-brand span { font-size: 15px; color: #fff; }
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col p { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,.5); display: block; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,.25); }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--navy); padding: 15px 36px; border-radius: 10px; font-size: 15px; font-weight: 700; display: inline-block; transition: transform .2s, box-shadow .2s; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,164,85,.3); }
.btn-outline { border: 1.5px solid rgba(201,164,85,.35); color: var(--gold); padding: 15px 36px; border-radius: 10px; font-size: 15px; font-weight: 600; display: inline-block; transition: all .2s; }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,164,85,.08); }

/* ── SHARED NAV SCRIPT ── */

