/* Green "savings" line on the kit cards (Leve 4 / Leve 8 tiers) */
.of-kit .kdeal {
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  margin-top: 5px;
  display: block;
}

.of-kit .kdeal .kd-price {
  color: var(--ink);
}

.of-kit .kdeal .kd-save {
  color: var(--ok);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .of-kit {
    padding: 16px 12px;
    gap: 10px;
  }
  .of-kit .kdeal {
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }
}

/* =========================================================
   Fix: "Como a fórmula roxa transforma seu sorriso" card
   was oversized on mobile (near-fullscreen height, image and
   tag callouts overlapping, numbered rail floating outside
   the card). This scales the whole component down and keeps
   every element inside the card's visible bounds on phones.
   ========================================================= */
@media (max-width: 640px) {
  #scn-passos {
    padding: 28px 12px 0;
  }

  #scn-passos .sv {
    height: 440px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 34px -20px #7c3aed80;
  }

  #scn-passos .ps-rail {
    height: 150px;
    left: 8px;
  }

  #scn-passos .ps-dot {
    width: 22px;
    height: 22px;
    font-size: .58rem;
  }

  #scn-passos .ps-act {
    padding: 22px 16px 20px 38px;
    gap: 7px;
  }

  #scn-passos .ps-eyebrow {
    font-size: .58rem;
  }

  #scn-passos .ps-ghost {
    font-size: clamp(2.6rem, 15vw, 4.6rem);
    top: 26%;
  }

  #scn-passos .ps-fig {
    margin-top: 2px;
  }

  #scn-passos .ps-act img {
    width: min(26vw, 108px);
    height: min(15svh, 118px);
  }

  #scn-passos .ps-glow {
    width: min(46vw, 210px);
  }

  #scn-passos .ps-ring {
    width: min(50vw, 220px);
  }

  #scn-passos .ps-ring-2 {
    width: min(62vw, 270px);
  }

  /* The floating tag callouts overlapped the (now smaller) product
     image and crowded the card, so we hide them on small phones —
     the same info is still conveyed by the chips below the text. */
  #scn-passos .ps-tag {
    display: none;
  }

  #scn-passos .ps-act h3 {
    font-size: clamp(1.15rem, 5.2vw, 1.4rem);
  }

  #scn-passos .ps-act p {
    font-size: .78rem;
    line-height: 1.4;
    max-width: 300px;
  }

  #scn-passos .ps-chips span {
    font-size: .62rem;
    padding: 5px 10px;
  }
}

/* "Ver mais" reviews toggle */
.rev-more {
  display: none;
}

.btn-vermais {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 13px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s, opacity .15s;
}

.btn-vermais:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* Carrossel de fotos de clientes (loop infinito, velocidade moderada) */
.cmarq-sec {
  padding-bottom: 8px;
}

.cmarq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 26px;
}

.cmarq-stars {
  color: var(--gold);
  gap: 2px;
  margin-bottom: 10px;
  display: inline-flex;
}

.cmarq-stars .ic {
  width: 18px;
  height: 18px;
}

.cmarq-title {
  font-family: var(--serif);
  letter-spacing: -0.01em;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}

.cmarq-title em {
  color: var(--ac-d);
  font-style: italic;
}

@media (max-width: 640px) {
  .cmarq-title {
    font-size: 21px;
  }
}

.cmarquee {
  padding: 6px 0;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5% 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5% 95%, transparent);
}

.ctrack {
  width: max-content;
  display: flex;
  will-change: transform;
}

@keyframes cscroll {
  0% { transform: translate(0); }
  100% { transform: translate(-50%); }
}

.cphoto {
  flex: none;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px -20px #7c3aed4d;
}

.cphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .cphoto {
    width: 120px;
  }
}

/* Seção comparativa: Pasta Roxa Clareadora x pasta de dente comum */
.cmp-sec {
  background: var(--porc);
}

.cmp-sec h2 {
  max-width: 720px;
  margin-inline: auto;
}

.cmp-grid {
  grid-template-columns: 1fr 260px 1fr;
  align-items: start;
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
}

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

.cmp-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px -28px #0000004d;
}

.cmp-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cmp-neg {
  border-color: #f3d9d9;
}

.cmp-neg h3 {
  color: #b3413a;
}

.cmp-pos {
  border-color: color-mix(in oklab, var(--ac) 22%, var(--border));
  background: linear-gradient(180deg, var(--ac-l), #fff);
}

.cmp-pos h3 {
  color: var(--ac-d);
}

.cmp-list {
  flex-direction: column;
  gap: 13px;
  display: flex;
}

.cmp-list li {
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
}

.cmp-list li span {
  color: var(--ink);
}

.cmp-list li span b {
  color: var(--ac-d);
}

.cmp-xic {
  color: #c0453c;
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 1px;
}

.cmp-okic {
  color: var(--ok);
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 1px;
}

.cmp-mid {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  padding: 20px 16px;
  box-shadow: 0 16px 40px -28px #0000004d;
}

.cmp-mid-title {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
}

.cmp-mid-imgs {
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.cmp-mid-col {
  background: #faf8fd;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 78px;
  height: 96px;
  overflow: hidden;
  flex: none;
}

.cmp-mid-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-vs {
  color: var(--ac-d);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  flex: none;
}

.cmp-mid-rows {
  flex-direction: column;
  gap: 9px;
  display: flex;
}

.cmp-mid-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8px;
  border-top: 1px dashed var(--border);
  padding-top: 9px;
  display: grid;
}

.cmp-mid-row:first-child {
  border-top: none;
  padding-top: 0;
}

.cmp-mid-x {
  color: #b3413a;
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

.cmp-mid-ok {
  color: var(--ok);
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

.cmp-note {
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 11px;
  line-height: 1.6;
}
