/* =========================================================
   TÉRMINOS Y CONDICIONES – ESTILO LIMPIO
   ========================================================= */

.main-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  line-height: 1.6;
  color: var(--text-dark);
}

/* Título dentro del contenido */
.main-content h1,
.main-content h2 {
  margin-top: 1.5rem;
  font-weight: 700;
}

/* Párrafos */
.main-content p {
  margin: 0.8rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .main-content {
    margin: 1rem;
    padding: 1.2rem;
  }
}


.terms {
  font-size: 0.95rem;
  line-height: 1.7;
}

.terms h1 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.terms .muted {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.terms h2 {
  margin-top: 1.6rem;
  font-size: 1.1rem;
  border-left: 4px solid var(--primary);
  padding-left: 0.6rem;
}

.terms p {
  margin: 0.6rem 0;
}

.terms ul {
  margin: 0.6rem 0 0.6rem 1.2rem;
}

.terms li {
  margin-bottom: 0.4rem;
}