/* Estilos para páginas legales (Términos y Condiciones, Política de Privacidad) */

.legal-page {
  min-height: calc(100vh - 200px);
  padding-top: 80px;
  background-color: #ffffff;
}

.legal-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-container {
  background-color: #ffffff;
  padding: 0;
  border: none;
  box-shadow: none;
}

.legal-container h1 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 1.5rem;
  text-align: left;
  font-weight: 700;
  border-bottom: none;
  padding-bottom: 0;
  line-height: 1.3;
}

.legal-intro {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.7;
}

.legal-content {
  line-height: 1.7;
  color: #000000;
}

.legal-intro-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background-color: transparent;
  border-left: none;
  border-radius: 0;
  color: #000000;
  text-align: left;
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 1.2rem;
  color: #000000;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-transform: none;
  text-align: left;
  line-height: 1.4;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: left;
  color: #000000;
  line-height: 1.7;
}

.legal-content a {
  color: #000000;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #000000;
  text-decoration: underline;
}

.legal-contact-info {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.legal-contact-info p {
  margin-bottom: 0.8rem;
  color: #000000;
  font-size: 1rem;
  text-align: left;
  line-height: 1.7;
}

.legal-contact-info a {
  color: #000000;
  text-decoration: underline;
  font-weight: 400;
}

.legal-contact-info a:hover {
  color: #000000;
  text-decoration: underline;
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: none;
  text-align: left;
}

.legal-footer p {
  margin-bottom: 0.5rem;
  color: #000000;
  font-size: 0.95rem;
  text-align: left;
}

.legal-footer a {
  color: #000000;
  text-decoration: underline;
  font-weight: 400;
}

.legal-footer a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-section {
    padding: 2rem 1.5rem;
  }

  .legal-container h1 {
    font-size: 1.8rem;
  }

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

  .legal-content p {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .legal-section {
    padding: 1.5rem 1rem;
  }

  .legal-container h1 {
    font-size: 1.5rem;
  }

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

  .legal-content p {
    font-size: 0.9rem;
  }
}

