

/* Estilos para Términos y Condiciones */
.terms-section {
  padding: 6rem 2rem 4rem;
  background: var(--white);
  min-height: 100vh;
}

.terms-container {
  max-width: 900px;
  margin: 2.5rem auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
}

.terms-header h1 {
  font-size: 2.8rem;
  color: var(--brand);
  margin-bottom: 1rem;
  font-weight: 700;
}

.terms-date {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.terms-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.terms-content {
  margin-bottom: 3rem;
}

.terms-article {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--dodger-blue);
}

.terms-article h2 {
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 1rem;
  font-weight: 600;
}

.terms-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.terms-article ul {
  margin: 1rem 0 1rem 2rem;
  list-style: disc;
}

.terms-article ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.terms-article a {
  color: var(--dodger-blue);
  text-decoration: underline;
  transition: var(--transition);
}

.terms-article a:hover {
  color: var(--brand);
}

.terms-contact {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.terms-contact p {
  margin: 0.5rem 0;
}

.terms-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--brand), #0a1452);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(8, 14, 47, 0.3);
}

.terms-cta p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-section {
    padding: 5rem 1.5rem 3rem;
  }

  .terms-header h1 {
    font-size: 2.2rem;
  }

  .terms-intro {
    font-size: 1rem;
  }

  .terms-article {
    padding: 1.5rem;
  }

  .terms-article h2 {
    font-size: 1.4rem;
  }

  .terms-cta p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .terms-header h1 {
    font-size: 1.9rem;
  }

  .terms-article {
    padding: 1.2rem;
  }

  .terms-article h2 {
    font-size: 1.3rem;
  }
}
