/* Componentes reutilizáveis: botões, pills, cards, placeholders de mídia,
   acordeão do FAQ, índice do currículo, cards "para quem é", galeria,
   imprensa, oferta/preço e formulário. */

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform .15s, box-shadow .15s;
  text-align: center;
}

.btn--primary {
  background: #16c7b3;
  color: #fff;
  font-size: 15px;
  padding: 11px 24px;
  box-shadow: 0 6px 0 #33ac9d;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #33ac9d;
  color: #fff;
}

.btn--lg {
  font-size: 19px;
  padding: 16px 34px;
  box-shadow: 0 8px 0 #33ac9d;
}

.btn--lg:hover {
  box-shadow: 0 11px 0 #33ac9d;
}

.btn--block {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 16px;
}

.btn--white {
  background: #fff;
  color: var(--color-pink-dark);
  font-size: 15px;
  padding: 11px 24px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .15);
  color: var(--color-pink-dark);
}

/* ---- CTA de fechamento de seção ---- */
.section-cta {
  margin-top: 28px;
}

.section-cta--center {
  text-align: center;
}

/* ---- Pill / kicker ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--color-mint);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--color-mint-dark);
  margin: 0 0 22px;
  box-shadow: 0 4px 0 rgba(115, 200, 189, .3);
}

.pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-pink);
  flex: none;
}

.kicker {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-pink-dark);
  margin: 0 0 12px;
}

.kicker--on-mint {
  color: var(--color-mint-dark);
}

.kicker--on-pink {
  color: #FFF0C9;
}

/* ---- Confete decorativo do hero ---- */
.hero__confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti {
  position: absolute;
  border-radius: 50%;
}

.confetti--1 { top: 8%; left: 6%; width: 16px; height: 16px; background: var(--color-pink); animation: floaty 5s ease-in-out infinite; }
.confetti--2 { top: 22%; left: 14%; width: 11px; height: 11px; background: var(--color-mint); border-radius: 3px; transform: rotate(20deg); animation: floaty2 7s ease-in-out infinite; }
.confetti--3 { top: 60%; left: 4%; width: 20px; height: 20px; border: 3px solid var(--color-lavender-light); animation: floaty 6s ease-in-out infinite .5s; }
.confetti--4 { top: 14%; right: 8%; width: 14px; height: 14px; background: var(--color-yellow); border-radius: 4px; transform: rotate(35deg); animation: floaty2 6.5s ease-in-out infinite; }
.confetti--5 { bottom: 16%; right: 5%; width: 22px; height: 22px; background: var(--color-lavender-light); animation: floaty 5.5s ease-in-out infinite .3s; }
.confetti--6 { bottom: 24%; right: 20%; width: 10px; height: 10px; background: var(--color-mint); animation: floaty2 8s ease-in-out infinite; }

/* ---- Fotografia real (moldura com cantos arredondados) ---- */
.photo-frame {
  margin: 0;
  overflow: hidden;
  line-height: 0;
  border-radius: var(--radius-md);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.photo-frame--milestone {
  border: 3px dashed rgba(255, 255, 255, .6);
  margin-bottom: 14px;
}

.photo-frame--trailer img {
  object-position: 0% center;
}

/* ---- Placeholder de mídia (imagem/vídeo/mockup ainda pendente) ----
   Usado no lugar de <img>/<video> enquanto o material real (fotos, mockups,
   vídeos) não é entregue: mostra a legenda do que falta, funcionando como
   checklist visual para quem for produzir o material depois. */
.media-placeholder-wrap {
  width: 100%;
  height: 100%;
}

.media-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 14px;
  background:
    repeating-linear-gradient(-45deg, rgba(51, 49, 63, .04) 0 10px, transparent 10px 20px),
    var(--bg-mint-tint);
  border: 2px dashed rgba(51, 49, 63, .22);
  color: var(--text-soft);
}

.media-placeholder__icon {
  font-size: 26px;
  opacity: .75;
  line-height: 1;
}

.media-placeholder__caption {
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-soft);
  max-width: 28ch;
}

.media-placeholder--dark {
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, .07) 0 10px, transparent 10px 20px),
    rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: rgba(255, 255, 255, .9);
}

.media-placeholder--dark .media-placeholder__caption {
  color: inherit;
}

/* ---- Cards de "Onde você está hoje" ---- */
.perfil-card {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .2);
  transition: all .3s;
}

.perfil-card:hover {
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .4);
  transform: translateY(-8px);
}

.perfil-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 16px;
}

.perfil-card__icon--mint { background: var(--color-mint); box-shadow: 0 8px 18px -8px var(--color-mint); }
.perfil-card__icon--pink { background: var(--color-pink); box-shadow: 0 8px 18px -8px var(--color-pink); }
.perfil-card__icon--lavender { background: var(--color-lavender); box-shadow: 0 8px 18px -8px var(--color-lavender); }
.perfil-card__icon--yellow { background: var(--color-yellow-dark); box-shadow: 0 8px 18px -8px var(--color-yellow-dark); }

.perfil-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.perfil-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}

/* ---- Índice do currículo (sidebar) ---- */
.module-index {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.module-index__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  color: var(--text-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  transition: background .2s;
}

.module-index__item.is-active {
  background: var(--bg-mint-soft);
}

.module-index__num {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  background: #EAF6F4;
  color: var(--color-mint-dark);
  transition: all .2s;
}

.module-index__item.is-active .module-index__num {
  background: var(--color-mint-dark);
  color: #fff;
}

.curriculum__note {
  background: var(--bg-mint-soft);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-mint-dark);
}

.curriculum__note strong {
  color: var(--color-mint-dark);
}

/* ---- Cards do currículo (grid) ---- */
.module-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 14px 30px -22px rgba(0, 0, 0, .4);
  transition: border-color .3s, transform .3s;
}

.module-card.is-active {
  border-color: var(--color-pink);
  transform: translateY(-4px);
}

.module-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.module-card__circle {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-mint);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}

.module-card__circle--pink {
  background: var(--color-pink);
}

.module-card__badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  background: var(--color-yellow);
  color: #7a4a00;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.module-card h3 {
  font-size: 15.5px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.module-card__lead {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 6px;
}

.module-card__list {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ---- "Onde a experiência se transforma em conhecimento" ---- */
.story-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 60px);
  margin: 8px 0 8px;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.story-block:nth-child(even) {
  direction: rtl;
}

.story-block:nth-child(even) > * {
  direction: ltr;
}

.story-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-block__media img {
  width: 100%;
  height: auto;
  display: block;
}

.story-block h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.story-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-heading);
}

@media (max-width: 800px) {
  .story-block {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
}

/* ---- Tudo o que você recebe: curso, materiais, bônus, certificado ---- */
.course-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}

.course-showcase__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.course-showcase__media img {
  width: 100%;
  height: auto;
  display: block;
}

.course-showcase h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
}

.materials-showcase {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}

.materials-showcase__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.materials-showcase__list li {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
}

.materials-showcase__list li strong {
  color: var(--text-heading);
}

.materials-showcase__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-mint);
}

.materials-showcase__list .materials-showcase__certificate {
  margin: 28px 0 0;
}

.materials-showcase__certificate-plus {
  display: inline-block;
  color: var(--color-mint);
  font-size: 1.4em;
  font-weight: 800;
  margin-right: 4px;
}

.materials-showcase__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.materials-showcase__media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .course-showcase { grid-template-columns: 1fr; }
  .materials-showcase { grid-template-columns: 1fr; }
}

.bonus-block,
.certificate-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--bg-lavender-tint);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  margin-bottom: 32px;
}

.certificate-block {
  background: var(--bg-mint-tint);
}

.bonus-block h3,
.certificate-block h3,
.materials-showcase__list h3 {
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.2;
  margin: 0 0 14px;
}

.bonus-block__text {
  font-size: 14.5px;
  color: var(--text-body);
  margin-top: 6px;
}

.bonus-block__medias {
  display: flex;
  gap: 14px;
}

.bonus-block__medias .media-placeholder-wrap {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bonus-block__medias img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.certificate-block__media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 800px) {
  .bonus-block, .certificate-block { grid-template-columns: 1fr; }
  .bonus-block__medias, .certificate-block__media { order: -1; }
}

/* ---- Como funciona (4 passos com setas) ---- */
.how-it-works {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 44px;
}

.how-step {
  flex: 1 1 190px;
  max-width: 230px;
  text-align: center;
}

.how-step__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-soft);
}

.how-step h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.how-step p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
}

.how-arrow {
  align-self: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-lavender);
}

@media (max-width: 700px) {
  .how-arrow { display: none; }
  .how-step { flex: 1 1 100%; max-width: 320px; }
}

.certificate-showcase {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.certificate-showcase__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
}

.certificate-showcase__media img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-showcase h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 10px;
}

.certificate-showcase p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ---- Imprensa ---- */
.press-card {
  background: #fff;
  border: 2px dashed #D9C9EF;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.press-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.press-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
}

.press-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--text-heading);
}

.press__closing {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-heading);
  max-width: 640px;
  margin: 36px auto 0;
  line-height: 1.4;
}

/* ---- Galeria / Lightbox (mosaico da Cozinha-Estúdio) ---- */
.gallery__item {
  position: relative;
  cursor: zoom-in;
  border: none;
  background: none;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s;
}

.gallery__item:hover {
  transform: scale(1.04) rotate(1deg);
}

.gallery__item img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  display: block;
}

.gallery__zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(760px, 92vw);
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(46, 58, 55, .85);
  backdrop-filter: blur(4px);
}

.lightbox__img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  background: var(--color-mint);
}

.lightbox__close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: none;
  color: #fff;
  font-size: 22px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

@media (max-width: 640px) {
  .lightbox__nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
}

.video-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(900px, 92vw);
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-modal::backdrop {
  background: rgba(46, 58, 55, .85);
  backdrop-filter: blur(4px);
}

.video-modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.video-modal__close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: none;
  color: #fff;
  font-size: 22px;
}


/* ---- FAQ (acordeão) ---- */
.faq-item {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s;
}

.faq-item.is-open {
  border-color: var(--color-pink);
}

.faq-item h3 {
  margin: 0;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
}

.faq-item__trigger span:first-child {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-heading);
}

.faq-item__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #F3EEFA;
  color: var(--color-lavender);
  transition: all .28s;
}

.faq-item.is-open .faq-item__icon {
  background: var(--color-pink);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel-inner p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

.faq-item__panel-inner p + p {
  padding-top: 0;
}

.faq-help {
  margin-top: 40px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
}

.faq-help h3 {
  font-size: 19px;
  margin: 0 0 8px;
}

.faq-help p {
  font-size: 14.5px;
  color: var(--text-body);
  margin: 0 0 20px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Oferta: checklist e card de preço ---- */
.checklist-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 24px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.checklist-2col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text-body);
}

.checklist-2col li::before {
  content: '✓';
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--color-mint);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 560px) {
  .checklist-2col { grid-template-columns: 1fr; }
}

.offer__bonus {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}

.offer__bonus h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 4px;
}

.offer__bonus-text {
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 14px;
}

.offer__bonus-medias {
  display: flex;
  gap: 12px;
}

.offer__bonus-medias .media-placeholder-wrap {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.offer__bonus-medias img {
  width: 100%;
  height: auto;
  display: block;
}

.price-card {
  position: sticky;
  top: 92px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.4vw, 38px);
  box-shadow: 0 30px 60px -24px rgba(124, 95, 199, .45);
  text-align: center;
}

.price-card__course {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  letter-spacing: .01em;
}

.price-card__subtitle {
  font-size: 13px;
  font-weight: 700;
  margin: 2px 0 20px;
}

.price-card__label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-mint-dark);
  margin: 0 0 6px;
}

.price-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 44px);
  color: var(--text-heading);
  line-height: 1;
}

.price-card__installments {
  font-size: 14px;
  color: var(--text-soft);
  margin: 6px 0 22px;
}

.price-card__microcopy {
  font-size: 11.5px;
  color: var(--text-softer);
  line-height: 1.5;
  margin-top: 12px;
}

.price-card__guarantee {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, .12);
}

.price-card__guarantee-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-mint-dark);
  margin: 0 0 6px;
}

.price-card__guarantee p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .price-card { position: static; }
}

