:root {
  interpolate-size: allow-keywords;
}

.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.legal__nav {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 18.125rem;
}
.legal__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.legal__nav__sublist {
  margin-top: 0.625rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  padding-left: 0.9375rem;
}
.legal__nav__sublist.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.legal__nav__sublist .legal__nav__link::before {
  display: none;
}
.legal__nav__sublist:has(.legal__nav__link.-active-) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.legal__nav__item:has(.legal__nav__link.-active-) > .legal__nav__link {
  color: var(--color-gray-800);
}
.legal__nav__item:has(.legal__nav__link.-active-) > .legal__nav__link::before {
  opacity: 1;
}
.legal__nav__link {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #B5B5B5;
  font-weight: 700;
  padding: 0.625rem 0 0.625rem 1.9375rem;
  position: relative;
  -webkit-transition: color ease 0.25s;
  transition: color ease 0.25s;
}
.legal__nav__link::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 100%;
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.legal__nav__link:hover {
  color: var(--color-gray-800);
}
.legal__nav__link.-active- {
  color: var(--color-gray-800);
}
.legal__nav__link.-active-::before {
  opacity: 1;
}
.legal__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 2.5rem;
}
.legal__article {
  display: none;
  font-size: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.0625rem;
}
.legal__article.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.legal__article h1, .legal__article h2, .legal__article h3, .legal__article h4, .legal__article h5, .legal__article h6, .legal__article strong, .legal__article b {
  font-weight: 700;
}
.legal__article a {
  text-decoration: underline;
  font-weight: 500;
}
.legal__article a:hover {
  text-decoration: none;
}
.legal__article ul, .legal__article ol {
  padding-left: 1.25rem;
}
.legal__article ul {
  list-style: disc;
}
.legal__article ol {
  list-style: decimal;
}
.legal__article p, .legal__article ul, .legal__article ol {
  line-height: 1.3;
}
.legal__article h1 {
  font-size: 2.8125rem;
}
.legal__article h2 {
  font-size: 2.5rem;
}
.legal__article h3 {
  font-size: 2.1875rem;
}
.legal__article h4 {
  font-size: 1.875rem;
}
.legal__article h5 {
  font-size: 1.5625rem;
}
.legal__article h6 {
  font-size: 1.25rem;
}
.legal__article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 0.0625rem solid #000;
  border-radius: 0.5rem;
}
.legal__article table thead th {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}
.legal__article table tbody td {
  padding: 0.75rem 1rem;
  border-top: 0.0625rem solid #000;
}
.legal__article table th:not(:last-child),
.legal__article table td:not(:last-child) {
  border-right: 0.0625rem solid #000;
}
.legal__table {
  overflow-x: auto;
}
.legal__acordeon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4375rem;
}
.legal__acordeon__button {
  background-color: var(--color-gray-400);
  padding: 1.5625rem 4.375rem 1.375rem 1.875rem;
  border-radius: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.legal__acordeon__button::before, .legal__acordeon__button::after {
  content: "";
  display: block;
  border-radius: 0.125rem;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.legal__acordeon__button::before {
  width: 1.3125rem;
  height: 0.1875rem;
  right: 1.875rem;
}
.legal__acordeon__button::after {
  width: 0.1875rem;
  height: 1.3125rem;
  right: 2.4375rem;
  -webkit-transition: height ease 0.3s;
  transition: height ease 0.3s;
}
.legal__acordeon__button.-active-::after {
  height: 0;
}
.legal__acordeon__button.-active- + .legal__acordeon__content {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  opacity: 1;
}
.legal__acordeon__content {
  height: 0;
  overflow: hidden;
  padding-inline: 1.875rem;
  opacity: 0;
  -webkit-transition: height ease 0.3s, opacity ease 0.5s;
  transition: height ease 0.3s, opacity ease 0.5s;
}
.legal__acordeon__content::before, .legal__acordeon__content::after {
  content: "";
  display: block;
  height: 0.75rem;
}
@media (max-width: 1200px) {
  .legal {
    gap: 1.25rem;
  }
  .legal__nav {
    width: 15.625rem;
  }
  .legal__nav__list {
    gap: 0.625rem;
  }
  .legal__nav__sublist {
    margin-top: 0.4375rem;
    gap: 0.375rem;
    padding-left: 0.75rem;
  }
  .legal__nav__link {
    padding: 0.625rem 0 0.625rem 1.25rem;
  }
  .legal__content {
    width: calc(100% - 16.875rem);
  }
  .legal__article {
    gap: 0.9375rem;
  }
  .legal__article h1 {
    font-size: 1.875rem;
  }
  .legal__article h2 {
    font-size: 1.75rem;
  }
  .legal__article h3 {
    font-size: 1.625rem;
  }
  .legal__article h4 {
    font-size: 1.5rem;
  }
  .legal__article h5 {
    font-size: 1.375rem;
  }
  .legal__article h6 {
    font-size: 1.25rem;
  }
  .legal__article table thead th, .legal__article table tbody td {
    padding: 0.625rem 0.75rem;
  }
  .legal__acordeon {
    gap: 0.3125rem;
  }
  .legal__acordeon__button {
    padding: 1.25rem 3.4375rem 1.0625rem 1.25rem;
    font-size: 1.125rem;
  }
  .legal__acordeon__button::before {
    width: 1.0625rem;
    height: 0.1875rem;
    right: 1.25rem;
  }
  .legal__acordeon__button::after {
    width: 0.1875rem;
    height: 1.0625rem;
    right: 1.6875rem;
    -webkit-transition: height ease 0.3s;
    transition: height ease 0.3s;
  }
  .legal__acordeon__content {
    padding-inline: 1.25rem;
  }
  .legal__acordeon__content::before, .legal__acordeon__content::after {
    height: 0.375rem;
  }
}
@media (max-width: 800px) {
  .legal__nav {
    width: 12.5rem;
  }
  .legal__nav__link {
    font-size: 1rem;
    padding: 0.5625rem 0 0.375rem 1.25rem;
  }
  .legal__content {
    width: calc(100% - 13.75rem);
  }
}
@media (max-width: 600px) {
  .legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .legal__nav {
    width: 100%;
  }
  .legal__nav__link {
    font-size: 1rem;
    padding: 0.5625rem 0 0.375rem 1.25rem;
  }
  .legal__content {
    width: 100%;
    padding-bottom: 1.5625rem;
  }
  .legal__article {
    gap: 0.875rem;
    font-size: 0.9375rem;
  }
  .legal__article h1 {
    font-size: 1.5rem;
  }
  .legal__article h2 {
    font-size: 1.4375rem;
  }
  .legal__article h3 {
    font-size: 1.375rem;
  }
  .legal__article h4 {
    font-size: 1.3125rem;
  }
  .legal__article h5 {
    font-size: 1.25rem;
  }
  .legal__article h6 {
    font-size: 1.1875rem;
  }
  .legal__acordeon__button {
    font-size: 1rem;
  }
}