/* Widget de veículo, kits e bloco de compra. */

/* ================= 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: #6fa2ff;
        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: #68acff; /* 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;
}

.review__media{
  width: 100%;
  aspect-ratio: 3 / 4;     /* ajuste pra bater com seus vídeos */
  object-fit: cover;        /* mantém proporção sem “zoom estranho” */
  border-radius: 14px;
  display: block;
  background: #111;
}

.review__play{
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.review{ position: relative; }
.review.is-playing .review__play{ opacity: .25; }
.reviews__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.reviews__left{ min-width: 0; }
.reviews__title{
  font-size:18px;
  line-height:1.15;
  font-weight:900;
  margin:0;
  color:#0B0F14;
}
.reviews__sub{
  margin:6px 0 0;
  font-size:12px;
  color:rgba(11,15,20,.65);
}

.reviews__right{
  text-align:right;
  padding-left:10px;
  border-left:1px solid rgba(15,23,42,.10);
}

.rscore__top{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.rscore__num{
  font-size:22px;
  font-weight:950;
  line-height:1;
  letter-spacing:-0.02em;
}
.rscore__stars{
  font-size:12px;
  letter-spacing:1px;
  color:#E11D48;
  transform: translateY(1px);
}
.rscore__meta{
  margin-top:6px;
  font-size:12px;
  color:rgba(11,15,20,.60);
}

/* mobile bem pequeno: mantém premium sem quebrar */
@media (max-width:360px){
  .reviews__head{ align-items:flex-start; }
  .reviews__right{ border-left:0; padding-left:0; }
}
.reviews__head{
  text-align:left;
  margin-bottom:14px;
}

.reviews__title{
  font-size:18px;
  font-weight:900;
  line-height:1.15;
  margin:0;
}

.reviews__sub{
  margin-top:6px;
  font-size:13px;
  color:rgba(11,15,20,.6);
}

