/* Estilos de las páginas legales (aviso legal y privacidad): páginas estáticas, sin Angular */
:root {
  --text: #1c1f2b;
  --muted: #656b7a;
  --border: #e7e9f0;
  --soft: #f7f8fb;
  --primary: #4f46e5;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
}

.top {
  border-bottom: 1px solid var(--border);
}

.top-inner,
main,
.bottom-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  font-weight: 600;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand i {
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.back {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

main {
  padding-top: 48px;
  padding-bottom: 64px;
}

h1 {
  margin: 0 0 6px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.updated {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 14px;
}

h2 {
  margin: 36px 0 10px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

.card {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--soft);
}

.card dt {
  font-weight: 600;
}

.card dd {
  margin: 0 0 10px;
}

.card dd:last-child {
  margin-bottom: 0;
}

.bottom {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
