/* ─────────────────────────────────────────
   ENEA — Legal Pages (Privacidad / Términos)
   ───────────────────────────────────────── */

.legal-main {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
  min-height: 100vh;
}

.legal-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.legal-header {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.legal-header .eyebrow {
  margin-bottom: 12px;
}

.legal-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.legal-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── BODY ── */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── SECTION ── */
.legal-section {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.3;
}

.legal-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 12px;
  top: 4px;
}

.legal-section strong {
  color: var(--text);
  font-weight: 600;
}

.legal-section em {
  color: var(--text);
  font-style: italic;
}

/* ── HIGHLIGHT ── */
.legal-highlight {
  background: rgba(201, 160, 66, 0.07);
  border: 1px solid rgba(201, 160, 66, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--gold-light) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin: 16px 0 0 !important;
}

/* ── LINK ── */
.legal-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 160, 66, 0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
  font-size: inherit;
}

.legal-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

/* ── SERVICE CARDS ── */
.legal-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 12px;
}

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

.lsc-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-service-card p {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}

.legal-service-card .legal-link {
  font-size: 12px;
  display: inline-block;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .legal-main {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
  }

  .legal-title { font-size: 30px; }
  .legal-section h2 { font-size: 19px; }
  .legal-body { gap: 32px; }
  .legal-section { padding-top: 28px; }
}
