/* coming-soon.css — página y bloque inline "Próximamente" */

/* ---- Página completa /proximamente ---- */
.cs-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54vh;
  padding: 3rem 1.5rem;
  gap: 0;
}

.cs-page .cs-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  opacity: 0.85;
}

.cs-page .cs-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.7rem;
  line-height: 1.1;
}

.cs-page .cs-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.cs-page .cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---- Bloque inline dentro de otra página ---- */
.cs-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.8rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: radial-gradient(circle at top, #0f172a 0, #020617 70%);
  gap: 0;
}

.cs-inline .cs-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.cs-inline .cs-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.cs-inline .cs-subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 1.6rem;
  line-height: 1.55;
}

.cs-inline .cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* ---- Decoración: línea de separación sobre el título de la página ---- */
.cs-divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #facc15 0, #fb923c 50%, #b45309 100%);
  margin: 0 auto 1.5rem;
}
