/* ==========================================================================
   AYA HUMA VGA CREATIVE GROUP — EDITORIAL MINIMAL DARK DESIGN SYSTEM
   "Creatividad con raíz. Resultados con visión."
   Dirección de Arte: Ultra-Lujo Editorial • Silencio Visual • Tipografía Monumental
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:wght@200;300;400;500;600;700&display=swap');

:root {
  /* --- PALETA OFICIAL AMARILLO NARANJA (#f9ad1f) --- */
  --bg-primary: #070709;
  --bg-surface: #0E0E12;
  --bg-elevated: #13131A;
  
  --gold-aya: #f9ad1f;
  --gold-light: #f9ad1f;
  --gold-muted: rgba(249, 173, 31, 0.4);
  --gold-hairline: rgba(249, 173, 31, 0.25);
  --gold-glow: rgba(249, 173, 31, 0.15);

  --text-primary: #F5F3EE;
  --text-secondary: #B0AFC0;
  --text-muted: #6A697A;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(249, 173, 31, 0.35);

  /* --- TIPOGRAFÍA DE AUTORIDAD (CINZEL COMO EL LOGO) --- */
  --font-serif: 'Cinzel', 'EB Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- TRANSICIONES Y ESPACIADOS --- */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s var(--ease-editorial);
  --transition-fast: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height, 80px) + 1.5rem);
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

section[id],
div[id],
[id] {
  scroll-margin-top: calc(var(--header-height, 80px) + 1.5rem);
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
  background-color: var(--bg-primary);
}

/* --- TIPOGRAFÍA EDITORIAL MONUMENTAL --- */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Contenedor Editorial (90% Ancho de Pantalla) */
.container {
  width: 90%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* --- ELEMENTOS EDITORIALES DE FIRMA --- */
.hairline {
  height: 1px;
  width: 100%;
  background: var(--border-subtle);
  margin: 3rem 0;
}

.hairline-gold {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-aya), transparent);
  margin: 3rem 0;
}

.editorial-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--gold-light);
  display: inline-block;
  margin-bottom: 1rem;
}

.editorial-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gold-muted);
  line-height: 1;
  font-weight: 300;
  font-style: italic;
}

/* --- ICONOGRAFÍA VECTORIAL MINIMALISTA (1PX) --- */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

/* --- BOTONES MINIMALISTAS DE ALTA GAMA --- */
.btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-editorial-gold {
  background: var(--gold-aya);
  color: #070709;
  border: 1px solid var(--gold-light);
}

.btn-editorial-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 173, 31, 0.35);
}

.btn-editorial-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-editorial-outline:hover {
  border-color: var(--gold-aya);
  color: var(--gold-light);
  background: rgba(249, 173, 31, 0.08);
}

.btn-editorial-whatsapp {
  background: transparent;
  color: #2CE88E;
  border: 1px solid rgba(44, 232, 142, 0.3);
}

.btn-editorial-whatsapp:hover {
  background: rgba(44, 232, 142, 0.08);
  border-color: #2CE88E;
}

/* Grids Editoriales */
.grid-2-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

@media (max-width: 900px) {
  .grid-2-editorial, .grid-3-editorial {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
