/* Estilos compartidos por todas las páginas del sitio de Siaki.
   Vive en un solo archivo a propósito: antes el CSS estaba incrustado en
   index.html, y al separar privacidad/términos/eliminar-cuenta/soporte en
   páginas propias habrían quedado cinco copias del mismo diseño que se
   desincronizan a la primera edición. */
:root {
  --bg: #DCEFD9;
  --surface: #F0F3EC;
  --surface-raised: #FFFFFF;
  --accent: #1DA974;
  --accent2: #FF3D8F;
  --text: #241F16;
  --text-muted: #8B8A78;
  --line: #E7E9E0;
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
/* En pantallas anchas, el contenido (una columna angosta de texto legal,
   a propósito para que se lea bien) dejaba los costados como un vacío
   plano — estos dos manchones de color, fijos al viewport y bien
   difuminados, le dan presencia a esa zona sin competir con el texto ni
   aparecer nunca en el celular (quedan fuera de un viewport angosto). */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
body::before {
  left: -260px;
  top: -160px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}
body::after {
  right: -260px;
  top: 40vh;
  background: radial-gradient(circle, var(--accent2), transparent 70%);
}
header {
  position: relative;
  z-index: 1;
  padding: 40px 24px 24px;
  text-align: center;
}
header h1 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
header h1 a { color: inherit; text-decoration: none; }
header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}
nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 24px 32px;
  font-size: 13px;
}
nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  background: var(--surface-raised);
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 4px 4px 9px rgba(36,31,22,0.14), -4px -4px 9px rgba(255,255,255,0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
nav a:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 14px rgba(36,31,22,0.18), -5px -5px 12px rgba(255,255,255,0.9);
  color: var(--accent);
}
nav a:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 2px 2px 5px rgba(36,31,22,0.12), -2px -2px 5px rgba(255,255,255,0.7);
}
/* La pastilla de la página en la que ya estás: se distingue de las demás
   sin sacarla del menú, para que el navegante sepa dónde está parado. */
nav a[aria-current='page'] {
  color: var(--accent);
  box-shadow: inset 3px 3px 7px rgba(36,31,22,0.10), inset -3px -3px 7px rgba(255,255,255,0.9);
}
nav a[aria-current='page']:hover { transform: none; }
main {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
section {
  background: var(--surface-raised);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 8px 8px 18px rgba(36,31,22,0.08), -7px -7px 16px rgba(255,255,255,0.7);
  scroll-margin-top: 20px;
}
section h2 {
  font-size: 18px;
  margin-top: 0;
}
section h3 {
  font-size: 14px;
  margin-bottom: 4px;
}
section p, section li {
  font-size: 13.5px;
  color: var(--text);
  text-align: justify;
}
section ul {
  padding-left: 20px;
}
.muted { color: var(--text-muted); font-size: 12.5px; }
.updated { text-align: center; color: var(--text-muted); font-size: 12px; margin-bottom: 24px; }
a.email { color: var(--accent2); font-weight: 600; text-decoration: none; }
section a { color: var(--accent); font-weight: 600; }
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 12px;
}
/* En pantalla ancha, el menú se queda arriba igual que en celular —
   solo el cuerpo de contenido se ensancha para aprovechar el espacio
   de los costados. */
@media (min-width: 1000px) {
  main { max-width: 960px; }
}
