/* ================================================================
   LACUNA ASTRO — Legal Pages Styles (Privacy Policy, Terms)
   Depends on: assets/css/style.css
================================================================ */

/* ── Footer ── */
footer { padding: 40px 6% 24px; text-align: center; }

/* ── Page hero ── */
.legal-hero {
  position: relative; z-index: 1;
  padding: 140px 6% 60px; text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(108,63,197,.18) 0%, transparent 70%);
}
.legal-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--lavender) 60%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.legal-hero p { color: var(--muted); font-size: .95rem; }

/* ── Legal document body ── */
.legal-body {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
  padding: 20px 6% 100px;
}

/* ── Last updated badge ── */
.last-updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,63,197,.12); border: 1px solid rgba(196,168,245,.15);
  border-radius: 20px; padding: 6px 16px;
  color: var(--muted); font-size: .8rem; margin-bottom: 48px;
}
.last-updated span { color: var(--lavender); font-weight: 600; }

/* ── Section ── */
.legal-section {
  margin-bottom: 44px;
  padding: 32px 36px;
  background: rgba(28,21,50,.5);
  border: 1px solid rgba(196,168,245,.08);
  border-left: 3px solid rgba(108,63,197,.5);
  border-radius: 0 16px 16px 0;
  transition: border-left-color .2s, background .2s;
}
.legal-section:hover {
  border-left-color: var(--violet);
  background: rgba(28,21,50,.7);
}
.legal-section-num {
  font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--violet); margin-bottom: 8px; display: block;
}
.legal-section h2 {
  font-family: 'Cinzel', serif; font-size: 1.15rem;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.legal-section p {
  color: var(--muted); font-size: .92rem; line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }

/* ── Lists inside legal sections ── */
.legal-section ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-section ul li {
  color: var(--muted); font-size: .92rem; line-height: 1.7;
  display: flex; gap: 12px; align-items: flex-start;
}
.legal-section ul li::before {
  content: '✦'; color: var(--violet); flex-shrink: 0;
  margin-top: 2px; font-size: .7rem;
}
.legal-section ul li strong { color: var(--lavender); }

/* ── Contact box ── */
.legal-contact {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(108,63,197,.15), rgba(155,89,232,.08));
  border: 1px solid rgba(196,168,245,.2);
  border-radius: 20px; padding: 32px 36px; text-align: center;
}
.legal-contact h2 {
  font-family: 'Cinzel', serif; font-size: 1.2rem;
  color: var(--gold); margin-bottom: 10px;
}
.legal-contact p { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.legal-contact a {
  color: var(--lavender); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(196,168,245,.3);
  transition: color .2s, border-color .2s;
}
.legal-contact a:hover { color: var(--gold); border-color: rgba(232,201,106,.5); }

/* ── WhatsApp button ── */
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
  color: #25d366; padding: 13px 28px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  margin-top: 16px; transition: all .2s;
  border-bottom: none !important;
}
.wa-btn:hover { background: rgba(37,211,102,.18); color: #25d366 !important; }

/* ── Back link ── */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none; font-size: .85rem;
  margin-bottom: 36px; transition: color .2s;
}
.back-link:hover { color: var(--lavender); }

/* ── Sibling page link ── */
.sibling-link {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(108,63,197,.08); border: 1px solid rgba(196,168,245,.1);
  border-radius: 14px; padding: 18px 24px; text-decoration: none;
  margin-bottom: 48px; transition: all .2s;
}
.sibling-link:hover { background: rgba(108,63,197,.15); border-color: rgba(196,168,245,.25); }
.sibling-link-label { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; display: block; }
.sibling-link-title { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--lavender); }
.sibling-link-arrow { color: var(--violet); font-size: 1.2rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .legal-section { padding: 24px 20px; }
  .legal-contact { padding: 24px 20px; }
}
