.wellness-ready {
  background: var(--tp-branco-brisa);
  color: var(--tp-grafite-mineral);
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: var(--section-py-md);
}

.wellness-ready__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wellness-ready__head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.wellness-ready__kicker {
  display: block;
  margin-bottom: var(--space-8);
  color: var(--tp-ocre-terra);
  font-family: var(--font-soleto);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wellness-ready__title {
  margin: 0;
  color: var(--tp-azul-atlantico);
  font-family: var(--font-soleto);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.wellness-ready__title span,
.wellness-ready__title em {
  display: block;
}

.wellness-ready__title em {
  font-style: italic;
  font-weight: 400;
}

.wellness-ready__intro {
  max-width: 56ch;
  margin: var(--space-8) auto 0;
  color: var(--tp-cinza-texto);
  font-family: var(--font-soleto);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  text-wrap: pretty;
}

.wellness-ready__carousel {
  width: 100%;
  max-width: 76rem;
  margin: clamp(var(--space-12), 6vw, var(--space-20)) auto 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.wellness-ready__carousel .splide__pagination__page.is-active {
  background: var(--tp-dourado-solar);
}

.wellness-ready__carousel .splide__arrow {
  background: rgb(var(--tp-branco-brisa-rgb) / 0.85);
}

.wellness-ready__carousel .splide__arrow svg {
  fill: var(--tp-azul-atlantico);
}

.wellness-ready__shot {
  position: relative;
  margin: 0;
}

.wellness-ready__shot img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.wellness-ready__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgb(var(--tp-azul-atlantico-rgb) / 0.5) 100%);
}

.wellness-ready__shot-tag {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-soleto);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tp-branco-puro);
  text-shadow: 0 2px 14px rgb(var(--tp-azul-atlantico-rgb) / 0.55);
}

.wellness-ready__carousel-caption {
  max-width: 76rem;
  margin: var(--space-4) auto 0;
  text-align: center;
  font-family: var(--font-soleto);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-cinza-texto);
}

.wellness-ready__attributes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
  width: 100%;
  max-width: 76rem;
  margin: clamp(var(--space-12), 6vw, var(--space-16)) auto 0;
}

.wellness-ready__attribute {
  min-width: 0;
  padding: var(--space-8);
  border: 1px solid var(--tp-cinza-pedra);
  border-radius: var(--r-sm);
  background: var(--tp-areia-natural);
  text-align: left;
  transition: box-shadow var(--dur-base) var(--ease-out-soft), transform var(--dur-base) var(--ease-out-soft);
}

.wellness-ready__attribute:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wellness-ready__attribute::before {
  content: "";
  display: block;
  width: var(--space-8);
  height: 1px;
  margin-bottom: var(--space-4);
  background: var(--tp-dourado-solar);
}

.wellness-ready__attribute dt {
  margin: 0 0 var(--space-2);
  color: var(--tp-azul-atlantico);
  font-family: var(--font-soleto);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
}

.wellness-ready__attribute dd {
  margin: 0;
  color: var(--tp-cinza-texto);
  font-family: var(--font-soleto);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.wellness-ready__closing {
  max-width: 38ch;
  margin: clamp(var(--space-12), 6vw, var(--space-16)) auto 0;
  color: var(--tp-azul-atlantico);
  font-family: var(--font-soleto);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-wrap: pretty;
}

@media (max-width: 64rem) {
  .wellness-ready__attributes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .wellness-ready__kicker {
    margin-bottom: var(--space-6);
    letter-spacing: 0.16em;
  }

  .wellness-ready__title {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .wellness-ready__intro {
    margin-top: var(--space-6);
    font-size: 1rem;
  }

  .wellness-ready__carousel {
    margin-top: var(--space-10);
  }

  .wellness-ready__shot img {
    aspect-ratio: 4 / 3;
  }

  .wellness-ready__attributes {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-10);
  }

  .wellness-ready__attribute {
    padding: var(--space-6);
  }

  .wellness-ready__closing {
    margin-top: var(--space-10);
  }
}
