/* =============================================
   SYNAPXXIS - legal.css
   Estilos para páginas legales
============================================= */

.legal-main {
  padding: 8rem 1.5rem 5rem;
  min-height: 70vh;
  background: #ffffff;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0,230,208,0.15);
}

.legal-title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.legal-fecha {
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 400;
}

/* Contenido */
.legal-content {
  color: #495057;
  line-height: 1.8;
}

.legal-content h2 {
  font-weight: 700;
  font-size: 1.15rem;
  color: #6A0DAD;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid #00E6D0;
}

.legal-content p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #495057;
}

.legal-content ul {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-content ul li {
  font-size: 1rem;
  color: #495057;
  padding-left: 1.5rem;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6A0DAD, #00E6D0);
}

.legal-content a {
  color: #00E6D0;
  font-weight: 500;
  transition: color 0.3s;
}
.legal-content a:hover {
  color: #6A0DAD;
}

.legal-content strong {
  font-weight: 600;
  color: #495057;
}

/* Botón volver */
.legal-back {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,230,208,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-main {
    padding: 6rem 1.25rem 3rem;
  }

  .legal-title {
    font-size: 1.8rem;
  }

  .legal-content h2 {
    font-size: 1.05rem;
  }
}
