/* ==========================================================
   Saadelba - estilos compartidos para páginas legales
   Archivo: public/legal-pages.css
   Uso en HTML:
   <link rel="stylesheet" href="/legal-pages.css" />
   ========================================================== */

:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #0f172a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.24), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(168, 85, 247, 0.24), transparent 32%),
    linear-gradient(135deg, #073644 0%, #111936 52%, #211844 100%);
  background-attachment: fixed;
}

.pageShell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.brandLogo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.brandText {
  letter-spacing: -0.02em;
}











main {
  padding: 36px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h2 {
  margin-top: 32px;
  font-size: 24px;
}

p,
li {
  line-height: 1.7;
  color: #475569;
}

a {
  color: #0891b2;
  font-weight: 700;
}

.back {
  display: inline-flex;
  margin-bottom: 24px;
  text-decoration: none;
}

.notice {
  padding: 16px;
  border-radius: 16px;
  background: #ecfeff;
  color: #155e75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: #020617;
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
}

th,
td {
  padding: 14px;
  border: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f8fafc;
  color: #0f172a;
}

td {
  color: #475569;
}

@media (max-width: 760px) {
  .pageShell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0 32px;
  }

  .topBar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brandLogo {
    width: 30px;
    height: 30px;
  }

  

  

  

  main {
    padding: 24px;
  }
}
