/* ============================================================
   SM LEGAL — layout compartido para Términos, Privacidad,
   Contacto y Soporte.
   ============================================================ */

* , *::before, *::after { box-sizing: border-box; }

body.sm-legal {
  margin: 0;
  background: #0d0b14;
  color: #e0d4ff;
  font-family: 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sm-legal-topbar {
  padding: 22px 24px 0;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.sm-legal-brand {
  font-size: 14px;
  font-weight: 700;
  color: #e8e0ff;
  letter-spacing: .03em;
}
.sm-legal-brand span { color: #a87dff; }

.sm-legal-wrap {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px 50px;
}

.sm-legal-wrap h1 {
  font-size: 1.7rem;
  color: #e8e0ff;
  margin: 0 0 6px;
}
.sm-legal-updated {
  font-size: .78rem;
  color: #5c4e7a;
  margin-bottom: 30px;
}
.sm-legal-wrap h2 {
  font-size: 1.02rem;
  color: #a87dff;
  margin: 30px 0 10px;
}
.sm-legal-wrap p, .sm-legal-wrap li {
  font-size: .87rem;
  line-height: 1.75;
  color: #c4b8e8;
  margin-bottom: 10px;
}
.sm-legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.sm-legal-wrap a.sm-legal-inline { color: #a87dff; text-decoration: none; }
.sm-legal-wrap a.sm-legal-inline:hover { text-decoration: underline; }

.sm-legal-note {
  margin-top: 34px;
  padding: 14px 16px;
  background: rgba(168,125,255,.07);
  border: 1px solid #3d2b6b;
  border-radius: 10px;
  font-size: .78rem;
  color: #9d8fc4;
  line-height: 1.6;
}

/* ── Tarjetas de contacto / soporte ── */
.sm-contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.sm-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #15102a;
  border: 1px solid #3d2b6b;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color .15s, transform .15s;
}
.sm-contact-card:hover { border-color: #7c55d4; transform: translateY(-1px); }
.sm-contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(168,125,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #a87dff; font-size: 19px;
}
.sm-contact-info .sm-contact-title { font-size: .88rem; font-weight: 600; color: #e8e0ff; }
.sm-contact-info .sm-contact-desc { font-size: .76rem; color: #6b5e8a; margin-top: 2px; }

.sm-faq-item {
  background: #15102a;
  border: 1px solid #3d2b6b;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.sm-faq-item h3 {
  font-size: .88rem;
  color: #e8e0ff;
  margin-bottom: 6px;
}
.sm-faq-item p {
  font-size: .82rem;
  color: #9d8fc4;
  margin: 0;
  line-height: 1.65;
}
