/* ============================================================
   SHELBY AGENCY — Hoja de estilo de las paginas legales.
   La comparten terminos.html y privacidad.html.
   Misma paleta y tipografia que index.html, en version sobria:
   sin rejilla ni resplandor, porque aca se viene a leer.
   ============================================================ */

:root {
  --void:      #030A07;
  --neon:      #3CE59A;
  --gold:      #C9A84C;
  --parchment: #EEF4EE;
  --muted:     #94AEA0;
  --muted-2:   #6E8A7C;
}

html { color-scheme: dark; }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--void);
  color: var(--parchment);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.99rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.wrap {
  max-width: 76ch;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 32px) 0;
}

/* --- Encabezado --- */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(60, 229, 154, 0.12);
}
.top img { width: 42px; height: auto; opacity: 0.8; }
.back {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.34);
  padding-bottom: 2px;
}
.back:hover { color: var(--gold); }

/* --- Titulo --- */
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.15;
  margin: clamp(34px, 6vw, 52px) 0 10px;
  letter-spacing: -0.01em;
}
.vigencia {
  color: var(--muted-2);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 clamp(30px, 5vw, 46px);
}
.entrada {
  color: var(--muted);
  font-size: 1.1rem;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
  padding-left: 20px;
  margin-bottom: clamp(34px, 5vw, 50px);
}

/* --- Secciones --- */
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  color: var(--parchment);
  margin: clamp(34px, 5vw, 48px) 0 12px;
  padding-top: 4px;
}
h2 .num {
  color: var(--gold);
  font-size: 0.78em;
  margin-right: 12px;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.06em;
}
p { margin: 0 0 14px; color: var(--muted); }
p strong, li strong { color: var(--parchment); font-weight: 600; }

ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
li {
  color: var(--muted);
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
}
li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.66em;
  line-height: 2.5;
}

a { color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(201, 168, 76, 0.34); }
a:hover { color: var(--gold); }

.aviso {
  border: 1px solid rgba(60, 229, 154, 0.18);
  background: rgba(60, 229, 154, 0.03);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 26px 0;
}
.aviso p:last-child { margin-bottom: 0; }

/* --- Pie --- */
footer {
  margin-top: clamp(50px, 8vw, 84px);
  padding-block: 28px 48px;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.85rem;
  line-height: 1.7;
  border-top: 1px solid rgba(60, 229, 154, 0.1);
}
footer p { margin: 0 0 8px; max-width: 62ch; margin-inline: auto; }
.footer-mark { display: block; width: 56px; height: auto; margin: 0 auto 20px; opacity: 0.58; }
.footer-copy { color: var(--parchment); font-weight: 600; margin-bottom: 6px; }
.footer-id { color: var(--muted); margin-bottom: 14px; }
.footer-id strong { color: var(--parchment); font-weight: 600; }
.legal { font-size: 0.78rem; color: #56705F; }
footer .legal + .legal { margin-top: 10px; }

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .entrada { padding-left: 15px; font-size: 1.04rem; }
}
