/* ================================
   FONTS
================================ */
body {
  margin: 0;
  background: #000;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Fondo oscuro con leve glass */
.video-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, #000000 0%, #0a0a0a 100%);
  z-index: 0;
}

/* Wrapper */
.legal-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

/* Header */
.legal-header h1 {
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 15px;
}

/* Secciones */
.legal-content section {
  margin-bottom: 30px;
}

.legal-content h2 {
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}

.legal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Email */
.legal-mail {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.legal-mail:hover {
  opacity: 0.7;
}

/* Footer */
.legal-footer {
  margin-top: 50px;
  text-align: center;
  font-family: 'General Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.back-link {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.back-link:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-wrapper {
    margin: 40px 20px;
    padding: 25px;
  }
}
