.hm-legal {
  padding-top: var(--e-8);
}

.hm-legal__encabezado {
  max-width: 900px;
  margin-bottom: var(--e-9);
  padding-bottom: var(--e-7);
  border-bottom: 2px solid var(--texto);
}

.hm-legal__titulo {
  margin-top: var(--e-4);
}

.hm-legal__bajada {
  margin-top: var(--e-5);
  font-size: 18px;
  line-height: 1.55;
  color: var(--texto-suave);
}

.hm-legal__cuerpo {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.hm-legal__indice,
.hm-legal__texto {
  min-width: 0;
}

.hm-legal__indice {
  position: sticky;
  top: calc(var(--alto-header) + 40px);
}

.hm-legal__indice-titulo {
  margin-bottom: var(--e-4);
  padding-bottom: var(--e-3);
  border-bottom: 1px solid var(--borde);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texto-tenue);
  list-style: none;
}

.hm-legal__indice-titulo::-webkit-details-marker {
  display: none;
}

.hm-legal__indice-titulo::marker {
  content: "";
}

.hm-legal__indice-lista {
  display: flex;
  flex-direction: column;
}

.hm-legal__indice-enlace {
  display: flex;
  gap: 12px;
  padding-block: 9px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--texto-suave);
  transition: color var(--transicion);
}

.hm-legal__indice-enlace:hover {
  color: var(--acento);
}

.hm-legal__indice-numero {
  flex: none;
  min-width: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--texto-tenue);
}

.hm-legal__texto {
  max-width: 74ch;
}

.hm-legal__seccion + .hm-legal__seccion {
  margin-top: var(--e-8);
  padding-top: var(--e-8);
  border-top: 1px solid var(--borde);
}

.hm-legal__seccion-titulo {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--texto);
}

.hm-legal__seccion-numero {
  flex: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--acento);
}

.hm-legal__parrafo {
  margin-top: var(--e-4);
  font-size: 15px;
  line-height: 1.75;
  color: var(--texto-suave);
}

.hm-legal__seccion-titulo + .hm-legal__parrafo {
  margin-top: var(--e-5);
}

.hm-legal__parrafo strong {
  font-weight: 600;
  color: var(--texto);
}

.hm-legal__parrafo a {
  color: var(--acento);
  text-decoration: underline;
  text-underline-offset: 2px;

  overflow-wrap: anywhere;
}

.hm-legal__lista {
  margin-top: var(--e-5);
  display: flex;
  flex-direction: column;
  gap: var(--e-4);
}

.hm-legal__item {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--texto-suave);
}

.hm-legal__item-marca {
  flex: none;
  min-width: 22px;
  font-weight: 700;
  color: var(--acento);
}

.hm-legal__item > span:last-child {
  min-width: 0;
}

.hm-legal__item a {
  color: var(--acento);
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.hm-legal__definicion {
  margin-top: var(--e-4);
  padding-left: var(--e-5);
  border-left: 2px solid var(--borde);
  font-size: 15px;
  line-height: 1.7;
  color: var(--texto-suave);
}

.hm-legal__definicion strong {
  color: var(--texto);
}

.hm-legal__pie {
  max-width: 74ch;
  margin-top: var(--e-9);
  padding-top: var(--e-6);
  border-top: 2px solid var(--texto);
  font-size: 14px;
  line-height: 1.7;
  color: var(--texto-suave);
}

.hm-legal__pie a {
  color: var(--acento);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1023px) {
  .hm-legal__encabezado {
    margin-bottom: var(--e-7);
    padding-bottom: var(--e-6);
  }

  .hm-legal__cuerpo {
    grid-template-columns: 1fr;
    gap: var(--e-7);
  }

  .hm-legal__indice {
    position: static;
    padding: var(--e-5);
    background: var(--superficie-2);
    border: 1px solid var(--borde);
  }

  .hm-legal__indice-titulo {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--e-4);
  }

  .hm-legal__indice-titulo::after {
    content: "";
    width: 8px;
    height: 8px;
    flex: none;
    border-right: 2px solid var(--texto-tenue);
    border-bottom: 2px solid var(--texto-tenue);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform var(--transicion);
  }

  .hm-legal__indice[open] .hm-legal__indice-titulo::after {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  .hm-legal__indice-lista {
    margin-top: var(--e-4);
    padding-top: var(--e-4);
    border-top: 1px solid var(--borde);
  }

  .hm-legal__seccion + .hm-legal__seccion {
    margin-top: var(--e-7);
    padding-top: var(--e-7);
  }
}
