/* Container general */
.legal-page {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1rem;
    color: #333;
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.6;
  }
  
  /* Breadcrumb ligero */
  .breadcrumbs {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  .breadcrumbs a {
    color: #b69856;
    text-decoration: none;
  }
  .breadcrumbs span {
    margin: 0 0.5rem;
  }
  
  /* Título principal */
  .legal__title {
    font-family: 'Lexend', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #111;
  }
  
  /* Cada sección */
  .legal__section {
    margin-bottom: 2rem;
  }
  
  /* Subtítulos numerados */
  .legal__section-title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    color: #222;
  }
  .legal__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 4px;
    height: 1.1rem;
    background-color: #b69856;
    border-radius: 2px;
  }
  
  /* Listado de datos (dl) */
  .legal__details {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
  }
  .legal__details dt {
    font-weight: 600;
    color: #444;
  }
  .legal__details dd {
    margin: 0;
    color: #555;
  }
  
  /* Párrafos */
  .legal__section p {
    margin: 0.75rem 0;
    color: #444;
    text-decoration: none;
  }
  
  /* Hiperenlaces en texto */
  .legal__section a {
    color: #b69856;
    text-decoration: underline;
  }
  .legal__section a:hover {
    text-decoration: none;
  }
  .legal__section li {
    text-decoration: none;
  }
  /* Responsive */
  @media (min-width: 1024px) {
    .legal-page {
      padding: 0;
    }
  }
  