/* Legal Pages (Aviso de Privacidad, Términos y Condiciones) */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid var(--bsl-red);
}

.legal-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--bsl-black);
  margin: 0 0 12px 0;
}

.legal-header .update-date {
  font-size: 1rem;
  color: var(--bsl-muted);
  font-weight: 500;
}

.legal-section {
  background: var(--bsl-white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 12px 24px -8px rgba(0, 0, 0, .08);
  border: 1px solid #e5eaf4;
}

.legal-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bsl-red);
  margin: 0 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #fee2e2;
}

.legal-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D3E50;
  margin: 30px 0 15px 0;
}

.legal-section p {
  color: #334155;
  line-height: 1.8;
  margin: 0 0 16px 0;
  font-size: 1.05rem;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.7;
  font-size: 1.05rem;
}

.legal-section ul li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--bsl-red);
  font-weight: 800;
  font-size: 1.4rem;
}

.legal-section strong {
  color: var(--bsl-black);
  font-weight: 700;
}

.legal-section a {
  color: var(--bsl-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--bsl-red-dark);
  text-decoration: underline;
}

.contact-box {
  background: #fef2f2;
  border-left: 4px solid var(--bsl-red);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 20px 0;
}

.contact-box a {
  color: var(--bsl-red);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-box a:hover {
  color: #991b1b;
  text-decoration: underline;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
  margin: 50px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-section {
    padding: 28px 20px;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.15rem;
  }
  
  .legal-container {
    padding: 30px 16px;
  }
}

@media (max-width: 480px) {
  .legal-section {
    padding: 24px 16px;
  }
  
  .legal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .contact-box {
    padding: 16px 20px;
  }
}