/**
 * Politicas / Terminos - template styles.
 *
 * @package Echos
 */

.policy-page {
  background: #f2f2f2;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 140px 0 108px;
  background:
    radial-gradient(620px 390px at 14% 20%, rgba(198, 61, 0, .55), transparent 66%),
    radial-gradient(740px 520px at 50% 130%, rgba(90, 25, 0, .35), transparent 72%),
    linear-gradient(180deg, #0a0a0a 0%, #060606 55%, #040404 100%);
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .58) 0%,
    rgba(0, 0, 0, .2) 32%,
    rgba(0, 0, 0, .62) 100%
  );
  pointer-events: none;
}

.policy-hero__dots {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 220px;
  height: 80px;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, rgba(255, 100, 22, .95) 1.2px, transparent 1.25px);
  background-size: 18px 18px;
  opacity: .88;
  mask-image: radial-gradient(ellipse at center, #000 34%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 34%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.policy-hero__dots::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: -4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff5a14;
}

.policy-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.policy-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  color: #fff;
}

.policy-hero__title span {
  color: #ff5f08;
}

.policy-hero__subtitle {
  margin: 16px auto 0;
  max-width: 610px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
}

.policy-content {
  position: relative;
  z-index: 3;
  margin-top: -14px;
}

.policy-content__sheet {
  background: #f5f5f5;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, .22) inset;
}

.policy-content__inner {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 38px 0 56px;
}

.policy-doc {
  max-width: 100%;
  color: #212121;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.58;
}

.policy-doc h2 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #232323;
}

.policy-doc h3 {
  margin: 7px 0 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #202020;
}

.policy-doc p {
  margin: 0 0 6px;
}

.policy-doc ul {
  margin: 0 0 6px 18px;
  padding: 0;
}

.policy-doc li {
  margin: 0 0 4px;
  padding-left: 6px;
}

@media (max-width: 980px) {
  .policy-hero {
    min-height: 320px;
    padding: 118px 0 88px;
  }

  .policy-hero__dots {
    width: 180px;
    height: 66px;
    top: 76px;
    background-size: 16px 16px;
  }

  .policy-hero__subtitle {
    max-width: 520px;
    font-size: 13px;
  }

  .policy-content__inner {
    width: min(100%, calc(100% - 48px));
    padding: 30px 0 46px;
  }
}

@media (max-width: 640px) {
  .policy-hero {
    min-height: 280px;
    padding: 102px 0 78px;
  }

  .policy-hero__dots {
    width: 146px;
    height: 52px;
    top: 70px;
    background-size: 14px 14px;
  }

  .policy-hero__title {
    font-size: clamp(26px, 9.8vw, 42px);
    line-height: 1.06;
  }

  .policy-hero__subtitle {
    margin-top: 12px;
    max-width: 360px;
    font-size: 12px;
    line-height: 1.52;
  }

  .policy-content {
    margin-top: -10px;
  }

  .policy-content__sheet {
    border-radius: 20px 20px 0 0;
  }

  .policy-content__inner {
    width: min(100%, calc(100% - 28px));
    padding: 24px 0 36px;
  }

  .policy-doc {
    font-size: 12px;
    line-height: 1.55;
  }

  .policy-doc h2,
  .policy-doc h3 {
    font-size: 12px;
  }
}
