/* ============================================================
   AIMAN MOTORS — Estilos globales (nav + footer)
   Se cargan en todas las páginas automáticamente
   ============================================================ */

:root {
  --am-navy: #0B1E3D;
  --am-navy-mid: #1A3660;
  --am-navy-light: #243F73;
  --am-navy-pale: #D0DCF0;
  --am-charcoal: #1C2533;
  --am-off: #E8EDF5;
  --am-slate: #8A9BB4;
  --am-text-dark: #0F1E33;
  --am-text-mid: #3A4F66;
  --am-blue-accent: #5B9BF5;
}

/* ── NAV ── */
.am-nav {
  background: var(--am-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.am-nav-logo { display: flex; align-items: center; text-decoration: none; }
.am-nav-logo img { height: 36px; width: auto; object-fit: contain; }
.am-nav-links { display: flex; gap: 0; }
.am-nav-link { color: rgba(255,255,255,0.6); font-size: 13px; padding: 8px 16px; border-radius: 6px; text-decoration: none; }
.am-nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.am-nav-link.active { color: #fff; }
.am-nav-cta { background: #fff; color: var(--am-navy); border: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; }
@media(max-width:600px) { .am-nav-links { display: none; } .am-nav { padding: 0 1rem; } }

/* ── FOOTER ── */
.am-footer { background: #111827; padding: 3rem 2rem 1.5rem; width: 100%; }
.am-footer-inner { max-width: 860px; margin: 0 auto; }
.am-footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.am-footer-logo img { height: 40px; width: auto; object-fit: contain; margin-bottom: 12px; display: block; }
.am-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.25rem; }
.am-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.am-footer-social { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.12); transition: opacity 0.15s; }
.am-footer-social:hover { opacity: 0.8; }
.am-footer-social svg { width: 15px; height: 15px; flex-shrink: 0; }
.am-footer-social-wa { background: rgba(37,211,102,0.15); color: #4ADE80; }
.am-footer-social-ig { background: rgba(221,42,123,0.15); color: #F472B6; }
.am-footer-social-fb { background: rgba(24,119,242,0.15); color: #60A5FA; }
.am-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.am-footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.am-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; }
.am-footer-col a:hover { color: rgba(255,255,255,0.8); }
.am-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.am-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.am-footer-legal { display: flex; align-items: center; gap: 12px; }
.am-footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.am-footer-legal a:hover { color: rgba(255,255,255,0.6); }
.am-footer-legal span { color: rgba(255,255,255,0.15); font-size: 12px; }
@media(max-width:600px) { .am-footer-top { grid-template-columns: 1fr; } .am-footer-bottom { flex-direction: column; align-items: flex-start; } }
