html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* ajusta por causa do header fixo (se for fixo) */
}


:root{
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);
  --red: #E11D48; /* vermelho Velaro */
}

*{ box-sizing: border-box; margin:0; padding:0; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER básico, clean */
.hdr{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hdr__inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.hdr__left{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

/* Botão menu minimalista (vermelho) */
.hdr__menuBtn{
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  display:grid;
  place-items:center;
  cursor:pointer;
  padding: 0;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.hdr__menuBtn:hover{
  border-color: rgba(225,29,72,.40);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transform: translateY(-1px);
}

.hdr__menuBtn span{
  display:block;
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  margin: 2px 0;
}

/* Logo */
.hdr__logoLink{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.hdr__logo{
  height: 25px;      /* ajuste aqui conforme sua logo */
  width: auto;
  display:block;
}

/* Direita: compra segura (pequeno) */
.hdr__right{
  display:flex;
  align-items:center;
}

.hdr__secure{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Linha divisória discreta */
.hdr__divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(225,29,72,.0), rgba(15,23,42,.10), rgba(225,29,72,.0));
}

/* Mobile */
@media (max-width: 520px){
  .hdr__secure{
    font-size: 10px;
    letter-spacing: .10em;
  }
  .hdr__logo{ height: 15px; }
}
.hdr__menuBtn{
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 3px;                 /* controla o espaçamento */
  cursor:pointer;
  padding: 0;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.hdr__menuBtn span{
  display:block;
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  margin: 0;               /* remove espaçamento antigo */
}
.hdr__inner{
  padding: 12px 16px; /* antes 14px */
}
/* ================= DRAWER MENU ================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.drawer.is-open{
  pointer-events: auto;
  opacity: 1;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.35);
  cursor: pointer;
}

.drawer__panel{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: #fff;
  border-right: 1px solid var(--line);
  transform: translateX(-102%);
  transition: transform .22s ease;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 8px 6px 12px;
  border-bottom: 1px solid var(--line);
}

.drawer__title{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.drawer__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.drawer__link{
  display:block;
  padding: 14px 10px;
  margin-top: 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(15,23,42,.08);
}

.drawer__link:hover{
  border-color: rgba(225,29,72,.35);
}

.drawer__footer{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.drawer__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
/* ================= HERO CLEAN ================= */
.hero{
  background: #fff;
  padding: 26px 0 10px;
}

.hero__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.hero__title{
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero__media{
  margin: 0 auto 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f8fb;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  max-width: 860px;
}

.hero__img{
  width: 100%;
  height: auto;
  display: block;
}

.hero__sub{
  margin: 8px auto 14px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.hero__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

/* botões (se você já tiver no CSS, pode ignorar este bloco) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn--primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(225,29,72,.18);
}

.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(225,29,72,.24);
}

.btn--ghost{
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover{
  border-color: rgba(225,29,72,.35);
  transform: translateY(-1px);
}

/* responsivo */
@media (max-width: 720px){
  .hero__title{ font-size: 34px; }
  .hero__media{ border-radius: 18px; }
}

@media (max-width: 520px){
  .hero__title{ font-size: 30px; }
  .btn{ width: 100%; }
}
.hero__title span.line1{
  display: block;
  font-size: 22px;      /* menor que a linha principal */
  font-weight: 700;
  white-space: nowrap; /* força uma linha */
}
.hero__title{
  font-weight: 700;
}
.hero__title .hero__accent{
  font-weight: 800;
}
/* ================= BENEFÍCIOS (CARROSSEL) ================= */
.benefits{
  background: #fff;
  padding: 22px 0 10px;
}

.benefits__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.benefits__title{
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
  text-align: center;
}

.benefits__sub{
  margin: 0 0 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* track com scroll-snap (mobile first) */
.benefits__carousel{
  position: relative;
}

.benefits__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 12px;

  overflow-x: auto;
  padding: 6px 2px 10px;

  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.benefits__track::-webkit-scrollbar{ display:none; } /* Chrome/Safari */

.benefitCard{
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  overflow: hidden;
}

.benefitCard__media{
  background: #f7f8fb;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.benefitCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.benefitCard__h{
  font-size: 15px;
  margin: 12px 12px 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.benefitCard__p{
  margin: 0 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* dots */
.benefits__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.dot.is-active{
  background: var(--red);
  border-color: rgba(225,29,72,.35);
  transform: scale(1.15);
}

/* desktop: vira 3 cards lado a lado */
@media (min-width: 920px){
  .benefits__track{
    grid-auto-columns: 1fr;
    overflow: visible;
  }
  .benefits__dots{ display:none; }
}
/* ================= MATERIAL & QUALIDADE ================= */
.material{
  background: #fff;
  padding: 26px 0 12px;
}

.material__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.material__title{
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.material__media{
  margin: 0 auto 12px;
  max-width: 860px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f8fb;
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}

.material__media img{
  width: 100%;
  height: auto;
  display: block;
}

.material__text{
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* ajustes mobile */
@media (max-width: 520px){
  .material{
    padding-top: 22px;
  }
  .material__title{
    font-size: 18px;
  }
}
/* ================= BARRA DE CONFIANÇA ================= */
.trustbar{
  background: #fff;
  padding: 18px 0 10px;
}

.trustbar__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.trustbar__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92%;
  gap: 10px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 10px;
}
.trustbar__track::-webkit-scrollbar{ display:none; }

.trustPill{
  scroll-snap-align: start;
  display:flex;
  align-items:center;
  gap: 12px;

  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(225,29,72,.20);
  border: 1px solid rgba(255,255,255,.18);
}

.trustPill__icon{
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) invert(1); /* deixa branco (se seu ícone for escuro) */
  opacity: .95;
}

.trustPill__h{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.trustPill__p{
  margin-top: 2px;
  font-size: 12px;
  opacity: .92;
  line-height: 1.1;
}

/* dots */
.trustbar__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 6px;
}

.trustbar .dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.trustbar .dot.is-active{
  background: var(--red);
  border-color: rgba(225,29,72,.35);
  transform: scale(1.18);
}

/* Desktop: 4 lado a lado */
@media (min-width: 920px){
  .trustbar__track{
    grid-auto-columns: 1fr;
    overflow: visible;
  }
  .trustbar__dots{ display:none; }
  .trustPill{ justify-content:flex-start; }
}
/* ================= CHECKLIST ================= */
.checks{
  background: #fff;
  padding: 22px 0 6px;
}

.checks__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.checks__title{
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}

.checks__sub{
  text-align: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.checks__list{
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.checkItem{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);

  /* estado fixo */
  opacity: 1;
  transform: none;
}


.checkItem.is-show{
  opacity: 1;
  transform: translateY(0);
}

.checkIcon{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.25);
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.checkTxt strong{
  display: block;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.checkTxt span{
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

/* desktop: duas colunas (mais premium) */
@media (min-width: 920px){
  .checks__list{
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile fino */
@media (max-width: 520px){
  .checks__title{ font-size: 18px; }
}
/* ================= ESPECIFICAÇÕES + AVISO DO MODELO ================= */
.specs{
  background: #fff;
  padding: 20px 0 8px;
}

.specs__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.specs__title{
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px;
}

.specs__list{
  list-style: none;
  padding: 0;
  margin: 0 auto 14px;
  max-width: 820px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.specs__list li{
  padding: 14px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.specs__list strong{
  color: var(--text);
}

.specs__note{
  max-width: 820px;
  margin: 0 auto 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;

  border: 1px solid rgba(225,29,72,.22);
  background: rgba(225,29,72,.06);
  border-radius: 16px;
  padding: 12px 12px;
}

.specs__noteIcon{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.25);
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.specs__noteTxt{
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.specs__accent{
  color: var(--red);
  font-weight: 800;
}

.specs__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* mobile */
@media (max-width: 520px){
  .specs__title{ font-size: 17px; }
  .specs__actions .btn{ width: 100%; }
}
/* Evita o navegador “ancorar” e ajustar a rolagem */
body { overflow-anchor: none; }
/* evita “puxão” do navegador nessa seção */
.trustbar { overflow-anchor: none; }
/* ================= CTA PRODUTO ================= */
.cta{
  background:#fff;
  padding:26px 0 16px;
}

.cta__wrap{
  max-width:420px;
  margin:0 auto;
  padding:0 16px;
}

.cta__title{
  text-align:center;
  font-size:22px;
  letter-spacing:-.02em;
  margin-bottom:14px;
}

/* Galeria */
.cta__gallery{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f7f8fb;
}
.cta__gallery img{
  width:100%;
  display:block;
}

/* Preço */
.cta__price{
  text-align:center;
  margin:14px 0;
}
.cta__priceMain{
  font-size:26px;
  font-weight:900;
}
.cta__priceSub{
  font-size:13px;
  color:var(--muted);
}

/* Seletores */
.cta__selectors{
  display:grid;
  gap:10px;
}
.cta__selectors label{
  display:grid;
  gap:4px;
}
.cta__selectors span{
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}
.cta__selectors select{
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  padding:0 12px;
  font-weight:600;
}
.cta__hint{
  font-size:12px;
  color:var(--muted);
}

/* Cores */
.cta__colors{
  margin-top:16px;
}
.cta__colorsLabel{
  font-size:13px;
  margin-bottom:8px;
}
.cta__colorsGrid{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.color{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:13px;
  cursor:pointer;
}
.color.is-active{
  border-color:var(--red);
  color:var(--red);
  font-weight:800;
}

/* Botão */
.cta__buy{
  width:100%;
  margin-top:16px;
  height:52px;
  border-radius:14px;
  border:0;
  background:var(--red);
  color:#fff;
  font-weight:900;
  letter-spacing:.04em;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(225,29,72,.25);
}
/* ================= MODAL ================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.is-open{ display: block; }

.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__box{
  position: relative;
  max-width: 420px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.modal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.modal__title{
  font-size: 18px;
  margin-bottom: 6px;
}

.modal__subtitle{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.modal__summary{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.modal__actions{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.btnPrimary{
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

.btnGhost{
  height: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.modal__secure{
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
}
.modal__color{
  display: flex;
  align-items: center;
  gap: 8px;
}

.colorDot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
}
.modal__summary{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.modal__row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.modal__label{
  color: var(--muted);
  font-weight: 600;
}

.modal__value{
  font-weight: 800;
  color: var(--text);
  text-align: right;
}

.modal__colorValue{
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.colorDot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #111;
}
/* CTA refinamentos */
.cta__subtitle{
  text-align:center;
  font-size:14px;
  color:#555;
  margin-bottom:14px;
}

.cta__trust{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:14px 0;
  font-size:13px;
  color:#333;
}

.cta__trustItem{
  display:flex;
  align-items:center;
  gap:6px;
}

.cta__trustItem img{
  height:16px;
}

.cta__colorsHint{
  display:block;
  font-size:12px;
  color:#666;
  margin-top:2px;
}

.color{
  border:1.5px solid #ddd;
}

.color.is-active{
  border:2px solid var(--red);
  font-weight:700;
}

.cta__buy{
  position:relative;
}

.cta__buySub{
  display:block;
  font-size:12px;
  font-weight:400;
  opacity:.85;
}

.cta__social{
  margin-top:10px;
  font-size:13px;
  text-align:center;
  color:#444;
}
.cta__trust{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:14px 0;
  font-size:13px;
  color:#333;
}

.cta__trustItem{
  display:flex;
  align-items:center;
  gap:6px;
}

.cta__trustItem:first-child{
  justify-content:center; /* 👈 centraliza o Mercado Livre */
}
.cta__price{
  text-align:center;
  margin:14px 0;
}

.cta__priceCompare{
  font-size:13px;
  color:#888;
  margin-bottom:2px;
}

.cta__priceCompare span{
  text-decoration:line-through;
}

.cta__priceMain{
  font-size:28px;
  font-weight:900;
  color:#111;
}

.cta__priceSub{
  font-size:13px;
  color:#555;
}
.cta__productName{
  font-size:15px;
  font-weight:800;
  text-align:center;
  margin:10px 0 6px;
  color:#111;
}

.cta__productName span{
  display:block;
  font-size:13px;
  font-weight:500;
  color:#555;
}
.cta__priceMain{
  color: var(--red);
}
.counter{
  text-align:center;
  padding:40px 16px;
}

.counter__number{
  font-size:42px;
  font-weight:900;
  line-height:1;
  color:#111;
}

.counter__plus{
  color:var(--red);
  font-weight:900;
  margin-left:2px;
}

.counter__text{
  margin-top:8px;
  font-size:14px;
  color:#555;
}
.reviews{
  padding:48px 0;
  background:#fafafa;
}

.reviews__title{
  text-align:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:20px;
}

.reviews__carousel{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:0 16px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.reviews__carousel::-webkit-scrollbar{
  display:none;
}

.review{
  flex:0 0 280px;
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  scroll-snap-align:start;
}

.review__header{
  display:flex;
  align-items:center;
  gap:10px;
}

.review__header img{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
}

.verified{
  font-size:12px;
  color:var(--red);
}

.review__stars{
  margin:6px 0;
  color:#f5a623;
  font-size:14px;
  font-weight:700;
}

.review__stars span{
  color:#111;
  margin-left:4px;
}

.review__text{
  font-size:13px;
  color:#444;
  margin-bottom:10px;
}

.review__photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:12px;
  object-fit:cover;
}
.faq{
  padding:48px 16px;
  background:#fff;
}

.faq__wrap{
  max-width:720px;
  margin:0 auto;
}

.faq__title{
  text-align:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:24px;
}

.faq__item{
  border-bottom:1px solid #eee;
}

.faq__question{
  width:100%;
  padding:14px 0;
  background:none;
  border:none;
  text-align:left;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  position:relative;
}

.faq__question::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color:var(--red);
}

.faq__item.is-open .faq__question::after{
  content:"–";
}

.faq__answer{
  max-height:0;
  overflow:hidden;
  font-size:14px;
  color:#555;
  line-height:1.5;
  transition:max-height .3s ease;
}

.faq__item.is-open .faq__answer{
  max-height:200px;
  padding-bottom:14px;
}
.footer{
  background:#f6f6f6;
  border-top:1px solid #e9e9e9;
  padding:34px 16px;
}

.footer__wrap{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}

.footer__brand{
  font-weight:900;
  letter-spacing:.08em;
  font-size:16px;
  color:#111;
}

.footer__rights{
  margin-top:6px;
  font-size:13px;
  color:#666;
}

.footer__line{
  width:56px;
  height:3px;
  background:var(--red);
  margin:16px auto 14px;
  border-radius:999px;
  opacity:.95;
}

.footer__info p{
  margin:6px 0;
  font-size:13px;
  color:#333;
}

.footer__info strong{
  font-weight:800;
  color:#111;
}

.footer__info a{
  color:#333;
  text-decoration:none;
  border-bottom:1px dashed rgba(0,0,0,.25);
}

.footer__info a:hover{
  color:var(--red);
  border-bottom-color:rgba(193,18,31,.55);
}

.footer__bottom{
  margin-top:16px;
  font-size:12px;
  color:#777;
}
.hdr__logo{
  display: block;
  height: 75px;        /* controla o tamanho real */
  width: auto;
  line-height: 1;
  transform: translateY(4px); /* 🔥 DESCE DE VERDADE */
}
.pg{
  margin: 10px auto 0;
  width: 100%;
  max-width: 420px;
}

.pg__main{
  width: 100%;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  display: block;
}

.pg__main img{
  width: 100%;
  height: auto;
  display: block;
}

.pg__thumbs{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pg__thumbs::-webkit-scrollbar{ display:none; }

.pg__thumb{
  flex: 0 0 auto;
  width: 62px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e9e9ee;
  background: #fff;
  padding: 0;
  overflow: hidden;
  opacity: .85;
}

.pg__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.pg__thumb.is-active{
  border-color: #E11D48;
  opacity: 1;
}
.stock{
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: #f7f7f8;
  border-radius: 10px;
}

.stock__text{
  font-size: 13px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.stock__text strong{
  color: #E11D48; /* verde suave */
  font-weight: 700;
}

.stock__bar{
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.stock__fill{
  display: block;
  height: 100%;
  width: 45%; /* vai ser controlado pelo JS */
  background: #E11D48;
  border-radius: 999px;
  transition: width .6s ease;
}
/* MATERIAL – controla proporção do GIF */
.material__media{
  width: 100%;
  max-width: 420px;          /* ajuste se quiser maior/menor */
  margin: 0 auto;
  aspect-ratio: 3 / 4;       /* 🔥 PROPORÇÃO 3:4 */
  border-radius: 16px;
  overflow: hidden;
  background: #f6f6f6;       /* fundo neutro enquanto carrega */
}

/* GIF / imagem dentro */
.material__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* corta excesso sem distorcer */
  display: block;
}
/* CTA PRINCIPAL */
.cta__buy {
  background: #16A34A;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 8px 20px rgba(22,163,74,.35);
  transition: all .25s ease;
  animation: pulseCTA 2.2s infinite;
}

/* Hover */
.cta__buy:hover {
  background: #15803D;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(22,163,74,.45);
}

/* Clique */
.cta__buy:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(22,163,74,.35);
}

/* Pulse leve (premium, não agressivo) */
@keyframes pulseCTA {
  0% {
    box-shadow: 0 0 0 0 rgba(22,163,74,.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(22,163,74,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22,163,74,0);
  }
}
/* BOTÃO DO MODAL */
.btnPrimary,
#goToPayment {
  background: #16A34A;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(22,163,74,.35);
}

.btnPrimary:hover,
#goToPayment:hover {
  background: #15803D;
  box-shadow: 0 8px 20px rgba(22,163,74,.45);
}

.btnPrimary:active,
#goToPayment:active {
  transform: scale(.98);
}
/* PREÇO PRINCIPAL */
.cta__priceMain {
  color: #16A34A; /* verde checkout */
  font-weight: 800;
}
/* ================= WIDGET VEÍCULO (MACENA) — estilo LP (branco + #E11D48) ================= */

/* NÃO precisa @font-face aqui (você já usa Inter na LP) */
/* Mantém tudo harmonizado com a página */

#widget-macena{
  color:#111;
  box-sizing:border-box;
  margin: 14px auto 0;
  max-width: 560px;
  width: 100%;
}

#widget-macena *{ box-sizing:border-box; }

#widget-macena .macena-container{
  background:#fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,.10);
  box-shadow: 0 10px 30px rgba(17,17,17,.06);
}

/* Título */
#widget-macena h2{
  text-align:center;
  margin: 2px 0 6px 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color:#111;
}

#widget-macena .subtitle{
  text-align:center;
  margin: 0 0 16px 0;
  font-size: .92rem;
  color: rgba(17,17,17,.62);
}

/* Form */
#widget-macena .form-group{ margin-bottom: 12px; }

#widget-macena .form-group label{
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 8px;
  display:block;
  color: rgba(17,17,17,.72);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Selects (bem clean, com foco vermelho) */
#widget-macena select{
  width:100%;
  height: 46px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17,17,17,.18);
  background:#fff;
  font-size: 1rem;
  color:#111;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  -webkit-appearance: none;
  appearance: none;
}

#widget-macena select:focus{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 0 0 4px rgba(225,29,72,.15);
}

#widget-macena select:disabled{
  background: rgba(17,17,17,.04);
  color: rgba(17,17,17,.45);
  cursor:not-allowed;
}

/* Bolinhas de cor */
#widget-macena .color-selector-container{
  display:flex;
  gap: 14px;
  justify-content:center;
  padding: 6px 0 2px;
  transition: opacity .2s ease;
}

#widget-macena .color-selector-container.disabled{
  opacity:.35;
  pointer-events:none;
}

#widget-macena .color-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(17,17,17,.14);
  position: relative;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 6px 16px rgba(17,17,17,.10);
}

#widget-macena .color-btn:hover{
  transform: translateY(-1px) scale(1.04);
}

/* cores */
#widget-macena .bg-preto{ background:#111111; }
#widget-macena .bg-cinza{ background:#5a5a5a; }
#widget-macena .bg-bege{ background:#C8AD7F; }

/* selecionado (cor da loja) */
#widget-macena .color-btn.selected{
  border-color: rgba(225,29,72,.90);
  box-shadow: 0 0 0 5px rgba(225,29,72,.18), 0 10px 22px rgba(17,17,17,.10);
  transform: scale(1.08);
}

/* check no selecionado */
#widget-macena .color-btn.selected::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.85);
  opacity: .9;
}

/* label cor selecionada */
#widget-macena .color-label{
  text-align:center;
  font-size: .90rem;
  color: rgba(17,17,17,.70);
  margin-top: 6px;
  min-height: 1.2em;
  font-weight: 700;
}

/* Resultado */
#widget-macena .resultado-box{
  margin-top: 14px;
  display: none;
  animation: fadeInMacena .35s ease;
}

#widget-macena .success-box{
  background: rgba(225,29,72,.06);
  border: 1px solid rgba(225,29,72,.22);
  color: rgba(17,17,17,.90);
  padding: 14px;
  border-radius: 14px;
  text-align:center;
  box-shadow: 0 10px 22px rgba(17,17,17,.06);
}

#widget-macena .success-icon{
  font-size: 1.6rem;
  display:block;
  margin-bottom: 6px;
}

@keyframes fadeInMacena{
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Mobile refinado */
@media (max-width: 420px){
  #widget-macena .macena-container{ padding: 14px; border-radius: 16px; }
  #widget-macena h2{ font-size: 1.05rem; }
  #widget-macena select{ height: 44px; border-radius: 12px; }
  #widget-macena .color-btn{ width: 42px; height: 42px; }
}
/* Validador Social */
    .macena-social-proof {
        font-family: 'Poppins', sans-serif;
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: white;
        padding: 12px 18px;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 9999;
        max-width: 320px;
        transform: translateY(150%);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid #eee;
    }

    .macena-social-proof.active {
        transform: translateY(0);
    }

    .sp-icon {
        width: 40px;
        height: 40px;
        background: #28a745;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 18px;
        flex-shrink: 0;
    }

    .sp-text h4 {
        margin: 0;
        font-size: 0.85em;
        font-weight: 600;
        color: #333;
    }

    .sp-text p {
        margin: 2px 0 0;
        font-size: 0.75em;
        color: #666;
        line-height: 1.3;
    }

    .sp-text span.product {
        color: #0056b3;
        font-weight: 600;
    }
    .macena-social-proof{
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9999;
  display: flex;
  gap: 10px;
  align-items: center;

  background: #ffffff;
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);

  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: .28s ease;
}

.macena-social-proof.is-show{
  transform: translateY(0);
  opacity: 1;
}

.macena-social-proof .sp-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #16a34a; /* verde checkout */
  font-weight: 800;
}

.macena-social-proof .sp-text h4{
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
}

.macena-social-proof .sp-text p{
  margin: 2px 0 0 0;
  font-size: 12px;
  opacity: .9;
}

.macena-social-proof .product{
  font-weight: 800;
}
.panelTitle span {
  font-size: 1em;   /* força o mesmo tamanho do título */
  font-weight: 800;
  color: #E11D48;
}
/* =========================
  BLOCO KIT (2 opções)
  (classes novas: nkit / nmodal)
========================= */
.nkit{
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 14px 18px;
}

.nkit__head{ margin-bottom: 10px; }
.nkit__title{
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  font-weight: 800;
}
.nkit__sub{
  margin: 6px 0 0;
  font-size: 13px;
  opacity: .78;
}

.nkit__grid{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

/* Card */
.nkitCard{
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 10px;
  align-items: center;

  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px;
  cursor: pointer;

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.nkitCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
}

.nkitCard.is-selected{
  border-color: rgba(16,185,129,.55);
  box-shadow: 0 10px 24px rgba(16,185,129,.12);
}

/* Left area (badge + thumb) */
.nkitCard__left{
  display: grid;
  gap: 8px;
  align-content: start;
}
.nkitCard__badge{
  display: inline-flex;
  width: fit-content;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(16,185,129,.14);
  color: #0f766e;
}
.nkitCard__badge--soft{
  background: rgba(99,102,241,.12);
  color: #4338ca;
}

.nkitCard__thumb{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f5f6f7;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.nkitCard__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mid area */
.nkitCard__mid{ min-width: 0; }
.nkitCard__name{
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .1px;
}
.nkitCard__name span{ opacity: .45; padding: 0 3px; }
.nkitCard__name strong{ font-weight: 900; }

.nkitCard__savePill{
  display: inline-flex;
  margin-top: 7px;
  font-size: 11px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 700;
  opacity: .95;
}

/* Right area (prices) */
.nkitCard__right{
  text-align: right;
  padding-left: 6px;
}
.nkitCard__old{
  font-size: 11px;
  opacity: .55;
  text-decoration: line-through;
  font-weight: 700;
}
.nkitCard__now{
  font-size: 15px;
  font-weight: 900;
  color: #0ea75a;
  margin-top: 2px;
}

/* Seu bloco de preço (mantive seu padrão, só dei um acabamento) */
.cta__price{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
}

.cta__priceCompare{
  font-size: 12px;
  opacity: .7;
  font-weight: 700;
}
.cta__priceCompare span{ text-decoration: line-through; }

.cta__priceMain{
  font-size: 26px;
  font-weight: 950;
  margin-top: 6px;
  letter-spacing: -0.4px;
}

.cta__priceSub{
  font-size: 12px;
  opacity: .75;
  margin-top: 4px;
  font-weight: 700;
}

/* CTA */
.nkit__cta{
  margin-top: 10px;
  display: grid;
  place-items: center;
  text-align: center;

  background: #16a34a;
  color: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: .2px;

  box-shadow: 0 14px 26px rgba(22,163,74,.18);
}

.nkit__cta small{
  display: block;
  margin-top: 4px;
  font-size: 11px;
  opacity: .9;
  font-weight: 700;
}

.nkit__note{
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .7;
}

/* =========================
  MODAL
========================= */
.nmodal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.nmodal.is-open{ display: block; }

.nmodal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.46);
}

.nmodal__card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 28px));
  background: #fff;
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.08);
}

.nmodal__close{
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  opacity: .7;
}

.nmodal__title{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}
.nmodal__desc{
  margin: 6px 0 0;
  font-size: 12.5px;
  opacity: .75;
}

.nmodal__summary{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(0,0,0,.02);
}

.nrow{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.nrow:last-child{ border-bottom: 0; }
.nrow span{
  font-size: 12px;
  opacity: .7;
  font-weight: 700;
}
.nrow strong{
  font-size: 12.5px;
  font-weight: 900;
}

.nmodal__actions{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 12px;
}

.nbtn{
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.12);
  cursor: pointer;
}
.nbtn--ghost{
  background: #fff;
}
.nbtn--solid{
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.nmodal__fine{
  margin: 10px 0 0;
  font-size: 11px;
  opacity: .65;
}

/* Mobile tweaks */
@media (max-width: 380px){
  .nkitCard{ grid-template-columns: 70px 1fr auto; }
  .cta__priceMain{ font-size: 24px; }
}
.kit-card.selected{
  border: 2px solid #E11D48;
  background: rgba(225,29,72,.06);
}

.kit-badge{
  background:#E11D48;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:4px 8px;
  border-radius:999px;
}

.kit-price{
  color:#16a34a; /* verde só no valor */
  font-weight:800;
}
/* =========================
   NKIT (Escolha seu kit)
   Cole no FINAL do seu CSS
========================= */
.nkit{
  width: 100%;
  padding: 18px 0 6px;
}

.nkit__head{
  margin-bottom: 12px;
}

.nkit__title{
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.nkit__sub{
  margin: 6px 0 0;
  font-size: 13px;
  opacity: .85;
}

/* Grid 2 opções */
.nkit__grid{
  display: grid;
  gap: 12px;
}

/* Card */
.nkitCard{
  width: 100%;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;

  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 16px;

  padding: 12px;
  cursor: pointer;
  text-align: left;

  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}

.nkitCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Selected (o que você queria) */
.nkitCard.is-selected{
  border: 2px solid #E11D48;
  background: rgba(225,29,72,.06);
  box-shadow: 0 12px 30px rgba(225,29,72,.10);
}

/* Coluna esquerda */
.nkitCard__left{
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: start;
}

.nkitCard__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #fff;
  background: #E11D48;
}

.nkitCard__badge--soft{
  background: rgba(225,29,72,.12);
  color: #E11D48;
}

/* Mini imagem */
.nkitCard__thumb{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.nkitCard__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Meio */
.nkitCard__name{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.nkitCard__name span{
  opacity: .6;
  padding: 0 6px;
}

.nkitCard__savePill{
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.10);
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}

/* Direita */
.nkitCard__right{
  text-align: right;
  white-space: nowrap;
}

.nkitCard__old{
  font-size: 12px;
  text-decoration: line-through;
  opacity: .65;
}

.nkitCard__now{
  margin-top: 2px;
  font-size: 16px;
  font-weight: 900;
  color: #16a34a;
}

/* Deixa mais “premium” no mobile */
@media (max-width: 420px){
  .nkitCard{
    grid-template-columns: 58px 1fr auto;
    padding: 10px;
    border-radius: 14px;
  }
  .nkitCard__now{ font-size: 15px; }
}
/* =========================
   FIX BADGE (não esmagar conteúdo no mobile)
   Usa suas classes: .nkitCard__badge / .nkitCard__badge--soft
========================= */

.nkitCard{
  position: relative;
}

/* IMPORTANTE: não reservar espaço no meio (isso tava quebrando no celular) */
.nkitCard__mid{
  padding-right: 0 !important;
}

/* badge no canto direito */
.nkitCard__badge,
.nkitCard__badge--soft{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;

  white-space: nowrap;
  line-height: 1;
  border-radius: 999px;
}

/* no mobile: badge menor pra não ficar “gigante” e não chamar tanta atenção */
@media (max-width: 520px){
  .nkitCard__badge,
  .nkitCard__badge--soft{
    top: 8px;
    right: 8px;
    font-size: 10px;
    padding: 5px 8px;
  }
}

/* (opcional mas recomendado) dá um respiro no topo do texto pra não encostar no badge */
.nkitCard__name{
  padding-top: 18px;
}

@media (max-width: 520px){
  .nkitCard__name{
    padding-top: 16px;
  }
}
/* =========================
   ENTREGA (NOVA) — nx-ship
========================= */
.nx-ship{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.nx-ship__row{
  display: flex;
  gap: 10px;
  align-items: center;
}

.nx-ship__logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nx-ship__txt{ line-height: 1.15; }

.nx-ship__line1{
  font-size: 13px;
  color: rgba(0,0,0,.78);
}

.nx-ship__free{
  color: #16a34a;
  font-weight: 900;
}

.nx-ship__to{
  margin: 0 4px;
  color: rgba(0,0,0,.55);
}

.nx-ship__city{
  font-weight: 900;
  color: rgba(0,0,0,.82);
}

.nx-ship__line2{
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(0,0,0,.60);
}

@media (max-width: 360px){
  .nx-ship__line1{ font-size: 12.5px; }
  .nx-ship__line2{ font-size: 12px; }
}
.nxShip{
  margin-top: 12px;
  margin-bottom: 18px; /* ✅ separa do contador */
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.nxShip__row{ display:flex; gap:10px; align-items:center; }
.nxShip__logo{ width:34px; height:34px; object-fit:contain; flex:0 0 auto; }
.nxShip__txt{ line-height:1.15; }

.nxShip__line1{ font-size:13px; color: rgba(0,0,0,.78); }
.nxShip__free{ color:#16a34a; font-weight:900; }
.nxShip__to{ margin:0 4px; color: rgba(0,0,0,.55); }
.nxShip__city{ font-weight:900; color: rgba(0,0,0,.82); }

.nxShip__line2{ margin-top:4px; font-size:12.5px; color: rgba(0,0,0,.60); }

@media (max-width:360px){
  .nxShip__line1{ font-size:12.5px; }
  .nxShip__line2{ font-size:12px; }
}
/* FIX iPhone: texto do nome do kit não ficar azul */
.nkitCard { color: #111; } /* cor base do card */

.nkitCard__name,
.nkitCard__name *{
  color: #111 !important;
  -webkit-text-fill-color: #111; /* iOS/Safari */
}

/* mantém o "•" mais fraquinho */
.nkitCard__name span{
  color: rgba(17,17,17,.45) !important;
  -webkit-text-fill-color: rgba(17,17,17,.45);
}

/* se você quiser o "Sem/Com porta-malas" mais forte */
.nkitCard__name strong{
  font-weight: 800;
}
/* COD toggle */
.cod{ margin-top: 12px; }

.cod__card{
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cod__card.is-on{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 10px 22px rgba(225,29,72,.08);
}

.cod__left{ flex: 0 0 auto; }

.cod__badge{
  display:inline-flex;
  height: 22px;
  align-items:center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: #E11D48;
  white-space: nowrap;
}

.cod__mid{ flex: 1; min-width: 0; }

.cod__title{
  font-size: 14px;
  font-weight: 900;
  color: rgba(0,0,0,.88);
  line-height: 1.1;
}

.cod__desc{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,.62);
  line-height: 1.15;
}

.cod__right{
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

.cod__price{
  font-size: 14px;
  font-weight: 900;
  color: #16a34a;
}

.cod__hint{
  margin-top: 4px;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  font-weight: 700;
}
/* =========================
   FORMA DE PAGAMENTO (npay)
========================= */
.npay{ margin-top: 12px; }
.npay__head{ margin: 8px 0 10px; }
.npay__title{ margin: 0; font-size: 16px; font-weight: 800; }
.npay__sub{ margin: 4px 0 0; font-size: 12.5px; opacity: .78; }

.npay__grid{
  display: grid;
  gap: 10px;
}

/* garante que o card não quebre no mobile */
.npayCard{
  text-align: left;
  width: 100%;
}

.npayCard .nkitCard__name{
  line-height: 1.15;
}

/* opcional: deixa “selecionado” com borda mais forte (se você já usa, pode ignorar) */
.nkitCard.is-selected{
  border-color: #E11D48;
  box-shadow: 0 0 0 2px rgba(225,29,72,.08);
}
/* mostra "Selecionado" só no pagamento ativo */
.npayPicked{
  display:none;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #16a34a; /* verde */
}

.npayCard.is-selected .npayPicked{ display: inline-flex; }
/* ===== PAGAMENTO (estética) ===== */
.npayCard{
  position: relative;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  background: #fff;
  padding: 14px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.npayCard:active{ transform: scale(.99); }

.npayCard.is-selected{
  border-color: rgba(225,29,72,.55); /* vermelho Nexus */
  box-shadow: 0 14px 34px rgba(225,29,72,.10);
}

/* ícone redondinho (no lugar da imagem quebrada) */
.npayIcon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

.npayIcon svg{
  fill: rgba(0,0,0,.72);
}

.npayCard.is-selected .npayIcon{
  background: rgba(225,29,72,.08);
  border-color: rgba(225,29,72,.18);
}

.npayCard.is-selected .npayIcon svg{
  fill: rgba(225,29,72,.90);
}

/* badge no canto (mais clean) */
.npayCard .nkitCard__badge{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10.5px;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  color: rgba(0,0,0,.70);
}

.npayCard.is-selected .nkitCard__badge{
  background: rgba(225,29,72,.10);
  color: rgba(225,29,72,.95);
}

/* “Selecionado” some e aparece só no ativo (já do jeito certo) */
.npayPicked{
  display:none;
  font-size: 12px;
  font-weight: 800;
  color: #16a34a;
}
.npayCard.is-selected .npayPicked{ display:inline-flex; }

/* textos: mais hierarquia */
.npayCard .nkitCard__name{ font-weight: 800; }
.npayCard .nkitCard__savePill{
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.18);
  color: rgba(0,0,0,.72);
}
/* ===== PAGAMENTO: texto clean ===== */
.npaySub{
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.2;
  color: rgba(0,0,0,.58);
  font-weight: 600;
}

.npayDot{
  display: inline-block;
  margin: 0 6px;
  opacity: .55;
}

.npayCard .nkitCard__name{
  font-size: 14px;
  font-weight: 900;
  color: rgba(0,0,0,.86);
}

/* remove “balão” se ainda existir no layout */
.npayCard .nkitCard__savePill{
  display:none !important;
}
.npayCard .nkitCard__right{
  text-align: right;
  min-width: 86px;
}

.npayCard .nkitCard__old{
  font-size: 11px;
  color: rgba(0,0,0,.45);
  text-decoration: none; /* sem risco */
}

.npayCard .nkitCard__now{
  font-size: 14px;
  font-weight: 900;
}
/* ===== FIX: painel cortando nas laterais (mobile) ===== */

/* 1) garante que nada do painel ultrapasse a viewport */
#widget-macena,
#widget-macena *{
  box-sizing: border-box;
}

/* 2) o bloco do painel não pode estourar */
#widget-macena{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* 3) se o seu painel estiver dentro de uma section/container com padding estranho */
@media (max-width: 520px){
  #widget-macena{
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* ===== BOTÃO CTA ===== */
.cta__btn,
.cta__btnPrimary,
button.cta__btn,
a.cta__btn{
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-sizing: border-box;
}

/* se o botão estiver dentro de um wrapper com padding estranho */
.cta__btnWrap{ width: 100%; max-width: 100%; }
/* ===== ESTOQUE ===== */
.stockRow,
.stockBox,
.stockBar,
.stockMeter{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.stockMeter{ overflow: hidden; } /* evita a barra vazar */
/* =========================
   FIX CORTE LATERAL (MOBILE)
   ========================= */
@media (max-width: 520px){

  /* Qualquer bloco que esteja "puxando" pros lados */
  .stock, .stockRow, .stockBox, .stockBar, .stockMeter,
  .cta__btn, .cta__btnWrap, .cta__actions,
  #widget-macena, .widget-macena, .vehiclePanel,
  .shipBox, .npay, .nkit, .nkit__grid, .npay__grid{
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;

    /* mata o que causa corte */
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  /* garante que botão e barra respeitem o padding do pai */
  .cta__btn, button.cta__btn, a.cta__btn{
    display: block !important;
  }
}
/* ===== Fix corte lateral (CTA + Frete) ===== */
.cta__buy,
.nxShip{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* garante respiro lateral no mobile */
@media (max-width: 520px){
  .cta__buy,
  .nxShip{
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 520px){
  .cta__buy,
  .nxShip{
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
}
.cta__payNow{
  font-weight: 800;
  color: rgba(0,0,0,.55);
}
/* Quando estiver em COD: "Você paga agora" não pode herdar o riscado do "de R$..." */
.cta__priceCompare .cta__payNow{
  text-decoration: none !important;
  font-weight: 800;
  color: rgba(0,0,0,.60);
  letter-spacing: .1px;
}
/* CARD PAGAMENTO: layout sólido (não deixa o texto invadir o preço) */
.npayCard{
  display: grid;
  grid-template-columns: 52px 1fr auto; /* left | mid | right */
  align-items: center;
  column-gap: 12px;
}

/* garante que cada bloco respeite sua coluna */
.npayCard .nkitCard__left{ grid-column: 1; }
.npayCard .nkitCard__mid { grid-column: 2; min-width: 0; } /* min-width 0 é ESSENCIAL */
.npayCard .nkitCard__right{
  grid-column: 3;
  justify-self: end;
  text-align: right;
  flex: none;
  white-space: nowrap; /* não quebra o preço */
}

/* texto do meio não “corre” pro preço */
.npayCard .nkitCard__name{
  font-weight: 800;
  line-height: 1.1;
}

.npayCard .npaySub{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.1;
  color: rgba(0,0,0,.65);
  max-width: 100%;
  white-space: nowrap;     /* tenta manter em 1 linha */
  overflow: hidden;        /* se não couber, corta */
  text-overflow: ellipsis; /* ... */
}

/* CARD PAGAMENTO: layout sólido (não deixa o texto invadir o preço) */
.npayCard{
  display: grid;
  grid-template-columns: 52px 1fr auto; /* left | mid | right */
  align-items: center;
  column-gap: 12px;
}

/* garante que cada bloco respeite sua coluna */
.npayCard .nkitCard__left{ grid-column: 1; }
.npayCard .nkitCard__mid { grid-column: 2; min-width: 0; } /* min-width 0 é ESSENCIAL */
.npayCard .nkitCard__right{
  grid-column: 3;
  justify-self: end;
  text-align: right;
  flex: none;
  white-space: nowrap; /* não quebra o preço */
}

/* texto do meio não “corre” pro preço */
.npayCard .nkitCard__name{
  font-weight: 800;
  line-height: 1.1;
}

.npayCard .npaySub{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.1;
  color: rgba(0,0,0,.65);
  max-width: 100%;
  white-space: nowrap;     /* tenta manter em 1 linha */
  overflow: hidden;        /* se não couber, corta */
  text-overflow: ellipsis; /* ... */
}

/* bolinha */
.npayCard .npayDot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  flex: none;
}

/* =========================
   NX MEDIA BLOCK (SEM CARDS)
========================= */
.nxMediaBlock{
  padding: 18px 16px;
  background: #fff;
}

.nxMediaBlock__head{
  margin-bottom: 12px;
}

.nxMediaBlock__title{
  font-size: 22px;
  line-height: 1.12;
  margin: 0 0 8px 0;
  font-weight: 900;
  color: #111;
}

.nxMediaBlock__title span{
  color: #E11D48; /* vermelho da sua paleta */
}

.nxMediaBlock__sub{
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.35;
}

/* =========================
   STACK DE MÍDIA (COLADO)
========================= */
.nxMediaStack{
  border-radius: 18px;   /* se quiser mais “flat”, diminui */
  overflow: hidden;      /* cola sem vazar */
  background: #fff;
}

/* Sem gap, sem borda, sem sombra */
.nxMediaStack__video,
.nxMediaStack__trip,
.nxMediaStack__big{
  margin: 0;
  padding: 0;
  border: 0;
}

/* vídeo 1:1 */
.nxMediaStack__video{
  aspect-ratio: 1 / 1;
  background: #000;
}

.nxMediaStack__videoEl{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3 fotos coladas */
.nxMediaStack__trip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.nxMediaStack__img{
  width: 100%;
  height: auto;
  display: block;
}

/* foto grande embaixo */
.nxMediaStack__big img{
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   COPY (CHECKS + NOTAS)
========================= */
.nxMediaBlock__copy{
  padding-top: 14px;
}

.nxMediaBlock__h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.nxMediaBlock__checks{
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: grid;
  gap: 8px;
}

.nxMediaBlock__checks li{
  position: relative;
  padding-left: 26px;
  color: #222;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.nxMediaBlock__checks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(225,29,72,.10);
  color: #E11D48;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.nxMediaBlock__note{
  margin: 0 0 10px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
}

/* Desktop leve */
@media (min-width: 920px){
  .nxMediaBlock{
    padding: 28px 22px;
    max-width: 980px;
    margin: 0 auto;
  }
  .nxMediaBlock__title{
    font-size: 30px;
  }
}
.nxMediaStack{ border-radius: 0; }
.nxMediaStack__video {
  overflow: hidden;
  border-radius: 14px; /* se tiver */
}

.nxMediaStack__videoEl {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15); /* 🔍 aumenta o zoom */
}
:root{
  --nx-red: #E11D48;
  --nx-ink: #111827;
  --nx-muted: rgba(17,24,39,.62);
  --nx-card: #ffffff;
  --nx-line: rgba(17,24,39,.10);
  --nx-shadow: 0 16px 40px rgba(17,24,39,.10);
}

.nxSat{
  width:100%;
  padding: 18px 16px 26px; /* + espaço embaixo pro badge “vazar” */
}

.nxSat__head{
  display:flex;
  justify-content:center;
  text-align:center;
  margin-bottom: 12px;
}

.nxSat__title{
  margin:0;
  font-size: 22px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: .6px;
  color: var(--nx-ink);
}

.nxSat__wrap{
  position:relative;
  background: var(--nx-card);
  border: 1px solid var(--nx-line);
  border-radius: 18px;
  box-shadow: var(--nx-shadow);
  padding: 10px;
  overflow: visible; /* importante pro badge “sair” pra fora */
}

/* viewport horizontal */
.nxSat__viewport{
  overflow: hidden;
  border-radius: 14px;
}

/* track horizontal */
.nxSat__track{
  display:flex;
  gap: 10px;
  will-change: transform;
}

/* items 1:1 */
.nxSat__item{
  flex: 0 0 auto;
  width: 108px;          /* controla o tamanho do “quadrado” */
  aspect-ratio: 1 / 1;   /* 1:1 */
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
}

.nxSat__item img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* badge descendo (ajuste aqui) */
.nxSat__badge{
  position:absolute;
  left: 50%;
  bottom: -22px;          /* ⬅️ desce mais (ex: -28px) */
  transform: translateX(-50%);
  z-index: 5;

  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 10px 24px rgba(17,24,39,.12);
  border-radius: 14px;

  padding: 10px 14px;
  min-width: 210px;
  text-align: center;
  pointer-events:none;
}

.nxSat__badgeTop{
  display:block;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .4px;
  color: var(--nx-red);
  margin-bottom: 2px;
}
.nxSat__badgeSub{
  display:block;
  font-size: 12px;
  line-height: 1.15;
  color: rgba(17,24,39,.65);
}

/* responsivo */
@media (min-width: 480px){
  .nxSat__item{ width: 124px; }
}
.nxSat{
  padding: 36px 16px 56px;
}
.nxSat__item{
  width: 148px;          /* 🔥 maior no mobile */
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}
/* =========================
   POPUP COD
========================= */
.codAlert{ position: fixed; inset: 0; display: none; z-index: 9999; }
.codAlert.is-open{ display:block; }

.codAlert__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
}

.codAlert__card{
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 16vh auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  padding: 16px 16px 14px;
}

.codAlert__x{
  position:absolute; top: 10px; right: 12px;
  width: 34px; height: 34px;
  border: 0; background: transparent;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  opacity: .65;
}
.codAlert__x:hover{ opacity: 1; }

.codAlert__head{
  display:flex; gap:12px; align-items:flex-start;
  padding-right: 36px;
}
.codAlert__icon{
  width: 36px; height: 36px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 10px;
  background: rgba(225,29,72,.10); /* vermelho suave */
  color: #E11D48;
  font-size: 18px;
}
.codAlert__title{
  font-weight: 800;
  font-size: 16px;
  color: #111;
  line-height: 1.15;
}
.codAlert__sub{
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

.codAlert__body{ margin-top: 12px; }
.codAlert__body p{
  margin: 0 0 10px;
  font-size: 13px;
  color: #111827;
  line-height: 1.35;
}

.codAlert__bullets{
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.codAlert__bullet{
  font-size: 12px;
  color: #374151;
}

.codAlert__ctaText{
  font-size: 12px;
  color: #111827;
  opacity: .92;
}

.codAlert__actions{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.codAlert__primary{
  border: 0;
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: #16a34a; /* verde */
}
.codAlert__primary:active{ transform: translateY(1px); }

.codAlert__ghost{
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 8px;
}

@media (max-width: 420px){
  .codAlert__card{ margin-top: 12vh; }
}
/* ===============================
   PAINEL PROGRESSIVO – SAFE MODE
   =============================== */

#vehiclePanel .form-group{
  display:none;
  animation:stepIn .18s ease-out;
}

#vehiclePanel .form-group.is-active{
  display:block;
}

@keyframes stepIn{
  from{ opacity:0; transform:translateY(4px); }
  to{ opacity:1; transform:translateY(0); }
}

/* resumo das escolhas */
.vehicle-summary{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 14px;
}

.vehicle-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
}

.vehicle-chip b{
  font-weight:600;
  color:#111;
}

.vehicle-chip button{
  border:0;
  background:none;
  color:#E11D48;
  font-weight:600;
  cursor:pointer;
}

/* deixa mais clean no mobile */
#vehiclePanel label{
  font-size:13px;
  margin-bottom:4px;
}
/* chips mais premium */
.vehicle-chip{
  gap:8px;
  padding:7px 10px;
  font-size:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
}

.vehicle-chip{
  cursor:pointer; /* chip clicável */
}

.vehicle-chip button{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(225,29,72,.18);
  background:rgba(225,29,72,.06);
  color:#E11D48;
  font-weight:700;
  line-height:1;
}

.vehicle-chip button:hover{
  background:rgba(225,29,72,.10);
}
/* progresso discreto */
.vprogress{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:8px 0 10px;
}

.vprogress__text{
  font-size:12px;
  color:rgba(0,0,0,.62);
}

.vdots{
  display:flex;
  gap:6px;
  align-items:center;
}

.vdot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:transparent;
}

.vdot.is-done{
  background:rgba(0,0,0,.18);
}

.vdot.is-active{
  border-color:rgba(225,29,72,.55);
  box-shadow:0 0 0 4px rgba(225,29,72,.10);
}
.vehicle-chip button{
  opacity:.45;
  border-color:rgba(0,0,0,.15);
  color:#555;
}

.vehicle-chip:hover button{
  opacity:1;
}
.change-vehicle{
  width:100%;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:700;
  color:#111;
  cursor:pointer;
  margin-top:10px;
}

.change-vehicle:hover{
  border-color:rgba(225,29,72,.35);
  box-shadow:0 0 0 4px rgba(225,29,72,.08);
}
/* ====== FIX COD: subtexto não cortar ====== */

/* garante comportamento igual ao outro botão */
.npayCard{
  text-align: left;
  width: 100%;
}

/* se o .nkitCard já é flex no seu projeto, ótimo.
   se não for, descomenta o display:flex abaixo */
/* .npayCard{ display:flex; align-items:center; gap:12px; } */

.npayCard .nkitCard__mid{
  flex: 1 1 auto;
  min-width: 0; /* ESSENCIAL: sem isso o texto “some” no mobile */
}

/* Mantém o título bonito */
.npayCard .nkitCard__name{
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sub padrão (desktop): 1 linha com ellipsis */
.npayCard .npaySub{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top: 4px;
  font-size: 12.5px;
  opacity: .78;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* No COD especificamente, permite 2 linhas no mobile */
@media (max-width: 420px){
  .npayCard[data-pay="cod"] .npaySub{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* até 2 linhas */
    overflow: hidden;

    white-space: normal;   /* quebra linha */
    line-height: 1.2;
  }
}
@media (max-width: 420px){
  .npayCard{
    padding: 16px 14px;
    min-height: 78px;
  }
}
/* =========================
   FIX FINAL – PAY CARDS (PIX + COD)
   1 linha SEM cortar título
   Cole no FINAL do CSS
========================= */

.npayCard{
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) max-content; /* mid pode encolher sem sumir */
  column-gap: 12px;
  align-items: center;
}

/* badge do pagamento é absoluto; garante que não "coma" o texto */
.npayCard .nkitCard__name{
  padding-top: 0 !important; /* anula aquele padding-top do nkitCard */
}

/* dá prioridade pro texto central */
.npayCard .nkitCard__mid{
  min-width: 0 !important;
}

/* TÍTULO: 1 linha, sem quebrar, sem cortar agressivo */
.npayCard .nkitCard__name{
  white-space: nowrap;
  overflow: visible;         /* <- deixa mostrar inteiro */
  text-overflow: clip;
  font-size: 14px;
}

/* SUB: 1 linha com ellipsis (se precisar) */
.npayCard .npaySub{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Preço: compacto pra não esmagar o meio */
.npayCard .nkitCard__right{
  justify-self: end;
  white-space: nowrap;
  min-width: 72px;           /* segura alinhamento */
}

/* MOBILE: libera ainda mais espaço pro título */
@media (max-width: 420px){
  .npayCard{
    padding: 16px 14px;
    min-height: 78px;
    grid-template-columns: 48px minmax(0,1fr) max-content; /* coluna left menor */
    column-gap: 10px;
  }

  /* badge menor no mobile */
  .npayCard .nkitCard__badge{
    font-size: 10px;
    padding: 5px 8px;
    top: 8px;
    right: 8px;
  }

  /* título um tiquinho menor só no mobile (pra caber inteiro) */
  .npayCard[data-pay="cod"] .nkitCard__name{
    font-size: 13.5px;
    letter-spacing: -0.1px;
  }

  /* preço um pouco menor no mobile */
  .npayCard[data-pay="cod"] .nkitCard__now{
    font-size: 13.5px;
  }
}
/* ===== Fix: texto não encostar no badge (só no COD) ===== */

/* garante que o badge fica no topo e o conteúdo desce */
.npayCard[data-pay="cod"]{
  padding-top: 34px;   /* ajusta aqui: 32~38 */
}

/* alternativa ainda mais precisa: só descer o miolo */
.npayCard[data-pay="cod"] .nkitCard__mid{
  padding-top: 6px;    /* ajusta aqui: 4~10 */
}

/* se o badge estiver MUITO baixo, sobe ele um pouco */
.npayCard[data-pay="cod"] .nkitCard__badge{
  top: 10px;           /* ajusta aqui: 8~12 */
  right: 10px;
}
.codLoading{
  display:grid;
  place-items:center;
  gap:10px;
  padding:22px 18px;
  text-align:center;
}

.codSpinner{
  width:28px;
  height:28px;
  border-radius:999px;
  border:3px solid rgba(15,23,42,.15);
  border-top-color: rgba(15,23,42,.85);
  animation: codSpin .85s linear infinite;
}

.codLoading__txt{
  font-size:13px;
  color: rgba(15,23,42,.65);
  font-weight:600;
}

@keyframes codSpin{ to{ transform: rotate(360deg); } }
/* ✅ garante que o hidden SEMPRE some (mesmo se tiver display no CSS) */
.codLoading[hidden],
[data-cod-content][hidden]{
  display: none !important;
}
