/* ═══════════════════════════════════════════════════
   BASE — Reset, tipografía y utilidades globales
═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-sans);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ── Container ── */
.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

/* ── Section padding ── */
.section { padding-block: var(--section-py); }
.section-sm { padding-block: 4rem; }

/* ── Tag / eyebrow label ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .35rem .9rem;
  border-radius: 99px;
}

/* ── Section title ── */
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  margin-block: .75rem 1.5rem;
}
.section-title span  { color: var(--c-gold); }
.section-title em    { font-style: normal; color: var(--c-red); }

/* ── Lead paragraph ── */
.lead {
  font-size: 1.05rem;
  color: var(--c-muted2);
  max-width: 60ch;
  line-height: 1.85;
}

/* ── Gold divider ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--c-gold);
  margin-block: 1.5rem;
}

/* ── Section header block ── */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin-inline: auto; }

/* ════════════════════════
   BOTONES
════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: .9rem 1.9rem;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: all var(--tr);
  text-decoration: none;
}

.btn-primary {
  background: var(--c-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-red-h);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, .22);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .05);
}

.btn-gold {
  background: var(--c-gold);
  color: #111;
}
.btn-gold:hover {
  background: var(--c-gold-l);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--c-white);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--c-border-h);
}

.btn-lg {
  font-size: 1rem;
  padding: 1.1rem 2.4rem;
  border-radius: var(--r-lg);
}

.btn-sm {
  font-size: .8rem;
  padding: .65rem 1.3rem;
}
