/* ═══════════════════════════════════
   ORNAMENTOS Y COMPONENTES GLOBALES
═══════════════════════════════════ */

/* ── Ornamento separador  ·─────·  ─────  ·─────· ── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 18px auto;
  width: 100%;
  max-width: 500px;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 200px;
}
.ornament-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  margin: 0 6px;
  opacity: 0.7;
}
.ornament-center {
  display: flex; align-items: center; gap: 6px; padding: 0 10px;
}

/* ── Título de sección serif dorado ── */
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 400;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 4px;
}

/* ── Texto body centrado ── */
.sec-body {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--text-body);
  text-align: center;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Ícono en círculo gris ── */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-icon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
}
.icon-circle svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }
.icon-circle-lg {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--bg-icon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.icon-circle-lg svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.2; }

/* ── Botón dorado relleno ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold-btn);
  color: #1A2A1A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover  { background: var(--gold-light); }
.btn:active { transform: scale(0.97); }

/* Botón outline */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(201,169,110,.1); }

/* Botón ancho completo */
.btn-full { width: 100%; }

/* ── Tarjeta base ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

/* ── Sección base ── */
.section {
  width: 100%;
  padding: 72px 24px;
  position: relative;
}
.section--dark { background: var(--bg-dark); }
.container {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }
