/* ======================================================
   Estela.app – Licencias de uso
   Hoja de estilos v2.3 – Fondo estrellado unificado
   ====================================================== */

/* Reset y base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-primary: #00aaff;
  --c-primary-dark: #0077cc;
  --c-border: #ffffff2b;
  --c-text: #f0f0f0;
  --c-text-muted: #bcbcbc;
  --c-shadow: rgba(0, 170, 255, 0.35);
  --c-surface: rgba(0, 0, 0, 0.55);
}

body {
  font-family: 'Inter', sans-serif;
  background: url('/recursos/imagenes/fondo_estelado.png') no-repeat center/cover fixed;
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
}

.container {
  max-width: 820px;
  margin: 80px auto;
  padding: 2rem 1.75rem;
  background: var(--c-surface);
  border-radius: 18px;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.4rem;
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 0.4rem;
  margin: 2.4rem 0 1.1rem;
}

p {
  margin-bottom: 1.25rem;
}

ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.text-muted {
  color: var(--c-text-muted);
}

a {
  color: var(--c-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--c-primary-dark);
}

footer {
  text-align: center;
  padding: 60px 0 80px;
  font-size: .9rem;
  color: var(--c-text-muted);
}
