/* ==================== ESTILOS PÁGINAS LEGALES ==================== */
/* Términos y Condiciones, Política de Privacidad */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.hero-section p {
  font-size: 1.375rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background: var(--gray-50);
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.legal-meta {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--primary);
}

.legal-meta p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.legal-meta p:last-child {
  margin-bottom: 0;
}

.legal-meta strong {
  color: var(--gray-900);
  font-weight: 700;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--gray-200);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.legal-section p {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.legal-section ul li {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.9;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}

.legal-section ul li strong {
  color: var(--gray-900);
  font-weight: 700;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.legal-section a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.75rem;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 1rem;
  }
}

