html,
body {
  margin: 0;
  min-height: 100%;
  background: #f6f2ea;
}

.natal {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 7.5rem 6vw 4.5rem;
  background-color: #f6f2ea;
  background-image: url("../assets/derived/fondo-interior-iching.png.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.natal__logo {
  position: absolute;
  top: 2.4rem;
  left: 4.5vw;
  z-index: 1;
  display: block;
  width: 160px;
  height: auto;
  color: inherit;
  text-decoration: none;
}

.natal__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.natal__article {
  position: relative;
  z-index: 1;
  max-width: 38.5rem;
  margin: 0 auto;
}

.natal__title {
  margin: 0;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #2a251f;
}

.natal__subtitle {
  margin: 0.85rem 0 0;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(90, 83, 74, 0.78);
}

.natal__body {
  margin-top: 2.15rem;
}

.natal__body p {
  margin: 0 0 1.15rem;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: rgba(48, 42, 36, 0.9);
}

.natal__body p:last-child {
  margin-bottom: 0;
}

.natal__close {
  margin: 2.1rem 0 0;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #3a342e;
}

.natal__offer {
  margin: 1.85rem 0 0;
}

.natal__price {
  margin: 0;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3f3933;
}

.natal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.43rem;
  width: max-content;
  min-height: 3.02rem;
  height: 3.02rem;
  margin: 1.05rem 0 0;
  padding: 0 1.34rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.32rem;
  background: rgba(255, 252, 247, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(42, 37, 31, 0.05),
    0 8px 18px rgba(42, 36, 28, 0.07);
  -webkit-backdrop-filter: blur(8px) saturate(1.04);
  backdrop-filter: blur(8px) saturate(1.04);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #332e29;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  opacity: 0;
  animation: natalButtonEnter 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes natalButtonEnter {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.natal__cta-arrow {
  display: inline-block;
}

.natal__cta:focus {
  outline: none;
}

.natal__cta:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(42, 37, 31, 0.05),
    0 8px 18px rgba(42, 36, 28, 0.07),
    0 0 0 2px rgba(255, 252, 247, 0.9),
    0 0 0 3px rgba(42, 37, 31, 0.38);
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .natal {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding: 6.5rem 1.35rem 3.25rem;
  }

  .natal__logo {
    top: 1.35rem;
    left: 1.2rem;
    width: 108px;
  }

  .natal__article {
    max-width: 100%;
  }

  .natal__title {
    font-size: 1.55rem;
    overflow-wrap: break-word;
  }

  .natal__subtitle {
    overflow-wrap: break-word;
  }

  .natal__body p,
  .natal__close {
    font-size: 0.88rem;
    line-height: 1.68;
    overflow-wrap: break-word;
  }

  .natal__close {
    font-size: 0.98rem;
  }

  .natal__price {
    font-size: 0.9rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .natal__cta {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 3.15rem;
    padding: 0.84rem 1.18rem;
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .natal__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
