.legal-main {
  background: var(--blanco);
  min-height: 100vh;
  padding: 80px 28px 100px;
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--burdeos);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.legal-fecha {
  font-size: 13px;
  color: var(--texto-d);
  margin-bottom: 56px;
}
.legal-seccion {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197,75,140,0.1);
}
.legal-seccion:last-of-type { border-bottom: none; }

.legal-seccion h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--burdeos);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.legal-seccion h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--burdeos);
  margin: 28px 0 10px;
}
.legal-seccion p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--texto-d);
  margin-bottom: 12px;
}
.legal-seccion ul {
  margin: 8px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-seccion ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--texto-d);
}
.legal-seccion a {
  color: var(--rosa);
  text-decoration: underline;
}

.legal-tabla {
  background: var(--crema);
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0 24px;
}
.lt-fila {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(197,75,140,0.08);
  align-items: start;
}
.lt-fila:last-child { border-bottom: none; }
.lt-header { background: rgba(197,75,140,0.06); }
.lt-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--burdeos);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lt-valor {
  font-size: 13px;
  color: var(--texto-d);
  line-height: 1.6;
}
.lt-pendiente {
  color: var(--rosa);
  font-weight: 600;
}

.legal-volver { margin-top: 48px; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--burdeos);
  padding: 18px 28px;
  box-shadow: 0 -4px 32px rgba(122,30,58,0.25);
}
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-txt {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}
.cookie-link {
  color: var(--rosa-s);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--rosa);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.cookie-accept:hover { background: #a83a78; }
.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--rosa-s); }
.footer-legal span { color: rgba(255,255,255,0.2); }

/* Privacy checkbox */
.privacy-check {
  font-size: 13px !important;
  color: var(--texto-d) !important;
  line-height: 1.5;
  align-items: flex-start !important;
}
.privacy-link {
  color: var(--rosa);
  text-decoration: underline;
}
