/* Páginas simples del sitio (privacidad, términos, baja de correos, 404). */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-400-latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-600-latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-700-latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/poppins-800-latin.woff2") format("woff2"); }

:root {
  --ink: #17171b;
  --muted: rgba(23, 23, 27, 0.66);
  --line: rgba(23, 23, 27, 0.1);
  --magenta: #de1976;
  --purple: #622e8a;
  --blush: #f3a3bf;
  --soft: #f8f7f8;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--magenta); text-decoration: none; }
a:hover { color: #98268e; text-decoration: underline; }

.top { background: var(--ink); padding: 18px clamp(20px, 4vw, 56px); }
.top a { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.top img { width: 42px; height: 42px; object-fit: contain; }
.top span { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

main { flex: 1; width: 100%; max-width: 780px; margin: 0 auto; padding: clamp(40px, 7vw, 84px) 20px clamp(56px, 8vw, 96px); }
.eyebrow { margin: 0 0 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); }
h1 { margin: 0 0 16px; font-size: clamp(30px, 5vw, 46px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
h2 { margin: 40px 0 10px; font-size: 20px; line-height: 1.3; font-weight: 700; }
p, li { color: var(--muted); }
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin: 0 0 6px; }
strong { color: var(--ink); font-weight: 600; }
.lead { font-size: 18px; color: rgba(23, 23, 27, 0.72); }
.updated { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; }

.card { background: var(--soft); border-radius: 24px; padding: clamp(28px, 5vw, 48px); }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 16px; cursor: pointer;
  padding: 16px 28px; font: inherit; font-size: 16px; font-weight: 600; color: #fff; text-decoration: none;
  background: linear-gradient(135deg, var(--blush) 0%, var(--magenta) 48%, var(--purple) 100%);
  box-shadow: 0 8px 24px rgba(222, 25, 118, 0.22);
}
.button:hover { color: #fff; text-decoration: none; transform: translateY(-1px); }
.button[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.button[hidden] { display: none; }
.status { margin: 18px 0 0; font-weight: 600; color: var(--purple); }
.status.error { color: var(--magenta); }

.bottom { background: var(--ink); color: rgba(255, 255, 255, 0.55); padding: 28px clamp(20px, 4vw, 56px); font-size: 14px; }
.bottom nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.bottom a { color: rgba(255, 255, 255, 0.75); }
.bottom a:hover { color: var(--blush); }
