/* =================================================================im
   Aegis Global Mobility & Documentation Audit - Design System
   Paleta inspirada en referencias corporativas de alta gama:
   Fondo oscuro profundo, acentos en oro sutil y tipografía editorial.
   ================================================================= */

:root {
  --bg-primary: #0a0d14;
  --bg-surface: #121824;
  --bg-elevated: #1a2233;
  --accent-gold: #c5a880;
  --accent-gold-hover: #d9bc94;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --border-subtle: rgba(197, 168, 128, 0.2);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- ADVERTENCIA TOP GOOGLE ADS --- */
.disclaimer-top-banner {
  background-color: #1e150a;
  border-bottom: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
}

/* --- NAVEGACIÓN LATERAL FLOTANTE EDITORIAL --- */
.editorial-sidebar-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-surface);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  z-index: 1000;
}

.brand-wrapper .brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.brand-wrapper .brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-gold);
  padding-left: 0.5rem;
}

.sidebar-footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* --- CONTENIDO PRINCIPAL --- */
.main-content-wrapper {
  margin-left: 280px;
  padding: 4rem;
  max-width: 1400px;
}

/* --- HERO MONUMENTAL --- */
.hero-monumental {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-text h1 span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.hero-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  filter: grayscale(20%) contrast(110%);
}

/* --- SECCIONES EDITORIALES --- */
.editorial-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.editorial-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.editorial-card {
  background-color: var(--bg-surface);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
}

.editorial-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.editorial-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- FOOTER GENERAL --- */
.site-footer {
  margin-left: 280px;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-col p, .footer-col ul {
  font-size: 0.875rem;
  color: var(--text-muted);
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .editorial-sidebar-nav {
    position: relative;
    width: 100%;
    height: auto;
  }
  .main-content-wrapper, .site-footer {
    margin-left: 0;
    padding: 2rem;
  }
  .hero-monumental, .editorial-grid {
    grid-template-columns: 1fr;
  }
}