=====
   COMPONENTS.CSS
   Componentes reutilizables del sitio
   (botones, textos, listas, CTA, micro‑componentes)
====================================================== */

/* =========================
   TIPOGRAFÍA DE TÍTULOS
========================= */
h1, h2, h3 {
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0.75rem 0 0;
  color: var()
}

/* =========================
   BOTONES
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);

  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;

  transition: all 0.2s ease;
}

/* Botón primario */
.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Botón secundario */
.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background-color: rgba(11, 15, 20, 0.04);
}

/* =========================
   LISTAS SIMPLES
========================= */
ul {
  padding-left: 1.2rem;
}

li {
  margin: 0.4rem 0;
}

/* =========================
   HERO (COMPONENTE BASE)
========================= */
.hero h1 {
  max-width: 20ch;
}

.hero p {
  max-width: 48ch;
  font-size: 1.05rem;
  color: var(--color-muted);
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
  text-align: center;
}

.cta-final p {
  margin-bottom: 1.25rem;
}

/* =========================
   LINKS FOOTER
========================= */
footer a:hover {
  text-decoration: underline;
}