/** Shopify CDN: Minification failed

Line 898:1 Unexpected ";"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:faqq (INDEX:32) */
/* ============================================================
   MetaShape — FAQ Side-by-Side — Fonte: Montserrat
   ============================================================ */

.ms-faq-side {
  --ms-bg:         #FFF;
  --ms-white:      #FFFFFF;
  --ms-text:       #1a1a1a;
  --ms-muted:      #666666;
  --ms-rosa:       #FF3C9B;
  --ms-rosa-light: rgba(255,60,155,0.07);
  --ms-azul:       #4A49CC;
  --ms-azul-light: rgba(74,73,204,0.07);
  --ms-border:     #E2E2E0;
  --ms-cta:        #5BC96E;
  --f-display:     'Montserrat', system-ui, sans-serif;
  --f-body:        'Montserrat', system-ui, sans-serif;

  background: var(--ms-bg);
  padding: 96px 0;
  width: 100%;
  overflow-x: hidden;
}

.ms-faq-side__container {
  width: 100%;
  max-width: 100%;
  padding: 0 4vw;
  margin: 0 auto;
}

.ms-faq-side__grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 6vw;
  align-items: start;
}

/* ── SIDEBAR ── */
.ms-faq-side__sidebar { position: relative; }

.ms-faq-side__sticky {
  position: sticky;
  top: 60px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ms-faq-side__tag {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ms-rosa);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ms-faq-side__tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ms-rosa);
  opacity: 0.5;
}

.ms-faq-side__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ms-text);
  margin: 0;
}

.ms-faq-side__desc {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ms-muted);
  margin: 0;
  max-width: 90%;
}

/* CONTATO */
.ms-faq-side__contact {
  border-top: 1px solid var(--ms-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-faq-side__contact-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ms-text);
  margin: 0;
}

.ms-faq-side__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ms-text);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
}
.ms-faq-side__contact-row:hover { color: var(--ms-rosa); }

.ms-faq-side__contact-icon {
  width: 34px;
  height: 34px;
  background: var(--ms-rosa-light);
  border: 1px solid rgba(255,60,155,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-rosa);
  flex-shrink: 0;
}

/* CTA */
.ms-faq-side__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ms-cta);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  align-self: flex-start;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(91,201,110,0.35);
  margin-top: 4px;
}
.ms-faq-side__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ── LISTA ── */
.ms-faq-side__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ms-border);
}

.ms-faq-side__item {
  border-bottom: 1px solid var(--ms-border);
  transition: background 0.2s;
}

.ms-faq-side__item:hover { background: rgba(0,0,0,0.015); }

.ms-faq-side__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ms-text);
}

.ms-faq-side__num {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--ms-rosa);
  opacity: 0.5;
  flex-shrink: 0;
  width: 28px;
  letter-spacing: 0.05em;
}

.ms-faq-side__question {
  flex: 1;
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--ms-text);
  transition: color 0.2s;
}

.ms-faq-side__trigger:hover .ms-faq-side__question,
.ms-faq-side__trigger[aria-expanded="true"] .ms-faq-side__question {
  color: var(--ms-azul);
}

.ms-faq-side__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ms-azul-light);
  border: 1px solid rgba(74,73,204,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-azul);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.2s,
              color 0.2s;
}

.ms-faq-side__trigger[aria-expanded="true"] .ms-faq-side__icon {
  transform: rotate(45deg);
  background: var(--ms-rosa-light);
  border-color: rgba(255,60,155,0.2);
  color: var(--ms-rosa);
}

/* RESPOSTA */
.ms-faq-side__answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ms-faq-side__answer {
  padding: 0 0 28px 48px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ms-muted);
}

.ms-faq-side__answer p { margin: 0 0 10px; }
.ms-faq-side__answer p:last-child { margin-bottom: 0; }
.ms-faq-side__answer strong,
.ms-faq-side__answer b { color: var(--ms-text); font-weight: 700; }

/* ── RESPONSIVO ── */
@media screen and (max-width: 991px) {
  .ms-faq-side__grid { grid-template-columns: 1fr; gap: 48px; }
  .ms-faq-side__sticky { position: static; padding-right: 0; }
  .ms-faq-side__container { padding: 0 24px; }
  .ms-faq-side { padding: 64px 0; }
  .ms-faq-side__answer { padding-left: 0; }
  .ms-faq-side__num { display: none; }
}

@media screen and (max-width: 600px) {
  .ms-faq-side {
    padding: 56px 0;
  }

  .ms-faq-side__container {
    padding: 0 20px;
  }

  .ms-faq-side__grid {
    gap: 36px;
  }

  .ms-faq-side__sticky {
    gap: 16px;
  }

  .ms-faq-side__tag {
    font-size: 13px;
    letter-spacing: 0.16em;
    gap: 8px;
  }

  .ms-faq-side__tag::before {
    width: 18px;
  }

  .ms-faq-side__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.08;
  }

  .ms-faq-side__desc {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }

  .ms-faq-side__contact {
    padding-top: 20px;
    gap: 14px;
  }

  .ms-faq-side__contact-label {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .ms-faq-side__contact-row {
    font-size: 15px;
    line-height: 1.45;
    gap: 12px;
  }

  .ms-faq-side__contact-icon {
    width: 38px;
    height: 38px;
  }

  .ms-faq-side__cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 17px 20px;
  }

  .ms-faq-side__trigger {
    gap: 14px;
    padding: 24px 0;
    align-items: flex-start;
  }

  .ms-faq-side__question {
    font-size: 15px;
    line-height: 1.45;
  }

  .ms-faq-side__icon {
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }

  .ms-faq-side__answer {
    padding: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.75;
  }
}
/* END_SECTION:faqq */

/* START_SECTION:image-comparison-slider (INDEX:49) */
.image-comparison {
  margin: 0 auto;
  padding: 4rem 0;
  background: #fff;
}
.image-comparison__heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.2;
}
.image-comparison__heading .highlight {
  background: #c1ff72;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  font-weight: 600;
}
.image-comparison__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.image-comparison__wrapper {
  position: relative;
  overflow: hidden;
  user-select: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  cursor: col-resize;
}

.image-comparison__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  max-width: none;
}

.image-bottom {
  display: block;
  position: relative;
}

.image-comparison__clipped-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.image-top {
  position: absolute;
  top: 0;
  left: 0;
}

.image-comparison__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  cursor: col-resize;
  z-index: 10;
  touch-action: none;
}

.image-comparison__handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.image-comparison__handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  padding: 12px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: grab;
  transition: transform 0.2s ease;
  z-index: 11;
  touch-action: none;
}

.image-comparison__handle-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.image-comparison__handle-button:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(0.95);
}

.image-comparison__handle-button svg {
  width: 100%;
  height: 100%;
  color: #000;
}

.image-comparison__wrapper.dragging,
.image-comparison__wrapper.dragging .image-comparison__handle-button {
  cursor: grabbing;
}

.image-comparison__wrapper.dragging .image-comparison__handle-button {
  transform: translate(-50%, -50%) scale(0.95);
}

@media screen and (max-width: 749px) {
  .image-comparison { padding: 2rem 0; }
  .image-comparison__container { padding: 0 1rem; }
  .image-comparison__heading { font-size: 1.8rem; margin-bottom: 2rem; }
  .image-comparison__handle-button { width: 40px; height: 40px; padding: 10px; }
}
/* END_SECTION:image-comparison-slider */

/* START_SECTION:kits (INDEX:52) */
/* ============================================================
   MetaShape — Kits & Quantidades — Fonte: Montserrat
   ============================================================ */

.ms-kits {
  --ms-bg:         #F8F8F6;
  --ms-white:      #FFFFFF;
  --ms-text:       #4A49CC;
  --ms-muted:      #666666;
  --ms-rosa:       #FF3C9B;
  --ms-rosa-light: rgba(255, 60, 155, 0.08);
  --ms-azul:       #4A49CC;
  --ms-azul-light: rgba(74, 73, 204, 0.07);
  --ms-cta:        #5BC96E;
  --ms-border:     #E8E8E6;
  --f-display:     'Montserrat', system-ui, sans-serif;
  --f-body:        'Montserrat', system-ui, sans-serif;

  position: relative;
  background: var(--ms-bg);
  padding: 96px 40px 0;
  overflow: hidden;
}

.ms-kits__container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.ms-kits__header {
  text-align: center;
  margin-bottom: 30px;
}

.ms-kits__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ms-rosa);
  margin-bottom: 18px;
}
.ms-kits__eyebrow::before,
.ms-kits__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ms-rosa);
  opacity: 0.5;
}

.ms-kits__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ms-text);
  margin-bottom: 16px;
}

.ms-kits__subtitle {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ms-muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ── GRID ── */
.ms-kits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* ── CARD ── */
.ms-kits__card {
  background: var(--ms-white);
  border: 1px solid var(--ms-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  animation: ms-kits-fade-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ms-kits__card:nth-child(1) { animation-delay: 0s; }
.ms-kits__card:nth-child(2) { animation-delay: 0.1s; }
.ms-kits__card:nth-child(3) { animation-delay: 0.2s; }

.ms-kits__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.ms-kits__card--featured {
  border: 2px solid var(--ms-rosa);
}
.ms-kits__card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ms-rosa);
}

/* Badge */
.ms-kits__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
}
.ms-kits__badge--rosa   { background: var(--ms-rosa); color: #fff; }
.ms-kits__badge--azul   { background: var(--ms-azul); color: #fff; }
.ms-kits__badge--escuro { background: var(--ms-text); color: #fff; }

/* Imagem */
.ms-kits__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--ms-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.ms-kits__card--featured .ms-kits__image-wrap {
  background: var(--ms-rosa-light);
}

.ms-kits__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ms-kits__card:hover .ms-kits__image {
  transform: scale(1.04);
}

.ms-kits__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}
.ms-kits__image-placeholder span {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ms-muted);
}

/* Overlay de quantidade */
.ms-kits__qty-overlay {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--ms-azul);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}
.ms-kits__card--featured .ms-kits__qty-overlay { background: var(--ms-rosa); }

.ms-kits__qty-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ms-kits__qty-label {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Corpo */
.ms-kits__body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ms-kits__tag {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-azul);
  margin-bottom: 8px;
}
.ms-kits__card--featured .ms-kits__tag { color: var(--ms-rosa); }

.ms-kits__kit-name-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.ms-kits__kit-name-link:hover .ms-kits__kit-name {
  text-decoration: underline;
  text-decoration-color: var(--ms-text);
  text-underline-offset: 3px;
}

.ms-kits__kit-name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ms-text);
  margin-bottom: 4px;
}

.ms-kits__kit-subtitle {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ms-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.ms-kits__items {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ms-kits__items li {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ms-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ms-kits__items li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--ms-azul);
  flex-shrink: 0;
  opacity: 0.5;
}

.ms-kits__benefit {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ms-azul);
  background: var(--ms-azul-light);
  border-left: 2px solid var(--ms-azul);
  padding: 9px 13px;
  border-radius: 0 2px 2px 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
.ms-kits__benefit--featured {
  color: var(--ms-rosa);
  background: var(--ms-rosa-light);
  border-color: var(--ms-rosa);
}

/* Preço */
.ms-kits__pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

/* Linha topo: preço riscado + tag economia */
.ms-kits__price-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 20px; /* evita colapso quando não há preço riscado */
}

.ms-kits__price-old {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

.ms-kits__price-new {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ms-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ms-kits__price-new sup { font-size: 1rem; vertical-align: super; }
.ms-kits__price-cents { font-size: 0.9rem !important; }

/* ── PARCELAMENTO ── */
.ms-kits__installment-box {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.ms-kits__installment-text {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ms-muted);
  line-height: 1.4;
}
.ms-kits__installment-highlight {
  font-weight: 700;
  color: var(--ms-text);
}
.ms-kits__no-interest-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ms-cta);
  background: rgba(91, 201, 110, 0.12);
  border: 1px solid rgba(91, 201, 110, 0.35);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.ms-kits__price-save {
  font-family: var(--f-body);
  background: var(--ms-azul-light);
  color: var(--ms-azul);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.ms-kits__price-save--featured {
  background: var(--ms-rosa-light);
  color: var(--ms-rosa);
};

/* ── PARCELAMENTO ── */
.ms-kits__installment-box {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.ms-kits__installment-text {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ms-muted);
  line-height: 1.4;
}
.ms-kits__installment-highlight {
  font-weight: 700;
  color: var(--ms-text);
}
.ms-kits__no-interest-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ms-cta);
  background: rgba(91, 201, 110, 0.12);
  border: 1px solid rgba(91, 201, 110, 0.35);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.ms-kits__installment {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--ms-muted);
  margin-top: 3px;
  line-height: 1.4;
}
.ms-kits__price-save {
  font-family: var(--f-body);
  background: var(--ms-azul-light);
  color: var(--ms-azul);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 4px;
}
.ms-kits__price-save--featured {
  background: var(--ms-rosa-light);
  color: var(--ms-rosa);
}

/* CTA */
.ms-kits__btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  background: var(--ms-cta);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 18px rgba(91, 201, 110, 0.35);
  margin-top: auto;
}
.ms-kits__btn:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.ms-kits__btn:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}
.ms-kits__btn--outline {
  background: transparent;
  color: var(--ms-azul);
  border: 1.5px solid var(--ms-azul);
  box-shadow: none;
}
.ms-kits__btn--outline:hover:not(:disabled) {
  background: var(--ms-azul-light);
  transform: translateY(-2px);
}

/* Frete */
.ms-kits__shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--ms-muted);
  margin-top: 12px;
}
.ms-kits__shipping svg { width: 13px; height: 13px; stroke: var(--ms-cta); }

/* ── TRUST BANNER ── */
.ms-kits__trust-banner {
  background: var(--ms-text);
  padding: 36px 40px;
  margin: 0 -40px;
}
.ms-kits__trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ms-kits__trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}
.ms-kits__trust-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms-kits__trust-icon svg { width: 17px; height: 17px; stroke: var(--ms-rosa); }
.ms-kits__trust-item strong {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.ms-kits__trust-item span {
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.ms-kits__trust-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ── ANIMACAO ── */
@keyframes ms-kits-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVO: TABLET (≤ 900px) ── */
@media screen and (max-width: 900px) {
  .ms-kits { padding: 64px 24px 0; }
  .ms-kits__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ms-kits__trust-banner { margin: 0 -24px; padding: 28px 24px; }

  /* Cabeçalho */
  .ms-kits__eyebrow { font-size: 13px; }
  .ms-kits__subtitle { font-size: 15px; }

  /* Card body */
  .ms-kits__tag { font-size: 12px; }
  .ms-kits__kit-name { font-size: 1.35rem; }
  .ms-kits__kit-subtitle { font-size: 0.95rem; }
  .ms-kits__items li { font-size: 14px; }
  .ms-kits__benefit { font-size: 13px; }

  /* Preço */
  .ms-kits__price-old { font-size: 13px; }
  .ms-kits__price-new { font-size: 2.2rem; }
  .ms-kits__installment-text { font-size: 13px; }
  .ms-kits__no-interest-badge { font-size: 12px; }
  .ms-kits__price-save { font-size: 11px; }

  /* CTA */
  .ms-kits__btn { font-size: 1rem; padding: 16px; }

  /* Frete */
  .ms-kits__shipping { font-size: 13px; }
  .ms-kits__shipping svg { width: 15px; height: 15px; }

  /* Trust banner */
  .ms-kits__trust-item strong { font-size: 14px; }
  .ms-kits__trust-item span { font-size: 13px; }
}

/* ── RESPONSIVO: MOBILE (≤ 600px) ── */
@media screen and (max-width: 600px) {
  .ms-kits { padding: 52px 20px 0; }
  .ms-kits__grid { grid-template-columns: 1fr; }
  .ms-kits__trust-inner { flex-direction: column; gap: 20px; }
  .ms-kits__trust-divider { display: none; }
  .ms-kits__trust-banner { margin: 0 -20px; }

  /* Cabeçalho */
  .ms-kits__eyebrow { font-size: 14px; }
  .ms-kits__title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .ms-kits__subtitle {
    font-size: 13px !important;
    line-height: 1.6;
  }

  /* Badge */
  .ms-kits__badge {
    font-size: 12px;
    padding: 7px 13px;
  }

  /* Overlay de quantidade */
  .ms-kits__qty-num { font-size: 2.3rem; }
  .ms-kits__qty-label { font-size: 12px; }

  /* Card body */
  .ms-kits__body { padding: 22px 20px 20px; }
  .ms-kits__tag {
    font-size: 13px;
    letter-spacing: 0.14em;
  }
  .ms-kits__kit-name {
    font-size: 1.8rem;
    line-height: 1.15;
  }
  .ms-kits__kit-subtitle {
    font-size: 15px;
    line-height: 1.55;
  }
  .ms-kits__items li {
    font-size: 16px;
    gap: 10px;
    line-height: 1.5;
  }
  .ms-kits__benefit {
    font-size: 15px;
    padding: 12px 14px;
    line-height: 1.55;
  }

  /* Preço */
  .ms-kits__price-old { font-size: 15px; }
  .ms-kits__price-new { font-size: 2.7rem; }
  .ms-kits__price-new sup { font-size: 1.1rem; }
  .ms-kits__price-cents { font-size: 1rem !important; }

  .ms-kits__installment-text {
    font-size: 15px;
    line-height: 1.5;
  }
  .ms-kits__installment-highlight { font-size: 15px; }
  .ms-kits__no-interest-badge {
    font-size: 13px;
    padding: 4px 10px;
  }
  .ms-kits__price-save {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* CTA */
  .ms-kits__btn {
    font-size: 1.08rem;
    padding: 18px;
    letter-spacing: 0.08em;
  }

  /* Frete */
  .ms-kits__shipping {
    font-size: 14px;
    line-height: 1.4;
  }
  .ms-kits__shipping svg {
    width: 15px;
    height: 15px;
  }

  /* Trust banner */
  .ms-kits__trust-item strong { font-size: 15px; }
  .ms-kits__trust-item span {
    font-size: 14px;
    line-height: 1.5;
  }
  .ms-kits__trust-icon {
    width: 44px;
    height: 44px;
  }
  .ms-kits__trust-icon svg {
    width: 20px;
    height: 20px;
  }
  @media (min-width: 990px) {
  .ms-kits__title {
    white-space: nowrap !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 989px) {
  .ms-kits__title {
    white-space: normal !important;
    font-size: 24px !important;
  }
}
}
/* END_SECTION:kits */

/* START_SECTION:shorts (INDEX:91) */
.ms-videos {
  --ms-bg:         #F8F8F6;
  --ms-white:      #FFFFFF;
  --ms-text:       #1a1a1a;
  --ms-muted:      #666666;
  --ms-rosa:       #FF3C9B;
  --ms-azul:       #4A49CC;
  --ms-cta:        #5BC96E;
  --ms-border:     #E8E8E6;
  --f-display:     'Montserrat', system-ui, sans-serif;
  --f-body:        'Montserrat', system-ui, sans-serif;

  background: var(--ms-bg);
  padding: 96px 40px;
}

.ms-videos__container { max-width: 1280px; margin: 0 auto; }

/* ── HEADER ── */
.ms-videos__header { text-align: center; margin-bottom: 56px; }

.ms-videos__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ms-rosa);
  margin-bottom: 16px;
}
.ms-videos__eyebrow::before,
.ms-videos__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ms-rosa);
  opacity: 0.5;
}

.ms-videos__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  
  
  text-transform: uppercase;
  color: var(--ms-text);
  margin-bottom: 14px;
}

.ms-videos__subtitle {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ms-muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── GRID ── */
.ms-videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── CARD ── */
.ms-videos__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: ms-vid-fade-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ms-videos__card:nth-child(1) { animation-delay: 0s; }
.ms-videos__card:nth-child(2) { animation-delay: 0.08s; }
.ms-videos__card:nth-child(3) { animation-delay: 0.16s; }
.ms-videos__card:nth-child(4) { animation-delay: 0.24s; }

.ms-videos__card:hover {
  transform: translateY(-6px) scale(1.02);
}
.ms-videos__card:nth-child(odd):hover  { box-shadow: 0 20px 50px rgba(255,60,155,0.2); }
.ms-videos__card:nth-child(even):hover { box-shadow: 0 20px 50px rgba(74,73,204,0.2); }

/* THUMB */
.ms-videos__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: transparent;
  overflow: hidden;
}

.ms-videos__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ms-videos__card:hover .ms-videos__thumb-img { transform: scale(1.06); }

.ms-videos__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    transparent 35%,
    transparent 55%,
    rgba(0,0,0,0.65) 100%
  );
  pointer-events: none;
}

/* Play btn */
.ms-videos__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 64px;
  height: 64px;
  transition: transform 0.2s ease;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.ms-videos__play-btn svg { width: 100%; height: 100%; }
.ms-videos__card:hover .ms-videos__play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

/* Caption */
.ms-videos__caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin: 0;
}

/* Badge */
.ms-videos__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ms-rosa);
  color: #fff;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── CTA ── */
.ms-videos__cta-wrap { display: flex; justify-content: center; margin-top: 48px; }

.ms-videos__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ms-cta);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 6px 24px rgba(91,201,110,0.4);
}
.ms-videos__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(91,201,110,0.55);
  filter: brightness(1.08);
}

/* ── MODAL ── */
.ms-videos__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ms-videos__modal.is-open { opacity: 1; pointer-events: all; }

.ms-videos__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}

.ms-videos__modal-inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 420px);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.ms-videos__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.ms-videos__modal-close:hover { background: rgba(0,0,0,0.8); }

.ms-videos__modal-player { width: 100%; height: 100%; }
.ms-videos__modal-player iframe,
.ms-videos__modal-player video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@keyframes ms-vid-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 1024px) {
  .ms-videos__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media screen and (max-width: 600px) {
  .ms-videos {
    padding: 64px 20px;
  }

  .ms-videos__header {
    margin-bottom: 38px;
  }

  .ms-videos__eyebrow {
    font-size: 13px;
    gap: 8px;
    margin-bottom: 14px;
  }

  .ms-videos__eyebrow::before,
  .ms-videos__eyebrow::after {
    width: 22px;
  }

  .ms-videos__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .ms-videos__subtitle {
    font-size: 15px;
    line-height: 1.65;
    max-width: 320px;
  }

  .ms-videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ms-videos__play-btn {
    width: 72px;
    height: 72px;
  }

  .ms-videos__caption {
    font-size: 14px;
    line-height: 1.45;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .ms-videos__card-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .ms-videos__cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 17px 20px;
  }

  .ms-videos__modal-inner {
    width: min(95vw, 360px);
  }
}
/* END_SECTION:shorts */

/* START_SECTION:sobre (INDEX:93) */
/* ============================================================
   MetaShape — Nossa Ciencia / Ingredientes Ativos — FULL WIDTH
   ============================================================ */

.ms-science {
  --ms-bg:         #F8F8F6;
  --ms-white:      #FFFFFF;
  --ms-text:       #1a1a1a;
  --ms-muted:      #555555;
  --ms-rosa:       #FF3C9B;
  --ms-rosa-light: rgba(255, 60, 155, 0.07);
  --ms-azul:       #4A49CC;
  --ms-azul-light: rgba(74, 73, 204, 0.07);
  --ms-border:     #fff;
  --f-display:     'Montserrat', system-ui, sans-serif;
  --f-body:        'Montserrat', system-ui, sans-serif;

  width: 100%;
}

/* ── HEADER ── */
.ms-science__header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 40px;
}

.ms-science__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ms-rosa);
  margin-bottom: 16px;
}
.ms-science__eyebrow::before,
.ms-science__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ms-rosa);
  opacity: 0.5;
}

.ms-science__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  
  text-transform: uppercase;
  color: var(--ms-text);
  margin-bottom: 14px;
}

.ms-science__subtitle {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ms-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── GRID DE ICONES — full width ── */
.ms-science__keys-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--ms-border);
  border-top: 1px solid var(--ms-border);
}

.ms-science__key-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--ms-border);
}
.ms-science__key-item:last-child { border-right: none; }

.ms-science__key-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ms-azul-light);
  border: 1px solid rgba(74,73,204,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-azul);
  transition: background 0.2s, transform 0.2s;
  overflow: hidden;
}

.ms-science__key-item:hover .ms-science__key-icon {
  background: var(--ms-rosa-light);
  border-color: rgba(255,60,155,0.2);
  color: var(--ms-rosa);
  transform: translateY(-3px);
}

.ms-science__key-icon svg {
  width: 36px;
  height: 36px;
}

.ms-science__key-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.ms-science__key-label {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--ms-text);
  letter-spacing: 0.08em;
}

/* ── CARDS DE INGREDIENTES — full width ── */
.ms-science__actives {
  display: flex;
  gap: 0;
}

.ms-science__active-card {
  flex: 1;
  background: var(--ms-white);
  padding: 48px 56px 44px;
  border-left: 4px solid var(--ms-azul);
  border-right: 1px solid var(--ms-border);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s, box-shadow 0.3s;
}

.ms-science__active-card:last-child {
  border-right: none;
}

.ms-science__active-card:hover {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(74,73,204,0.12);
}

.ms-science__active-card--featured {
  border-left-color: var(--ms-rosa);
  background: linear-gradient(135deg, #fff 0%, rgba(255,60,155,0.025) 100%);
}

.ms-science__active-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-azul);
  background: var(--ms-azul-light);
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
}

.ms-science__active-card--featured .ms-science__active-tag {
  color: var(--ms-rosa);
  background: var(--ms-rosa-light);
}

.ms-science__active-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  
  text-transform: uppercase;
  color: var(--ms-text);
  margin: 0;
}

.ms-science__active-desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ms-muted);
  margin: 0;
}

.ms-science__checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--ms-border);
  margin-top: 4px;
}

.ms-science__check {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ms-azul);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ms-science__active-card--featured .ms-science__check {
  color: var(--ms-rosa);
}

/* ── RESPONSIVO ── */
@media screen and (max-width: 900px) {
  .ms-science__header { padding: 0 24px; }
  .ms-science__keys-grid { grid-template-columns: repeat(3, 1fr); }
  .ms-science__key-item:nth-child(3) { border-right: none; }
  .ms-science__actives { flex-direction: column; }
  .ms-science__active-card { border-right: none; border-bottom: 1px solid var(--ms-border); padding: 36px 28px; }
  .ms-science__active-card:last-child { border-bottom: none; }
}

@media screen and (max-width: 600px) {
  .ms-kits {
    padding: 52px 18px 0;
  }

  .ms-kits__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ms-kits__trust-inner {
    flex-direction: column;
    gap: 20px;
  }

  .ms-kits__trust-divider {
    display: none;
  }

  .ms-kits__trust-banner {
    margin: 0 -18px;
  }

  /* Cabeçalho */
  .ms-kits__eyebrow {
    font-size: 14px;
  }

  .ms-kits__title {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.08;
  }

  .ms-kits__subtitle {
    font-size: 17px;
    line-height: 1.65;
    max-width: 340px;
  }

  /* Badge superior */
  .ms-kits__badge {
    font-size: 12px;
    padding: 7px 13px;
  }

  /* Overlay de quantidade */
  .ms-kits__qty-overlay {
    padding: 10px 14px;
  }

  .ms-kits__qty-num {
    font-size: 2.5rem;
  }

  .ms-kits__qty-label {
    font-size: 12px;
  }

  /* Corpo do card */
  .ms-kits__body {
    padding: 24px 22px 22px;
  }

  .ms-kits__tag {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  .ms-kits__kit-name {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .ms-kits__kit-subtitle {
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .ms-kits__items {
    gap: 10px;
    margin-bottom: 18px;
  }

  .ms-kits__items li {
    font-size: 17px;
    line-height: 1.6;
    gap: 10px;
  }

  .ms-kits__items li::before {
    width: 16px;
  }

  .ms-kits__benefit {
    font-size: 15px;
    line-height: 1.65;
    padding: 12px 15px;
    margin-bottom: 22px;
  }

  /* Preço */
  .ms-kits__price-old {
    font-size: 15px;
  }

  .ms-kits__price-new {
    font-size: 2.8rem;
  }

  .ms-kits__price-new sup {
    font-size: 1.1rem;
  }

  .ms-kits__price-cents {
    font-size: 1rem !important;
  }

  .ms-kits__installment-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .ms-kits__installment-highlight {
    font-size: 15px;
  }

  .ms-kits__no-interest-badge {
    font-size: 13px;
    padding: 4px 10px;
  }

  .ms-kits__price-save {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* CTA */
  .ms-kits__btn {
    font-size: 1.08rem;
    padding: 18px;
    letter-spacing: 0.06em;
  }

  /* Frete */
  .ms-kits__shipping {
    font-size: 14px;
    line-height: 1.45;
  }

  .ms-kits__shipping svg {
    width: 15px;
    height: 15px;
  }

  /* Trust banner */
  .ms-kits__trust-item strong {
    font-size: 15px;
  }

  .ms-kits__trust-item span {
    font-size: 14px;
    line-height: 1.5;
  }

  .ms-kits__trust-icon {
    width: 44px;
    height: 44px;
  }

  .ms-kits__trust-icon svg {
    width: 20px;
    height: 20px;
  }
}
/* END_SECTION:sobre */