:root {
  --blue-900: #0a2a66;
  --blue-700: #0b4db5;
  --ice-100: #f4f9ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Fira Sans Condensed", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 45%, #eef5ff 100%);
  color: var(--blue-900);
}

.legal-header {
  padding: 22px 24px 0;
  text-align: center;
}

.legal-header__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: var(--blue-900);
}

.legal-header__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}


.legal {
  max-width: 860px;
  margin: 24px auto 64px;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 34px 40px;
  box-shadow: 0 18px 40px rgba(4, 20, 55, 0.12);
  border: 1px solid rgba(11, 77, 181, 0.12);
}

.legal h1 {
  font-family: "Fira Sans Condensed", "Segoe UI", sans-serif;
  font-size: 2.2rem;
  margin: 0 0 8px;
  text-align: center;
}

.legal__updated {
  margin: 0 0 26px;
  color: rgba(10, 42, 102, 0.7);
  text-align: center;
}

.legal section {
  margin-bottom: 22px;
}

.legal h2 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--blue-700);
}

.legal h3 {
  font-size: 1rem;
  margin: 14px 0 8px;
  color: var(--blue-700);
}

.about__toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 22px;
}

.about__toggle-btn {
  border: 1px solid rgba(11, 77, 181, 0.2);
  background: var(--ice-100);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about__toggle-btn.is-active {
  border-color: rgba(11, 77, 181, 0.55);
  box-shadow: 0 8px 18px rgba(11, 77, 181, 0.18);
}

.about__toggle-btn:hover {
  transform: translateY(-1px);
}

.about__section {
  margin-bottom: 26px;
}

.about__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.about__tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ice-100);
  border: 1px solid rgba(11, 77, 181, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about__list {
  margin-left: 18px;
}

.about.is-filtered .about__section {
  display: none;
}

.about.is-filtered .about__section.is-active {
  display: block;
}

.flag {
  width: 32px;
  height: 20px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.flag--es {
  background: linear-gradient(#c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.flag--en {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Crect width='60' height='36' fill='%23012169'/%3E%3Cpath d='M0 0 L60 36 M60 0 L0 36' stroke='%23ffffff' stroke-width='12' stroke-linecap='square'/%3E%3Cpath d='M0 0 L60 36 M60 0 L0 36' stroke='%23c8102e' stroke-width='6' stroke-linecap='square'/%3E%3Cpath d='M0 18 H60 M30 0 V36' stroke='%23ffffff' stroke-width='20' stroke-linecap='square'/%3E%3Cpath d='M0 18 H60 M30 0 V36' stroke='%23c8102e' stroke-width='10' stroke-linecap='square'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flag--va {
  background:
    linear-gradient(90deg, #1f4aa8 0 24%, transparent 24% 100%),
    repeating-linear-gradient(
      0deg,
      #d81e05 0 12.5%,
      #ffdc00 12.5% 25%
    );
}

.legal p {
  margin: 8px 0;
  line-height: 1.6;
}

.legal ul {
  margin: 8px 0 12px 18px;
  padding: 0;
  line-height: 1.6;
}

.legal a {
  color: var(--blue-700);
  font-weight: 600;
}

@media (max-width: 720px) {
  .legal-header {
    padding: 18px 16px 0;
  }

  .legal {
    margin: 16px 14px 40px;
    padding: 26px 22px 32px;
  }

  .legal h1 {
    font-size: 1.9rem;
  }
}
