.lgpd-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at 12% 15%, rgb(247 185 47 / 18%), transparent 19rem),
    radial-gradient(circle at 88% 86%, rgb(167 45 143 / 12%), transparent 23rem),
    #fffdfb;
}

.lgpd-page__content {
  padding: clamp(5rem, 12vw, 9rem) 1.25rem;
}

.lgpd-page__content .container {
  display: block;
  width: min(100%, 850px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.lgpd-page__card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgb(116 37 102 / 13%);
  border-radius: 1.6rem;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 1.5rem 4rem rgb(57 23 67 / 11%);
  text-align: center;
  animation: lgpd-card-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lgpd-page__card::after {
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgb(247 185 47 / 13%);
  content: "";
}

.lgpd-page__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  margin: 0 auto 1.3rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #a72d8f, #742566);
  box-shadow: 0 0.85rem 1.8rem rgb(116 37 102 / 22%);
  color: #fff;
}

.lgpd-page__icon svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.lgpd-page__eyebrow {
  position: relative;
  z-index: 1;
  color: #8c2b7b;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lgpd-page h1 {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  margin: 0.9rem auto 1rem;
  color: #32153b;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
  text-wrap: balance;
}

.lgpd-page__intro {
  position: relative;
  z-index: 1;
  max-width: 37rem;
  margin: 0 auto;
  color: #67586d;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

.lgpd-page__notice {
  position: relative;
  z-index: 1;
  max-width: 39rem;
  margin: 2.25rem auto 0;
  padding: 1.5rem;
  border: 1px solid rgb(116 37 102 / 11%);
  border-radius: 1rem;
  background: #fff;
  text-align: left;
}

.lgpd-page__notice h2 {
  margin: 0 0 0.75rem;
  color: #57205d;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.lgpd-page__notice p {
  margin: 0;
  color: #6b5c70;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
}

.lgpd-page__email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: #8c2b7b;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.lgpd-page__policy-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  margin-top: 1.2rem;
  padding: 0.7rem 0.95rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, #a72d8f, #742566);
  box-shadow: 0 0.65rem 1.3rem rgb(116 37 102 / 20%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.lgpd-page__policy-button:hover {
  box-shadow: 0 0.9rem 1.6rem rgb(116 37 102 / 30%);
  transform: translateY(-0.15rem);
}

.lgpd-page__policy-button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.lgpd-page__email:hover {
  color: #5f1f62;
}

.lgpd-page__email svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: #f0ad23;
}

@keyframes lgpd-card-enter {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .lgpd-page__content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .lgpd-page__notice {
    padding: 1.25rem;
  }
}
