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 ELETROCAR PARTS ================= */
.hero{
  background: #eef2f6;
  padding: 10px 0 0;
}

.hero__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0 0 0 0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.hero__title{
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero__media{
  position:relative;
  display:block;
  margin: 0 auto;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  border: 0;
  background: #f7f8fb;
  box-shadow: 0 18px 44px rgba(7,27,51,.12);
  max-width: 1180px;
  text-decoration:none;
  -webkit-tap-highlight-color: transparent;
}

.hero__mediaLink{
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero__mediaLink:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(7,27,51,.16);
}

.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;
}

.hero__microcopy{
  margin: -2px auto 10px;
  max-width: 340px;
  color: #475569;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.heroTrust{
  background: #fff;
  padding: 8px 16px 18px;
}

.heroTrust__wrap{
  max-width: 760px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(0,93,203,.14);
  border-radius: 14px;
  background: #f8fbff;
}

.heroTrust__text{
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

.heroTrust__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.heroTrust__grid span{
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 1px 0 rgba(15,23,42,.05);
}

.phase3{
  padding: 26px 16px;
  background:#fff;
}

.phase3:nth-of-type(even){
  background:#f8fafc;
}

.phase3__wrap{
  max-width: 860px;
  margin: 0 auto;
}

.phase3__head{
  text-align:center;
  margin: 0 auto 16px;
}

.phase3__title{
  margin:0 0 8px;
  color:#0f172a;
  font-size:22px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:0;
}

.phase3__text{
  margin:0 auto;
  max-width:700px;
  color:#475569;
  font-size:14px;
  line-height:1.55;
}

.phase3__micro{
  margin:14px auto 0;
  max-width:620px;
  color:#334155;
  font-size:13px;
  line-height:1.4;
  text-align:center;
  font-weight:800;
}

.phase3__link{
  width:min(100%, 320px);
  min-height:44px;
  margin:14px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,93,203,.22);
  border-radius:12px;
  background:#f3f8ff;
  color:#005dcb;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.phase3Steps,
.phase3Compare,
.phase3Grid{
  display:grid;
  gap:12px;
}

.phase3Steps{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phase3Step,
.phase3Card,
.phase3MiniCard{
  border:1px solid rgba(15,23,42,.1);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,23,42,.05);
}

.phase3Step{
  min-height:94px;
  padding:14px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
}

.phase3Step__num{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#005dcb;
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.phase3Step strong{
  color:#0f172a;
  font-size:13px;
  line-height:1.25;
}

.phase3Compare{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phase3Card{
  padding:16px;
}

.phase3Card--brand{
  border-color:rgba(0,93,203,.22);
  background:#f8fbff;
}

.phase3Card h3{
  margin:0 0 10px;
  color:#0f172a;
  font-size:16px;
  font-weight:900;
}

.phase3Card ul,
.phase3Checklist{
  margin:0;
  padding:0;
  list-style:none;
}

.phase3Card li,
.phase3Checklist li{
  position:relative;
  padding:8px 0 8px 24px;
  color:#334155;
  font-size:14px;
  line-height:1.35;
  border-top:1px solid rgba(15,23,42,.07);
}

.phase3Card li:first-child{
  border-top:0;
}

.phase3Card li::before,
.phase3Checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:15px;
  height:15px;
  border-radius:50%;
  background:url("../images/eletrocar/icons/icon-shield-check.svg") center/15px 15px no-repeat;
}

.phase3Card--muted li::before{
  background-image:url("../images/eletrocar/icons/icon-no-extra-mat.svg");
}

.phase3Grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phase3Grid--support{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phase3MiniCard{
  padding:14px;
  min-height:132px;
}

.phase3Grid--compact .phase3MiniCard{
  min-height:84px;
}

.phase3MiniCard span{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:8px;
  border-radius:9px;
  background:#eaf3ff;
  color:#005dcb;
  font-size:13px;
  font-weight:900;
}

.phase3MiniCard strong{
  display:block;
  color:#0f172a;
  font-size:14px;
  line-height:1.25;
  font-weight:900;
}

.phase3MiniCard p{
  margin:7px 0 0;
  color:#475569;
  font-size:13px;
  line-height:1.35;
}

.phase3Checklist{
  max-width:680px;
  margin:0 auto;
  border:1px solid rgba(0,93,203,.16);
  border-radius:14px;
  background:#f8fbff;
  padding:8px 14px;
}

.phase3Timeline{
  max-width:680px;
  margin:0 auto;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.phase3Timeline li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border:1px solid rgba(15,23,42,.1);
  border-radius:14px;
  background:#fff;
}

.phase3Timeline span{
  width:30px;
  height:30px;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#005dcb;
  color:#fff;
  font-weight:900;
}

.phase3Timeline strong{
  color:#0f172a;
  font-size:14px;
  line-height:1.3;
}

@media (max-width: 760px){
  .phase3{
    padding:24px 14px;
  }

  .phase3__title{
    font-size:20px;
  }

  .phase3Steps,
  .phase3Compare,
  .phase3Grid,
  .phase3Grid--support{
    grid-template-columns:1fr;
  }

  .phase3Step{
    min-height:72px;
    flex-direction:row;
    justify-content:flex-start;
    text-align:left;
    padding:14px;
  }

  .phase3MiniCard{
    min-height:auto;
  }
}

/* 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{
    padding-top: 0;
  }
  .hero__media{
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 520px){
  .hero__title{ font-size: 30px; }
  .btn{ width: 100%; }
  .hero__media{
    border-radius: 0 0 14px 14px;
  }
}
.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,
.benefitCard__media video{
  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:360px;
  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:#005DCB;     
}

.footer__bottom{
  margin-top:16px;
  font-size:12px;
  color:#777;
}
.hdr__logo{
  display: block;
  height: 15px;        /* 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__media{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.material__media video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* 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: .7;
  pointer-events: auto;
}

#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);
}

/* Footer score */
.reviews__footerScore{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.reviews__stars{
  color:#E11D48;
  font-size:14px;
  letter-spacing:2px;
}

.reviews__scoreText{
  font-size:13px;
  color:rgba(11,15,20,.7);
}

.reviews__scoreText strong{
  font-weight:900;
  color:#0B0F14;
}
.reviews__confidence{
  font-size:12px;
  color:rgba(11,15,20,.55);
  margin-top:4px;
}
.reviewVideo{
  position:relative;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  background:#000;
}

.reviewVideo__el{
  width:100%;
  height:auto;
  display:block;
}

/* botão play CENTRAL */
.reviewVideo__play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  cursor:pointer;
  backdrop-filter: blur(6px);
}

/* botão de som (canto) */
.reviewVideo__sound{
  position:absolute;
  right:10px;
  bottom:10px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter: blur(6px);
}

.reviewVideo.is-playing .reviewVideo__play{
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
}
.reviewVideo{
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;   /* força 3:4 */
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.reviewVideo video{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* corta sem deformar */
  display: block;
}
/* container do preço */
.cta__price{
  background:#ededed;
  border-radius:18px;
  padding:18px 16px;
  box-shadow:0 10px 26px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.08);
  text-align:center;
  margin-top:16px;
}

/* preço antigo */
.cta__priceCompare{
  font-size:13px;
  color:#8b95a5;
  margin-bottom:8px;
}
.cta__priceCompare span{
  text-decoration:line-through;
  text-decoration-thickness:2px;
  text-decoration-color: rgba(225,29,72,.65);
}

/* preço principal */
.cta__priceMain{
  font-size:42px;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1;
  color:#16a34a;
  margin:6px 0 8px;
}

/* parcelamento */
.cta__priceSub{
  font-size:14px;
  color:#334155;
  opacity:.92;
}

/* micro destaque premium (sem HTML extra) */

.cta__priceDaily{
  display:inline-block;
  margin-top:10px;
  padding:7px 12px;
  border-radius:999px;
  background:#ecfdf3;
  color:#15803d;
  font-weight:800;
  font-size:13px;
}

.cta__priceNote{
  margin-top:8px;
  font-size:13px;
  color:#64748b;
}
.cta__priceMain{
  text-shadow:0 1px 0 rgba(255,255,255,.6);
  animation:popPrice .55s ease;
}
@keyframes popPrice{
  from{transform:scale(.96); opacity:0;}
  to{transform:scale(1); opacity:1;}
}

: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;
}
.cta__priceMain{
  animation: pricePulse 2.5s ease-in-out infinite;
}

@keyframes pricePulse{
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.02);}
}
.cta__priceDaily{
  transition:.3s;
}
.cta__price{
  position:relative;
  overflow:hidden;
}

.cta__price::after{
  content:"";
  position:absolute;
  top:-50%;
  left:-150%;
  width:200%;
  height:200%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shine 6s infinite;
}

@keyframes shine{
  0%{left:-150%;}
  100%{left:150%;}
}
/* ===== Textura mini (3 opções simples) ===== */
.txMini{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #F6F7F9;
  border: 1px solid rgba(15,23,42,.08);
}

.txMini__title{
  font-size: 14px;
  font-weight: 900;
  color: #0B0F14;
  margin-bottom: 4px;
}

.txMini__sub{
  font-size: 12px;
  color: #5B6472;
  line-height: 1.35;
  margin-bottom: 10px;
}

.txMini__row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.txMini__opt{
  position: relative;
  width: 100%;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  text-align: center;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.txMini__opt:hover{
  border-color: rgba(225,29,72,.25);
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.txMini__opt:active{ transform: scale(.99); }

.txMini__opt img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.08);
  display: block;
}

.txMini__opt span{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #0B0F14;
}

.txMini__check{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #E11D48;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  opacity: 0;
  transform: scale(.85);
  transition: .12s ease;
}

/* selecionado */
.txMini__opt.is-active{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 14px 28px rgba(225,29,72,.12);
}

.txMini__opt.is-active .txMini__check{
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 420px){
  .txMini__row{ gap: 8px; }
}
/* =========================
   MODAL (popup, não full)
   ========================= */

.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;              /* respiro nas bordas */
}

.modal[aria-hidden="true"]{
  display: none;
}

.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

/* A CAIXA (popup) */
.modal__box{
  position: relative;
  width: min(420px, 92vw);    /* tamanho de popup */
  max-height: 82vh;           /* não ocupa a tela inteira */
  overflow: auto;             /* scroll interno se precisar */
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  padding: 16px 16px 18px;
  animation: confirmPop .22s ease;
}

/* animação leve premium */
@keyframes confirmPop{
  from{ opacity: 0; transform: translateY(18px) scale(.97); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

/* botão X */
.modal__close{
  position: sticky;           /* fica acessível ao rolar */
  top: 6px;
  float: right;
  margin-left: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 0;
  background: rgba(0,0,0,.06);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal__title{
  margin: 4px 0 6px;
  font-size: 20px;
}

.modal__subtitle{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
  color: #5b6472;
}

/* resumo mais compacto */
.modal__row{
  padding: 10px 0;
}

.modal__summary{
  border-radius: 16px;
}

/* ações sempre visíveis (fica “barra” no fim do popup) */
.modal__actions{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 12px;
  margin-top: 12px;
}

/* pequeno ajuste para telas baixas */
@media (max-height: 720px){
  .modal__box{ max-height: 78vh; }
}
/* dica visual de que tem mais conteúdo */
.modal__box{
  /* já deve existir — mantendo */
  position: relative;
}



/* setinha/legenda */
.modal__scrollHint{
  position: sticky;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
  margin-top: -17px;          /* fica por cima */
  padding-bottom: 6px;
  opacity: 1;
  transition: opacity .2s ease, transform .2s ease;
}

.modal__scrollHint i{
  font-style: normal;
  display: inline-block;
  transform: translateY(0);
  animation: hintBounce 1.2s infinite ease-in-out;
}

@keyframes hintBounce{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===== layout 3 em 1 linha (robusto) ===== */
.txMini__row{
  display: flex;
  gap: 10px;
}

.txMini__opt{
  flex: 1 1 calc((100% - 20px) / 3); /* 3 itens, 2 gaps */
  min-width: 0;                      /* evita quebrar no Android */
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.txMini__opt[aria-pressed="true"]{
  border-color: rgba(225,29,72,.45);
  box-shadow: 0 0 0 3px rgba(225,29,72,.12);
}

.txMini__media{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f7f9;
  aspect-ratio: 1 / 1;
}

.txMini__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* check no canto */
.txMini__check{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #E11D48;
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.92);
  transition: .15s ease;
}

.txMini__opt[aria-pressed="true"] .txMini__check{
  opacity: 1;
  transform: scale(1);
}

/* ===== botão VER abaixo da foto ===== */
.txMini__zoom{
  margin-top: 8px;
  width: 100%;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(225,29,72,.28);
  background: rgba(225,29,72,.08);
  color: #E11D48;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.txMini__name{
  display: block;
  margin-top: 8px;
  font-weight: 800;
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* se a tela for MUITO estreita, aí sim vira 2 colunas */
@media (max-width: 340px){
  .txMini__row{ flex-wrap: wrap; }
  .txMini__opt{ flex: 1 1 calc((100% - 10px) / 2); }
}
.txMini__check{ opacity:0; transform:scale(.92); transition:.15s ease; }
.txMini__opt[aria-pressed="true"] .txMini__check{ opacity:1; transform:scale(1); }
/* ===== LIGHTBOX TEXTURA (premium) ===== */
.txZoom{
  position: fixed; inset: 0;
  z-index: 9999;
  display:flex; align-items:center; justify-content:center;
  padding: 18px; /* não deixa colar nas bordas do celular */
}

.txZoom[aria-hidden="true"]{ display:none; }

.txZoom__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}

/* card menor + borda */
.txZoom__card{
  position: relative;
  z-index: 1;

  width: min(92vw, 420px);
  max-height: 82vh;

  background: #fff;
  border-radius: 18px;
  padding: 12px;

  /* “moldura” branca + filete vermelho Nexus */
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);

  overflow: hidden; /* garante que nada vaze */
}

/* filete vermelho no topo (detalhe premium) */
.txZoom__card::before{
  content:"";
  position:absolute; left:0; top:0; right:0;
  height: 4px;
  background: rgba(0,93,203,.55);
}

/* botão fechar */
.txZoom__x{
  position:absolute; top:10px; right:10px;
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  font-size: 22px;
  line-height: 1;
  display:flex; align-items:center; justify-content:center;
  cursor: pointer;
}

/* imagem com “tamanho controlado” (não ocupa 100% da tela) */
.txZoom__img{
  width: 100%;
  height: auto;
  max-height: 62vh;       /* limita altura */
  object-fit: contain;    /* não corta a textura */
  display:block;
  border-radius: 14px;
  background: #fff;
}

/* legenda */
.txZoom__cap{
  padding: 10px 4px 2px;
  font-weight: 800;
  color: #0B0F14;
  text-align: center;
}
/* garante que overlay fica atrás e não "embaça" o card */
.txZoom{ position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; padding:18px; }
.txZoom[aria-hidden="true"]{ display:none; }

.txZoom__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  /* se estiver embaçando, é porque o overlay está na frente.
     então garante z-index baixo: */
  z-index: 0;
  backdrop-filter: none !important; /* <<< remove blur (principal) */
}

.txZoom__card{
  position:relative;
  z-index: 2;                 /* <<< card sempre acima */
  width: min(92vw, 420px);
  max-height: 82vh;
  background:#fff;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  overflow:hidden;
}

.txZoom__card::before{
  content:"";
  position:absolute; left:0; top:0; right:0;
  height:4px;
  background:none
}

.txZoom__x{
  position:absolute; top:10px; right:10px;
  width:38px; height:38px;
  border-radius:12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.95);
  font-size:22px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 3;
}

.txZoom__img{
  width:100%;
  max-height: 62vh;
  object-fit: contain;
  display:block;
  border-radius: 14px;
  background:#fff;
  filter: none !important;     /* <<< se algum blur estiver pegando na img */
}

.txZoom__cap{
  padding: 10px 4px 2px;
  font-weight: 800;
  text-align:center;
  color:#0B0F14;
}
/* ===== Modal: só o miolo rola, rodapé fica fixo ===== */
.modal__box{
  max-height: 86vh;            /* sensação de popup (não tela cheia) */
  overflow: hidden;            /* impede qualquer vazamento */
  display: flex;
  flex-direction: column;
}

/* cria área rolável real */
.modal__content{
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;        /* respiro antes do rodapé */
}

/* rodapé fixo dentro do modal */
.modal__actions{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 10px;
  padding-bottom: 12px;

  /* “sombra”/degradê pra mostrar que tem mais conteúdo acima */
  box-shadow: 0 -10px 20px rgba(0,0,0,.06);
}

/* opcional: hint só aparece quando tem scroll */
.modal__scrollHint{
  display: none;               /* o JS vai ligar quando precisar */
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  padding-bottom: 8px;
}
/* ===== X no canto certo ===== */
.modal__box{ position: relative; }

.modal__close{
  position: absolute;
  top: 10px;
  right: 10px;          /* <- canto direito */
  left: auto !important;
  z-index: 5;
}

/* dá espaço no topo pro X não “encostar” no título */
.modal__content{
  padding-top: 42px;    /* ajusta se quiser mais/menos */
}

/* ===== Hint mais embaixo / mais “premium” ===== */
.modal__actions{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 16px;     /* mais espaço */
  padding-bottom: 12px;
  box-shadow: 0 -10px 20px rgba(0,0,0,.06);
}

.modal__scrollHint{
  margin-top: 6px;       /* desce um pouco */
  margin-bottom: 12px;   /* separa dos botões */
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}
/* Paleta atualizada: todos vermelhos/navy trocados por #005DCB (azul médio-vivo) */
/* Principal: #005DCB */
/* Hover/forte: #0047A8 (um tom mais escuro derivado) */
/* Suave/fundos: rgba(0,93,203,...) */

:root {
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);
  --accent: #005DCB;          /* cor principal nova - substitui todo vermelho */
  --accent-dark: #0047A8;     /* hover / mais forte */
  --nx-red: #005DCB;          /* compatibilidade com classes antigas */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

* { 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 */
.hdr__menuBtn:hover {
  border-color: rgba(0,93,203,.40);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transform: translateY(-1px);
}

.hdr__menuBtn span {
  background: var(--accent);  /* #005DCB */
}

/* DRAWER */
.drawer__link:hover {
  border-color: rgba(0,93,203,.35);
}

.drawer__cta {
  background: var(--accent);
  color: #fff;
}

/* BOTÕES PRIMÁRIOS */
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,93,203,.18);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,93,203,.24);
}

.btn--ghost:hover {
  border-color: rgba(0,93,203,.35);
  transform: translateY(-1px);
}

/* DOTS / CARROSSEL */
.dot.is-active,
.trustbar .dot.is-active {
  background: var(--accent);
  border-color: rgba(0,93,203,.35);
  transform: scale(1.15);
}

/* CHECKLIST / ÍCONES */
.checkIcon {
  background: rgba(0,93,203,.12);
  border: 1px solid rgba(0,93,203,.25);
  color: var(--accent);
}

/* NOTAS / AVISOS */
.specs__note {
  border: 1px solid rgba(0,93,203,.22);
  background: rgba(0,93,203,.06);
}

.specs__noteIcon {
  background: rgba(0,93,203,.12);
  border: 1px solid rgba(0,93,203,.25);
  color: var(--accent);
}

.specs__accent {
  color: var(--accent);
  font-weight: 800;
}

/* CTA COMPRA (verde mantido) */
.cta__buy {
  background: #16A34A;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(22,163,74,.35);
  animation: pulseCTA 2.2s infinite;
}

.cta__buy:hover {
  background: #15803D;
  box-shadow: 0 10px 26px rgba(22,163,74,.45);
}

.btnPrimary,
#goToPayment {
  background: #16A34A;
  box-shadow: 0 6px 16px rgba(22,163,74,.35);
}

.btnPrimary:hover,
#goToPayment:hover {
  background: #15803D;
}

/* PREÇO PRINCIPAL (verde mantido) */
.cta__priceMain {
  color: #16A34A;
  font-weight: 800;
}

/* KIT SELECIONADO / BADGES */
.nkitCard.is-selected {
  border: 2px solid var(--accent);
  background: rgba(0,93,203,.06);
  box-shadow: 0 12px 30px rgba(0,93,203,.10);
}

.kit-badge {
  background: var(--accent);
  color: #fff;
}

.nkitCard__badge {
  background: var(--accent);
  color: #fff;
}

.nkitCard__badge--soft {
  background: rgba(0,93,203,.12);
  color: var(--accent);
}

/* Textura / txMini */
.txMini__opt:hover {
  border-color: rgba(0,93,203,.25);
}

.txMini__opt.is-active {
  border-color: rgba(0,93,203,.55);
  box-shadow: 0 14px 28px rgba(0,93,203,.12);
}

.txMini__check {
  background: var(--accent);
  color: #fff;
}

.txMini__zoom {
  border: 1px solid rgba(0,93,203,.28);
  background: rgba(0,93,203,.08);
  color: var(--accent);
}

/* nxSat / Badge */
.nxSat__badgeTop {
  color: var(--accent);
}

/* Outros destaques */
.panelTitle span {
  color: var(--accent);
}

/* Hovers mais fortes (opcional, mas deixa mais vivo) */
.hdr__menuBtn:hover,
.btn--ghost:hover,
.txMini__opt:hover {
  border-color: var(--accent-dark);  /* #0047A8 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

:root {
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);
  --accent: #005DCB;          /* cor principal azul */
  --accent-dark: #0047A8;     /* hover / mais escuro */
  --accent-soft: rgba(0,93,203,.12);
  --accent-border: rgba(0,93,203,.25);
  --accent-light: rgba(0,93,203,.06);
  --accent-medium: rgba(0,93,203,.35);
  --accent-strong: rgba(0,93,203,.55);
}

* { 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 */
.hdr {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hdr__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.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;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.hdr__menuBtn:hover {
  border-color: var(--accent-medium);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transform: translateY(-1px);
}

.hdr__menuBtn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  margin: 0;
}

.hdr__logo {
  height: 26px;
  width: auto;
  display: block;
  transform: translateY(4px);
}

.hdr__secure {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.hdr__divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,93,203,.10), transparent);
}

/* 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;
  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__link:hover {
  border-color: var(--accent-medium);
}

.drawer__cta {
  background: var(--accent);
  color: #fff;
}

/* HERO */
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,93,203,.18);
}

.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(0,93,203,.24);
}

.btn--ghost:hover {
  border-color: var(--accent-medium);
}

/* BENEFÍCIOS */
.dot.is-active {
  background: var(--accent);
  border-color: var(--accent-medium);
}

/* CHECKLIST */
.checkIcon {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

/* ESPECIFICAÇÕES / NOTA */
.specs__note {
  border: 1px solid var(--accent-medium);
  background: var(--accent-light);
}

.specs__noteIcon {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

.specs__accent {
  color: var(--accent);
}

/* CTA PRODUTO */
.cta__buy {
  background: #16A34A;
  color: #fff;
  box-shadow: 0 14px 30px rgba(22,163,74,.25);
}

.color.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

/* MODAL */
.btnPrimary {
  background: #16A34A;
  color: #fff;
}

/* COUNTER */
.counter__plus {
  color: var(--accent);
}

/* REVIEWS */
.verified {
  color: var(--accent);
}

.rscore__stars {
  color: var(--accent);
}

.reviews__stars {
  color: var(--accent);
}

/* FOOTER */
.footer__line {
  background: var(--accent);
}

.footer__info a:hover {
  color: var(--accent);
}

/* PG THUMBS */
.pg__thumb.is-active {
  border-color: var(--accent);
}

/* STOCK */
.stock__text strong {
  color: var(--accent);
}

.stock__fill {
  background: var(--accent);
}

/* WIDGET MACENA */
#widget-macena select:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(0,93,203,.15);
}

#widget-macena .color-btn.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(0,93,203,.18);
}

#widget-macena .success-box {
  background: var(--accent-light);
  border: 1px solid var(--accent-medium);
}

/* NKIT / KIT */
.nkitCard.is-selected {
  border: 2px solid var(--accent);
  background: var(--accent-light);
  box-shadow: 0 12px 30px rgba(0,93,203,.10);
}

.kit-badge {
  background: var(--accent);
  color: #fff;
}

.nkitCard__badge {
  background: var(--accent);
  color: #fff;
}

.nkitCard__badge--soft {
  background: var(--accent-soft);
  color: var(--accent);
}

/* TXMINI / TEXTURA */
.txMini__opt:hover {
  border-color: var(--accent-medium);
}

.txMini__opt.is-active {
  border-color: var(--accent-strong);
  box-shadow: 0 14px 28px rgba(0,93,203,.12);
}

.txMini__check {
  background: var(--accent);
  color: #fff;
}

.txMini__zoom {
  border: 1px solid var(--accent-medium);
  background: var(--accent-light);
  color: var(--accent);
}

/* NX SAT */
.nxSat__badgeTop {
  color: var(--accent);
}

/* OUTROS DETALHES */
.panelTitle span {
  color: var(--accent);
}

/* Hovers gerais mais fortes */
.hdr__menuBtn:hover,
.btn--ghost:hover,
.txMini__opt:hover,
.color:hover {
  border-color: var(--accent-dark);
}

/* Mantém o verde de compra intacto em todos os lugares */
.cta__buy,
.nkit__cta,
.btnPrimary,
#goToPayment,
.cta__priceMain,
.stock__text strong,
.kit-price,
.nkitCard__now,
.nx-ship__free,
.sp-icon {
  /* verde preservado */
}

/* Fim das substituições - todo vermelho foi trocado por #005DCB e derivados */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

:root {
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);
  --accent: #005DCB;          /* azul principal */
  --accent-dark: #0047A8;     /* hover / forte */
  --accent-soft: rgba(0,93,203,.12);
  --accent-border: rgba(0,93,203,.25);
  --accent-light: rgba(0,93,203,.06);
  --accent-medium: rgba(0,93,203,.35);
  --accent-strong: rgba(0,93,203,.55);
}

* { 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 */
.hdr {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hdr__menuBtn:hover {
  border-color: var(--accent-medium);
}

.hdr__menuBtn span {
  background: var(--accent);
}

/* DRAWER */
.drawer__link:hover {
  border-color: var(--accent-medium);
}

.drawer__cta {
  background: var(--accent);
  color: #fff;
}

/* BOTÕES */
.btn--primary {
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(0,93,203,.18);
}

.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(0,93,203,.24);
}

.btn--ghost:hover {
  border-color: var(--accent-medium);
}

/* DOTS */
.dot.is-active,
.trustbar .dot.is-active {
  background: var(--accent);
  border-color: var(--accent-medium);
}

/* CHECK ICON */
.checkIcon {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

/* SPECS NOTE */
.specs__note {
  border: 1px solid var(--accent-medium);
  background: var(--accent-light);
}

.specs__noteIcon {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

.specs__accent {
  color: var(--accent);
}

/* CTA BUY (verde preservado) */
.cta__buy,
.nkit__cta,
.btnPrimary,
#goToPayment {
  background: #16A34A;
  color: #fff;
}

.cta__buy:hover,
.btnPrimary:hover,
#goToPayment:hover {
  background: #15803D;
}

/* COLOR SELECTOR */
.color.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

/* COUNTER */
.counter__plus {
  color: var(--accent);
}

/* REVIEWS */
.verified,
.review__stars,
.reviews__stars,
.rscore__stars {
  color: var(--accent);
}

/* FAQ - AQUI ESTAVA O VERMELHO RESTANTE */
.faq__question::after {
  color: var(--accent);  /* + agora azul */
}

.faq__item.is-open .faq__question::after {
  color: var(--accent);  /* – agora azul */
}

/* FOOTER */
.footer__line {
  background: var(--accent);
}

.footer__info a:hover {
  color: var(--accent);
}

/* PG THUMB */
.pg__thumb.is-active {
  border-color: var(--accent);
}



/* MACENA WIDGET */
#widget-macena select:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(0,93,203,.15);
}

#widget-macena .color-btn.selected {
  border-color: var(--accent);
}

#widget-macena .success-box {
  background: var(--accent-light);
  border: 1px solid var(--accent-medium);
}

/* NKIT / KIT */
.nkitCard.is-selected,
.kit-card.selected {
  border: 2px solid var(--accent);
  background: var(--accent-light);
}

.kit-badge,
.nkitCard__badge {
  background: var(--accent);
  color: #fff;
}

.nkitCard__badge--soft {
  background: var(--accent-soft);
  color: var(--accent);
}

/* TXMINI */
.txMini__opt:hover {
  border-color: var(--accent-medium);
}

.txMini__opt.is-active {
  border-color: var(--accent-strong);
}

.txMini__check,
.txMini__zoom {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-medium);
}

/* NX SAT */
.nxSat__badgeTop {
  color: var(--accent);
}

/* LIGHTBOX / TXZOOM */
.txZoom__card::before {
  background: var(--accent);  /* filete azul no topo */
}

/* HOVERS GERAIS */
.hdr__menuBtn:hover,
.color:hover,
.txMini__opt:hover {
  border-color: var(--accent-dark);
}

/* PRESERVA VERDE DE CHECKOUT/CTA EM TODOS OS LUGARES */
.cta__priceMain,
.nkitCard__now,
.kit-price,
.nx-ship__free,
.sp-icon,
.stock__text strong {
  color: #005dcb !important;  /* força verde onde é intencional */
}
/* Corrige a barra de confiança inteira */
.trustbar,
.trustbar * {
  /* força reset de qualquer cor vermelha residual */
}

.trustPill {
  background: var(--accent);               /* #005DCB ou sua cor azul principal */
  color: #ffffff;                          /* texto branco para contraste */
  border: 1px solid rgba(255,255,255,.25); /* borda branca suave */
  box-shadow: 0 14px 30px rgba(0, 93, 203, 0.20);  /* sombra azul suave */
  transition: all 0.25s ease;
}

.trustPill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 93, 203, 0.30);  /* hover mais forte */
}

/* Garante que ícones fiquem brancos (já que filtro invert(1) pode não bastar) */
.trustPill__icon {
  filter: brightness(0) invert(1);         /* mantém branco se ícone for escuro */
}

/* Se quiser um tom mais claro no fundo (opcional) */
.trustPill {
  /* alternativa mais suave, se #005DCB ficar forte demais */
  /* background: linear-gradient(135deg, #005DCB, #0066E0); */
}
.cta__priceMain {
  color: #16A34A !important;     /* verde forte de venda */
  font-weight: 900;
  font-size: 42px;               /* ou o tamanho que você está usando */
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6); /* opcional: dá um ar premium */
}
.nkitCard__now {
  color: #16A34A !important;     /* verde de venda */

}

/* ===== FIX VÍDEOS DO CARROSSEL (mostrar tudo, sem cortar) ===== */
.benefitCard__media{
  position: relative;
  background: #000;
}

.benefitCard__media video{
  object-fit: contain !important;
  object-position: center;
}
/* WhatsApp Button */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: all .3s ease; text-decoration: none; } .whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5); background-color: #20ba5a; } .whatsapp-float svg { width: 32px; height: 32px; fill: white; } @media (max-width: 768px) { .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; } .whatsapp-float svg { width: 26px; height: 26px; } }

/* ===== Fase 1: validacao e revisao segura ===== */
.requiredMark{
  color:#dc2626;
  font-weight:800;
}

.configValidation{
  margin:12px 0 10px;
  padding:12px 14px;
  border:1px solid rgba(220,38,38,.24);
  border-radius:12px;
  background:#fff5f5;
  color:#991b1b;
  font-size:13px;
  line-height:1.35;
}

.ctaValidation{
  margin:10px 0 0;
  padding:12px 14px;
  border:1px solid rgba(220,38,38,.24);
  border-radius:12px;
  background:#fff5f5;
  color:#991b1b;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
  text-align:center;
}

.configHelpLink,
.modal__helpLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:40px;
  margin-top:10px;
  border:1px solid rgba(0,93,203,.22);
  border-radius:12px;
  background:#f3f8ff;
  color:#005dcb;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

.configMicrocopy,
.configHelpText{
  margin: 8px 0 10px;
  color:#475569;
  font-size:13px;
  line-height:1.35;
  font-weight:700;
}

.configHelpText{
  margin-top:12px;
  text-align:center;
}

.has-error{
  border-radius:14px;
  outline:2px solid rgba(220,38,38,.2);
  outline-offset:4px;
}

.has-error select,
.has-error .color-selector-container,
.has-error .txMini__row,
.has-error.nkit__grid{
  border-color:#dc2626 !important;
  box-shadow:0 0 0 3px rgba(220,38,38,.1);
}

.fieldError{
  margin-top:8px;
  color:#b91c1c;
  font-size:12px;
  font-weight:700;
  line-height:1.3;
}

.cta__buySub{
  max-width:280px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.25;
}

.modal__section{
  padding:12px 0;
  border-bottom:1px solid rgba(15,23,42,.1);
}

.modal__section:first-child{
  padding-top:0;
}

.modal__section:last-child{
  border-bottom:0;
}

.modal__sectionTitle{
  margin:0 0 8px;
  color:#0f172a;
  font-size:13px;
  font-weight:900;
  letter-spacing:0;
}

.modal__row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:8px 0;
}

.modal__label{
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.modal__value{
  color:#0f172a;
  font-size:13px;
  font-weight:900;
  text-align:right;
}

.modal__section--safe{
  padding:12px;
  border:1px solid rgba(0,93,203,.16);
  border-radius:14px;
  background:#f8fbff;
}

.modal__safeText{
  margin:6px 0;
  color:#334155;
  font-size:13px;
  line-height:1.35;
}

/* ===== Fase 4: resumo, preview e compra guiada ===== */
.kitPreview,
.liveSummary,
.modelAssistant{
  margin:14px 0;
  border:1px solid rgba(15,23,42,.1);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
}

.kitPreview{
  padding:14px;
  background:linear-gradient(180deg,#fff,#f8fbff);
}

.kitPreview__head{
  display:flex;
  flex-direction:column;
  gap:3px;
  margin-bottom:10px;
}

.kitPreview__eyebrow{
  color:#005dcb;
  font-size:11px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.kitPreview__head strong{
  color:#0f172a;
  font-size:15px;
  line-height:1.2;
}

.kitPreview__items{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}

.kitPreview__items span{
  min-height:34px;
  display:flex;
  align-items:center;
  padding:8px 10px;
  border:1px solid rgba(0,93,203,.12);
  border-radius:12px;
  background:#f3f8ff;
  color:#1e3a5f;
  font-size:12px;
  font-weight:800;
  line-height:1.2;
}

.kitPreview p,
.liveSummary__micro{
  margin:10px 0 0;
  color:#64748b;
  font-size:12px;
  font-weight:700;
  line-height:1.35;
}

.liveSummary{
  padding:14px;
  background:#f8fafc;
}

.liveSummary__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.liveSummary__top strong{
  color:#0f172a;
  font-size:15px;
  line-height:1.2;
}

.liveSummary__top span{
  flex:0 0 auto;
  max-width:46%;
  padding:5px 8px;
  border-radius:999px;
  background:#fff7ed;
  color:#9a3412;
  font-size:10px;
  font-weight:900;
  line-height:1.15;
  text-align:center;
}

.liveSummary.is-complete .liveSummary__top span{
  background:#ecfdf5;
  color:#047857;
}

.liveSummary__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin:12px 0 0;
}

.liveSummary__grid div{
  min-width:0;
  padding:9px 10px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  background:#fff;
}

.liveSummary__grid dt{
  margin:0 0 3px;
  color:#64748b;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.liveSummary__grid dd{
  margin:0;
  color:#0f172a;
  font-size:12px;
  font-weight:900;
  line-height:1.2;
  word-break:break-word;
}

.modelAssistant{
  overflow:hidden;
  background:#f8fbff;
}

.modelAssistant summary{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  color:#0f172a;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
  list-style:none;
}

.modelAssistant summary::-webkit-details-marker{
  display:none;
}

.modelAssistant summary::after{
  content:"+";
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#005dcb;
  color:#fff;
  font-weight:900;
}

.modelAssistant[open] summary::after{
  content:"-";
}

.modelAssistant__body{
  padding:0 14px 14px;
  color:#475569;
  font-size:13px;
  line-height:1.4;
}

.modelAssistant__body p{
  margin:0 0 10px;
}

.modelAssistant__body ul{
  margin:0;
  padding-left:18px;
}

.modelAssistant__body li{
  margin:6px 0;
}

.modelAssistant__cta,
.phase3__supportLink{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-top:12px;
  padding:10px 14px;
  border-radius:12px;
  background:#128c4a;
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-align:center;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(18,140,74,.18);
}

.nkitCard,
#widget-macena .color-btn,
.txMini__opt,
.faq__answer{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.nkitCard:active,
#widget-macena .color-btn:active,
.txMini__opt:active,
.modelAssistant__cta:active,
.phase3__supportLink:active{
  transform:scale(.99);
}

.nkitCard.is-selected{
  box-shadow:0 14px 30px rgba(22,163,74,.18), 0 0 0 2px rgba(22,163,74,.18);
}

.stickyCta{
  display:none;
}

@media (max-width:760px){
  .stickyCta{
    position:fixed;
    left:12px;
    right:12px;
    bottom:10px;
    z-index:9998;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:10px 10px 10px 12px;
    border:1px solid rgba(15,23,42,.12);
    border-radius:16px;
    background:rgba(255,255,255,.97);
    box-shadow:0 16px 40px rgba(15,23,42,.18);
    opacity:0;
    pointer-events:none;
    transform:translateY(130%);
    transition:opacity .22s ease, transform .22s ease;
  }

  .stickyCta.is-visible{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .stickyCta__text{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:2px;
  }

  .stickyCta__text strong{
    color:#0f172a;
    font-size:12px;
    line-height:1.15;
  }

  .stickyCta__text span{
    color:#64748b;
    font-size:11px;
    font-weight:800;
    line-height:1.15;
  }

  .stickyCta__btn{
    flex:0 0 auto;
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 14px;
    border-radius:12px;
    background:#16a34a;
    color:#fff;
    font-size:12px;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(22,163,74,.22);
  }

  .stickyCta.is-visible ~ .whatsapp-float{
    bottom:84px;
  }

  .liveSummary__grid,
  .kitPreview__items{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:380px){
  .stickyCta{
    left:8px;
    right:8px;
    gap:8px;
  }

  .stickyCta__btn{
    padding:0 10px;
  }
}

@media (min-width:761px){
  .liveSummary__grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (prefers-reduced-motion:reduce){
  .stickyCta,
  .nkitCard,
  #widget-macena .color-btn,
  .txMini__opt,
  .faq__answer,
  .whatsapp-float{
    transition:none !important;
  }
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
.txMini__opt:focus-visible,
summary:focus-visible,
video:focus-visible{
  outline:3px solid rgba(0,93,203,.45);
  outline-offset:3px;
}

.review__theme{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  margin:8px 0 0;
  padding:5px 9px;
  border:1px solid rgba(0,93,203,.14);
  border-radius:999px;
  background:#f3f8ff;
  color:#005dcb;
  font-size:11px;
  font-weight:900;
  line-height:1.1;
}

/* =========================================================
   FINAL VIDEO FIXES (Antigravity)
   - Consistent aspect ratios
   - Premium interactive states
   - Responsiveness
   ========================= */

/* Review Videos */
.reviewVideo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  cursor: pointer;
}

.reviewVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.reviewVideo:hover video {
  transform: scale(1.02);
}

.reviewVideo__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none; /* Let the click go through to the container/video */
}

.reviewVideo.is-playing .reviewVideo__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.reviewVideo__sound {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.reviewVideo__sound:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

.benefitCard__video,
.material__video{
  cursor:pointer;
}

.js-smart-video {
  background: #0f172a;
}

.js-smart-video[data-loaded="true"] {
  background: transparent;
}

/* Benefit Cards Videos */
.benefitCard__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

/* Material Section Video */
.material__video {
  width: 100%;
  max-width: 800px; /* Increased for better visibility if landscape */
  height: auto;
  aspect-ratio: auto; /* Let the video dictate its own ratio */
  object-fit: contain;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  background: #000;
}

@media (max-width: 520px) {
  .material__video {
    max-width: 100%;
  }
}

/* Ensure Videos don't break the layout */
video {
  max-width: 100%;
}

@media (prefers-reduced-motion:reduce){
  .reviewVideo:hover video,
  .reviewVideo__sound:hover{
    transform:none;
  }
}

/* =========================================================
   FASE 2 - IDENTIDADE VISUAL ELETROCAR PARTS
   Ajustes seguros de marca sem alterar funil, checkout ou JS.
   ========================= */
:root{
  --brand-navy:#071b33;
  --brand-blue:#005dcb;
  --brand-green:#12a86b;
  --brand-gray:#586578;
  --brand-soft:#f3f8ff;
  --brand-ink:#0b1628;
  --red:var(--brand-green);
}

.hdr{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(7,27,51,.08);
  box-shadow:0 10px 28px rgba(7,27,51,.05);
  backdrop-filter:saturate(145%) blur(10px);
}

.hdr__inner{
  min-height:64px;
}

.hdr__left{
  gap:10px;
}

.hdr__menuBtn{
  border-color:rgba(7,27,51,.12);
  background:linear-gradient(180deg,#fff,#f7fbff);
  box-shadow:0 8px 18px rgba(7,27,51,.04);
}

.hdr__menuBtn:hover{
  border-color:rgba(0,93,203,.26);
  box-shadow:0 12px 26px rgba(7,27,51,.08);
}

.hdr__menuBtn span{
  background:var(--brand-navy);
}

.brandLogo{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-width:0;
  color:var(--brand-ink);
  line-height:1;
  letter-spacing:0;
}

.brandLogo__img{
  display:block;
  width:auto;
  height:38px;
  max-width:180px;
  object-fit:contain;
}

.brandLogo__mark{
  position:relative;
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(135deg,var(--brand-navy),#0b3a70);
  color:#fff;
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(7,27,51,.18);
  overflow:hidden;
}

.brandLogo__mark::after{
  content:"";
  position:absolute;
  right:-8px;
  bottom:-8px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:var(--brand-green);
  box-shadow:0 0 0 6px rgba(18,168,107,.16);
}

.brandLogo__text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  min-width:0;
}

.brandLogo__text strong{
  display:block;
  color:var(--brand-ink);
  font-size:17px;
  font-weight:900;
  line-height:.96;
  white-space:nowrap;
}

.brandLogo__text small{
  display:block;
  color:var(--brand-blue);
  font-size:11px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.hdr__secure{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 9px;
  border:1px solid rgba(18,168,107,.18);
  border-radius:999px;
  background:rgba(18,168,107,.07);
  color:#087249;
  letter-spacing:.08em;
}

.hdr__secure::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--brand-green);
  box-shadow:0 0 0 4px rgba(18,168,107,.14);
}

.hdr__divider{
  background:linear-gradient(90deg,rgba(0,93,203,0),rgba(0,93,203,.16),rgba(18,168,107,.16),rgba(0,93,203,0));
}

.heroTrust__grid span,
.phase3Card,
.liveSummary,
.kitPreview,
.modal__section{
  border-color:rgba(0,93,203,.12);
}

.heroTrust__grid span,
.kitPreview,
.liveSummary{
  background:linear-gradient(180deg,#fff,var(--brand-soft));
}

.phase3Card--brand,
.nkitCard.is-selected{
  border-color:rgba(0,93,203,.30) !important;
  box-shadow:0 14px 34px rgba(0,93,203,.10);
}

.nkitCard__badge{
  background:var(--brand-navy);
  color:#fff;
}

.nkitCard__badge--soft{
  background:rgba(18,168,107,.11);
  color:#087249;
  border-color:rgba(18,168,107,.18);
}

.cta__buy,
.stickyCta__btn{
  background:linear-gradient(135deg,#12a86b,#0b8d5d) !important;
  color:#fff !important;
  box-shadow:0 14px 30px rgba(18,168,107,.24);
}

.cta__buy:hover,
.stickyCta__btn:hover{
  box-shadow:0 18px 38px rgba(18,168,107,.30);
}

.modal__section--safe{
  background:linear-gradient(180deg,rgba(18,168,107,.08),rgba(243,248,255,.88));
  border-color:rgba(18,168,107,.18);
}

.modal__helpLink,
.phase3__link,
.phase3__supportLink,
.configHelpLink,
.modelAssistant__cta{
  color:var(--brand-blue);
}

.stickyCta{
  border-color:rgba(7,27,51,.10);
  box-shadow:0 -18px 38px rgba(7,27,51,.14);
}

@media (max-width:520px){
  .hdr__inner{
    min-height:58px;
    padding:10px 12px;
    gap:8px;
  }

  .brandLogo{
    gap:7px;
  }

  .brandLogo__img{
    height:34px;
    max-width:154px;
  }

  .brandLogo__mark{
    width:34px;
    height:34px;
    flex-basis:34px;
    border-radius:10px;
    font-size:12px;
  }

  .brandLogo__text strong{
    font-size:15px;
  }

  .brandLogo__text small{
    font-size:9px;
    letter-spacing:.16em;
  }

  .hdr__secure{
    padding:6px 7px;
    font-size:9px;
    letter-spacing:.06em;
  }
}

@media (max-width:374px){
  .hdr__left{
    gap:7px;
  }

  .brandLogo__text strong{
    font-size:14px;
  }

  .brandLogo__text small{
    font-size:8px;
  }

  .brandLogo__img{
    height:30px;
    max-width:138px;
  }

  .hdr__secure{
    max-width:92px;
    white-space:normal;
    text-align:left;
    line-height:1.12;
  }
}

/* ===== Fase 3: pacote de ícones premium Eletrocar Parts ===== */
:root{
  --ep-green:#16A34A;
  --ep-green-dark:#064E3B;
  --ep-blue:#062A52;
  --ep-ink:#111827;
  --ep-muted:#64748B;
  --ep-soft:#F3F8F5;
}

.epIcon{
  width:22px;
  height:22px;
  display:inline-block;
  flex:0 0 auto;
  object-fit:contain;
  vertical-align:middle;
}

.epIcon--xs{ width:13px; height:13px; }
.epIcon--sm{ width:18px; height:18px; }
.epIcon--lg{ width:30px; height:30px; }

.hdr__secure::before{
  display:none;
}

.hdr__secure .epIcon{
  width:15px;
  height:15px;
}

.heroTrust__grid span{
  gap:7px;
  line-height:1.15;
}

.heroTrust__grid .epIcon{
  width:20px;
  height:20px;
}

.phase3Step{
  position:relative;
}

.phase3Step__num{
  position:absolute;
  top:10px;
  left:10px;
  width:24px;
  height:24px;
  font-size:12px;
  background:var(--ep-green);
}

.phase3Step__icon{
  width:30px;
  height:30px;
  margin-top:4px;
}

.phase3Card__icon{
  width:34px;
  height:34px;
  margin:0 0 10px;
  padding:7px;
  border:1px solid rgba(22,163,74,.18);
  border-radius:12px;
  background:linear-gradient(180deg,#fff,var(--ep-soft));
}

.phase3Card--muted .phase3Card__icon{
  border-color:rgba(100,116,139,.18);
  background:#f8fafc;
  opacity:.9;
}

.benefitCard__h,
.liveSummary__top strong,
.modal__sectionTitle,
.kitPreview__head strong,
.stickyCta__text strong{
  display:flex;
  align-items:center;
  gap:7px;
}

.checkIcon img,
.sp-icon img,
.txMini__check img{
  width:18px;
  height:18px;
  display:block;
}

.trustPill__icon{
  filter:none !important;
  width:32px;
  height:32px;
  padding:5px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
}

.nxShip__logo--ep{
  width:42px;
  height:42px;
  padding:8px;
  border-radius:14px;
  background:var(--ep-soft);
  border:1px solid rgba(22,163,74,.18);
}

.specs__noteIcon,
.modal__secure{
  display:flex;
  align-items:center;
  justify-content:center;
}

.specs__noteIcon img{
  width:18px;
  height:18px;
}

.phase3MiniCard > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.phase3MiniCard > span .epIcon{
  width:26px;
  height:26px;
}

.phase3Grid--compact .phase3MiniCard > span .epIcon{
  width:28px;
  height:28px;
}

.nkitCard__badge,
.nkitCard__badge--soft{
  display:inline-flex;
  align-items:center;
  gap:5px;
}

.modal__secure{
  gap:6px;
}

@media (max-width:520px){
  .heroTrust__grid span{
    justify-content:flex-start;
    padding-inline:9px;
  }

  .phase3Step{
    min-height:108px;
    padding-top:20px;
  }

  .phase3Step__icon{
    width:27px;
    height:27px;
  }

  .stickyCta__text strong{
    gap:5px;
  }
}

/* =========================================================
   FASE 6 - Microinteracoes premium Eletrocar Parts
   Leve, sem bibliotecas, respeitando prefers-reduced-motion
========================================================= */
.reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity .55s ease, transform .55s ease;
  transition-delay:var(--reveal-delay,0ms);
  will-change:opacity,transform;
}

.reveal.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

.phase6-interactive{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, filter .18s ease;
  -webkit-tap-highlight-color:transparent;
}

.phase6-interactive.is-touching,
.phase6-interactive:active{
  transform:translateY(1px) scale(.992);
}

.nkitCard.phase6-interactive.is-touching,
.txMini__opt.phase6-interactive.is-touching,
.color-btn.phase6-interactive.is-touching{
  box-shadow:0 10px 24px rgba(6,42,82,.10);
}

.cta__buy.phase6-interactive.is-touching,
.stickyCta__btn.phase6-interactive.is-touching,
.drawer__cta.phase6-interactive.is-touching,
.configHelpLink.phase6-interactive.is-touching,
.modelAssistant__cta.phase6-interactive.is-touching,
.phase3__link.phase6-interactive.is-touching,
.phase3__supportLink.phase6-interactive.is-touching{
  filter:saturate(1.06) brightness(.98);
}

.liveSummary.phase6-updated,
.kitPreview.phase6-updated{
  border-color:rgba(22,163,74,.36) !important;
  box-shadow:0 16px 38px rgba(22,163,74,.13) !important;
}

.form-group.phase6-focus{
  border-radius:18px;
  box-shadow:0 0 0 4px rgba(22,163,74,.08);
}

.faq__question.phase6-interactive:hover,
.drawer__link.phase6-interactive:hover{
  background:rgba(22,163,74,.06);
}

.reviewVideo__play.phase6-interactive.is-touching,
.reviewVideo__sound.phase6-interactive.is-touching{
  transform:scale(.96);
}

.js-smart-video[data-loaded="true"]{
  animation:phase6VideoReady .42s ease both;
}

@keyframes phase6VideoReady{
  from{ opacity:.82; }
  to{ opacity:1; }
}

@media (hover:hover){
  .benefitCard.phase6-interactive:hover,
  .phase3MiniCard.phase6-interactive:hover,
  .phase3Card.phase6-interactive:hover,
  .review.phase6-interactive:hover,
  .trustPill.phase6-interactive:hover{
    transform:translateY(-2px);
  }
}

@media (prefers-reduced-motion:reduce){
  .reveal,
  .reveal.is-visible,
  .phase6-interactive,
  .phase6-interactive.is-touching,
  .liveSummary.phase6-updated,
  .kitPreview.phase6-updated,
  .js-smart-video[data-loaded="true"]{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
    animation:none !important;
    will-change:auto !important;
  }
}

/* =========================================================
   FASE 6.2 / 6.3 - Botoes premium e configurador intuitivo
   Camada incremental: preserva links, eventos e logica atual
========================================================= */
.hero__mediaLink,
.cta__buy,
.btnPrimary,
.btnGhost,
.stickyCta__btn,
.drawer__cta,
.configHelpLink,
.modelAssistant__cta,
.modal__helpLink,
.phase3__link,
.phase3__supportLink,
.nkitCard{
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    filter .18s ease;
  -webkit-tap-highlight-color:transparent;
}

.cta__buy,
.btnPrimary,
.stickyCta__btn,
.drawer__cta{
  background:linear-gradient(135deg,#16a34a 0%,#11823b 100%) !important;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 14px 30px rgba(22,163,74,.22);
}

.configHelpLink,
.modelAssistant__cta,
.modal__helpLink,
.phase3__supportLink{
  box-shadow:0 8px 18px rgba(22,163,74,.10);
}

@media (hover:hover){
  .hero__mediaLink:hover,
  .cta__buy:hover,
  .btnPrimary:hover,
  .stickyCta__btn:hover,
  .drawer__cta:hover,
  .configHelpLink:hover,
  .modelAssistant__cta:hover,
  .modal__helpLink:hover,
  .phase3__link:hover,
  .phase3__supportLink:hover{
    transform:translateY(-1px);
    filter:saturate(1.04);
  }

  .cta__buy:hover,
  .btnPrimary:hover,
  .stickyCta__btn:hover,
  .drawer__cta:hover{
    box-shadow:0 18px 38px rgba(22,163,74,.30);
  }
}

.hero__mediaLink:active,
.cta__buy:active,
.btnPrimary:active,
.btnGhost:active,
.stickyCta__btn:active,
.drawer__cta:active,
.configHelpLink:active,
.modelAssistant__cta:active,
.modal__helpLink:active,
.phase3__link:active,
.phase3__supportLink:active,
.nkitCard:active{
  transform:translateY(1px) scale(.99);
}

.hero__mediaLink:focus-visible,
.cta__buy:focus-visible,
.btnPrimary:focus-visible,
.btnGhost:focus-visible,
.stickyCta__btn:focus-visible,
.drawer__cta:focus-visible,
.configHelpLink:focus-visible,
.modelAssistant__cta:focus-visible,
.modal__helpLink:focus-visible,
.phase3__link:focus-visible,
.phase3__supportLink:focus-visible,
.nkitCard:focus-visible,
#widget-macena select:focus-visible,
.color-btn:focus-visible,
.txMini__opt:focus-visible{
  outline:3px solid rgba(22,163,74,.36) !important;
  outline-offset:3px;
}

.nkitCard{
  position:relative;
  border:1px solid rgba(15,23,42,.10) !important;
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  box-shadow:0 8px 22px rgba(15,23,42,.055);
  overflow:hidden;
}

.nkitCard::after{
  content:"";
  position:absolute;
  top:12px;
  right:12px;
  width:21px;
  height:21px;
  border-radius:999px;
  border:1px solid rgba(100,116,139,.30);
  background:#fff;
  box-shadow:0 5px 12px rgba(15,23,42,.08);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.nkitCard.is-selected{
  border-color:rgba(22,163,74,.76) !important;
  background:linear-gradient(180deg,#fff 0%,#f2fbf6 100%);
  box-shadow:0 16px 38px rgba(22,163,74,.16);
  animation:kitSelectPop .28s ease;
}

.nkitCard.is-selected::after{
  content:"✓";
  display:grid;
  place-items:center;
  color:#fff;
  font-size:13px;
  font-weight:900;
  background:#16a34a;
  border-color:#16a34a;
  transform:scale(1.05);
}

.nkitCard__name{
  display:grid !important;
  gap:3px;
  align-items:start;
  font-size:13px !important;
  line-height:1.16 !important;
  letter-spacing:0 !important;
}

.nkitCard__eyebrow{
  display:block;
  padding:0 !important;
  opacity:1 !important;
  color:#64748b;
  font-size:10px;
  line-height:1;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.nkitCard__name strong{
  color:#0f172a;
  font-size:13px;
  line-height:1.16;
  font-weight:900;
}

.nkitCard.is-selected .nkitCard__name strong{
  color:#065f46;
}

.nkitCard__badge,
.nkitCard__badge--soft{
  border:1px solid rgba(22,163,74,.22) !important;
  background:rgba(22,163,74,.11) !important;
  color:#047857 !important;
  box-shadow:0 6px 14px rgba(22,163,74,.08);
}

.nkitCard__thumb{
  box-shadow:inset 0 0 0 1px rgba(22,163,74,.10),0 8px 18px rgba(15,23,42,.08);
}

.nkitCard.is-selected .nkitCard__thumb{
  box-shadow:inset 0 0 0 2px rgba(22,163,74,.22),0 10px 22px rgba(22,163,74,.12);
}

#widget-macena select{
  transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

#widget-macena select:focus{
  border-color:rgba(22,163,74,.70) !important;
  box-shadow:0 0 0 4px rgba(22,163,74,.10) !important;
}

#widget-macena select:not(:disabled):valid{
  border-color:rgba(22,163,74,.24);
  background-color:#fbfffd;
}

.form-group.has-error,
.has-error{
  border-radius:18px;
}

.has-error select,
.has-error .color-selector-container,
.has-error .txMini__row{
  border-color:rgba(220,38,38,.55) !important;
  box-shadow:0 0 0 4px rgba(220,38,38,.08) !important;
}

.liveSummary__grid div{
  transition:background-color .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.liveSummary__grid div.is-updated{
  border-color:rgba(22,163,74,.30);
  animation:summaryPulse .65s ease;
}

@keyframes summaryPulse{
  0%{
    background:rgba(22,163,74,.16);
    box-shadow:0 0 0 0 rgba(22,163,74,.18);
  }
  100%{
    background:#fff;
    box-shadow:0 0 0 8px rgba(22,163,74,0);
  }
}

@keyframes kitSelectPop{
  0%{ transform:scale(.992); }
  60%{ transform:scale(1.006); }
  100%{ transform:scale(1); }
}

@media (max-width:420px){
  .nkitCard::after{
    top:10px;
    right:10px;
    width:19px;
    height:19px;
    font-size:12px;
  }

  .nkitCard__name strong{
    font-size:12.5px;
  }
}

@media (prefers-reduced-motion:reduce){
  .hero__mediaLink,
  .cta__buy,
  .btnPrimary,
  .btnGhost,
  .stickyCta__btn,
  .drawer__cta,
  .configHelpLink,
  .modelAssistant__cta,
  .modal__helpLink,
  .phase3__link,
  .phase3__supportLink,
  .nkitCard,
  #widget-macena select,
  .liveSummary__grid div,
  .liveSummary__grid div.is-updated{
    transition:none !important;
    animation:none !important;
    transform:none !important;
  }
}

/* =========================================================
   FASE 6.4-6.8 - Erros, modal, FAQ, sticky CTA e WhatsApp
   Refinamento visual sem alterar regras de funil
========================================================= */
.configValidation,
.ctaValidation{
  border-color:rgba(245,158,11,.30) !important;
  background:linear-gradient(180deg,#fffaf0 0%,#fff7ed 100%) !important;
  color:#92400e !important;
  box-shadow:0 10px 24px rgba(245,158,11,.10);
}

.form-group.has-error,
.has-error,
.is-error{
  outline:0 !important;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,251,235,.80),rgba(255,247,237,.54));
  box-shadow:0 0 0 1px rgba(245,158,11,.24),0 10px 24px rgba(245,158,11,.08);
  animation:softShake .22s ease;
}

.has-error select,
.is-error select,
.has-error .color-selector-container,
.is-error .color-selector-container,
.has-error .txMini__row,
.is-error .txMini__row,
.has-error.nkit__grid,
.is-error.nkit__grid{
  border-color:rgba(245,158,11,.62) !important;
  box-shadow:0 0 0 4px rgba(245,158,11,.10) !important;
}

.fieldError{
  display:flex;
  align-items:flex-start;
  gap:6px;
  color:#92400e !important;
}

.fieldError::before{
  content:"";
  width:7px;
  height:7px;
  margin-top:5px;
  flex:0 0 auto;
  border-radius:999px;
  background:#f59e0b;
  box-shadow:0 0 0 4px rgba(245,158,11,.12);
}

@keyframes softShake{
  0%,100%{ transform:translateX(0); }
  35%{ transform:translateX(-2px); }
  70%{ transform:translateX(2px); }
}

.modal.is-open .modal__overlay{
  animation:modalBackdropIn .22s ease both;
  background:rgba(3,7,18,.54);
  backdrop-filter:blur(4px);
}

.modal.is-open .modal__box{
  animation:modalPremiumIn .24s cubic-bezier(.2,.85,.3,1) both;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 28px 80px rgba(15,23,42,.30),0 0 0 1px rgba(22,163,74,.08);
  overscroll-behavior:contain;
}

@keyframes modalBackdropIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

@keyframes modalPremiumIn{
  from{ opacity:0; transform:translateY(10px) scale(.98); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}

.faq__item{
  border:1px solid rgba(15,23,42,.07);
  border-radius:14px;
  margin-bottom:10px;
  background:#fff;
  overflow:hidden;
  transition:background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.faq__item.is-open{
  background:linear-gradient(180deg,#fff 0%,#f8fbf8 100%);
  border-color:rgba(22,163,74,.22);
  box-shadow:0 12px 28px rgba(15,23,42,.07);
}

.faq__question{
  padding:15px 42px 15px 14px !important;
  color:#0f172a;
}

.faq__question::after{
  right:14px !important;
  color:#16a34a !important;
  transform:translateY(-50%) rotate(0deg) !important;
  transition:transform .22s ease, color .22s ease;
}

.faq__item.is-open .faq__question::after{
  transform:translateY(-50%) rotate(180deg) !important;
  color:#047857 !important;
}

.faq__answer{
  opacity:0;
  padding-left:14px;
  padding-right:14px;
  color:#475569 !important;
  transition:max-height .28s ease, opacity .22s ease, padding-bottom .22s ease !important;
}

.faq__item.is-open > .faq__answer{
  display:block;
  opacity:1 !important;
  max-height:420px !important;
  padding-bottom:14px !important;
}

@media (max-width:760px){
  .stickyCta{
    border-color:rgba(22,163,74,.18);
    background:rgba(255,255,255,.98);
    box-shadow:0 18px 48px rgba(15,23,42,.18),0 0 0 1px rgba(255,255,255,.82);
    transform:translate3d(0,125%,0) scale(.985);
    transition:opacity .28s ease, transform .28s cubic-bezier(.2,.85,.3,1), box-shadow .22s ease;
  }

  .stickyCta.is-visible{
    transform:translate3d(0,0,0) scale(1);
  }

  .stickyCta__btn{
    box-shadow:0 12px 26px rgba(22,163,74,.28);
  }
}

.whatsapp-float{
  background:linear-gradient(135deg,#16a34a 0%,#047857 100%) !important;
  color:#fff !important;
  box-shadow:0 14px 34px rgba(4,120,87,.24) !important;
  border:1px solid rgba(255,255,255,.34);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease !important;
  animation:whatsSoftPulse 2.8s ease 1 .8s;
}

.whatsapp-float svg{
  fill:#fff !important;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,.18));
}

.whatsapp-float:hover{
  background:linear-gradient(135deg,#18b252 0%,#057a55 100%) !important;
  transform:translateY(-2px) scale(1.025) !important;
  box-shadow:0 18px 42px rgba(4,120,87,.30) !important;
}

.whatsapp-float:active{
  transform:translateY(1px) scale(.98) !important;
}

@keyframes whatsSoftPulse{
  0%{ box-shadow:0 14px 34px rgba(4,120,87,.24),0 0 0 0 rgba(22,163,74,.24); }
  55%{ box-shadow:0 14px 34px rgba(4,120,87,.24),0 0 0 10px rgba(22,163,74,0); }
  100%{ box-shadow:0 14px 34px rgba(4,120,87,.24),0 0 0 0 rgba(22,163,74,0); }
}

.configHelpLink,
.modelAssistant__cta,
.modal__helpLink,
.phase3__supportLink{
  border-color:rgba(22,163,74,.26) !important;
  background:#f3fbf6 !important;
  color:#065f46 !important;
}

@media (prefers-reduced-motion:reduce){
  .form-group.has-error,
  .has-error,
  .is-error,
  .modal.is-open .modal__overlay,
  .modal.is-open .modal__box,
  .faq__item,
  .faq__question::after,
  .faq__answer,
  .stickyCta,
  .whatsapp-float{
    transition:none !important;
    animation:none !important;
    transform:none !important;
  }
}

/* =========================================================
   AJUSTE HOMOLOGACAO - Modal centralizado, botoes visiveis
   e icones alinhados sem alterar estrutura funcional
========================================================= */
.epIcon,
.epIconBox__img,
.trustPill__icon,
.phase3Step__icon,
.phase3Card__icon,
.stickyCta__icon{
  flex:0 0 auto;
  object-fit:contain;
  vertical-align:middle;
}

.modal{
  align-items:center !important;
  justify-items:center !important;
  overflow:hidden;
  padding:12px;
  padding-top:max(12px, env(safe-area-inset-top));
  padding-bottom:max(12px, env(safe-area-inset-bottom));
}

.modal.is-open{
  display:grid !important;
}

.modal__box{
  width:min(440px, calc(100vw - 24px)) !important;
  max-width:calc(100vw - 24px);
  max-height:min(88vh, calc(100dvh - 24px)) !important;
  min-height:0;
  margin:auto;
  padding:0 !important;
  display:grid !important;
  grid-template-rows:minmax(0,1fr) auto auto;
  overflow:hidden !important;
  border-radius:20px;
}

.modal__close{
  position:absolute !important;
  top:10px !important;
  right:10px !important;
  z-index:6;
}

.modal__content{
  min-height:0;
  overflow-y:auto !important;
  overscroll-behavior:contain;
  padding:52px 16px 14px !important;
}

.modal__summary{
  margin-bottom:0;
}

.modal__sectionTitle{
  gap:8px;
  line-height:1.2;
}

.modal__sectionTitle .epIcon{
  width:18px;
  height:18px;
}

.modal__actions{
  position:relative !important;
  bottom:auto !important;
  z-index:4;
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
  margin:0 !important;
  padding:12px 14px !important;
  background:linear-gradient(180deg,rgba(255,255,255,.94),#fff 34%);
  box-shadow:0 -14px 30px rgba(15,23,42,.10);
}

.modal__scrollHint{
  grid-column:1 / -1;
  order:-1;
  margin:0 0 2px !important;
  padding:0 !important;
}

.modal__actions .btnGhost,
.modal__actions .btnPrimary{
  width:100%;
  min-height:44px;
}

.modal__secure{
  margin:0 !important;
  padding:8px 14px 12px;
  border-top:1px solid rgba(15,23,42,.06);
  background:#fff;
  font-size:12px;
  line-height:1.25;
}

@media (min-width:421px){
  .modal__actions{
    grid-template-columns:minmax(0,1fr) minmax(0,1.18fr);
  }
}

@media (max-height:680px){
  .modal{
    align-items:start !important;
  }

  .modal__box{
    max-height:calc(100dvh - 18px) !important;
  }

  .modal__content{
    padding-top:46px !important;
  }

  .modal__actions{
    padding-top:10px !important;
    padding-bottom:10px !important;
  }
}

@media (max-width:380px){
  .modal{
    padding-left:8px;
    padding-right:8px;
  }

  .modal__box{
    width:calc(100vw - 16px) !important;
    max-width:calc(100vw - 16px);
  }

  .modal__content{
    padding-left:12px !important;
    padding-right:12px !important;
  }
}

/* =========================================================
   FIX MOBILE MODAL - neutraliza regras antigas top:50%
   O centro agora vem do grid do overlay, nao de transform legado
========================================================= */
.modal{
  place-items:center !important;
  align-items:center !important;
  justify-content:center !important;
}

.modal__box{
  top:auto !important;
  right:auto !important;
  bottom:auto !important;
  left:auto !important;
  transform:none;
  align-self:center !important;
  justify-self:center !important;
  box-sizing:border-box;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbf8 100%) !important;
  border:1px solid rgba(22,163,74,.16);
  box-shadow:0 30px 90px rgba(15,23,42,.32),0 0 0 1px rgba(255,255,255,.72) inset;
}

.modal.is-open .modal__box{
  animation:modalCenteredIn .22s cubic-bezier(.2,.85,.3,1) both !important;
}

@keyframes modalCenteredIn{
  from{ opacity:0; transform:scale(.98); }
  to{ opacity:1; transform:scale(1); }
}

@media (max-height:680px){
  .modal{
    align-items:center !important;
    place-items:center !important;
  }

  .modal__box{
    max-height:calc(100dvh - 16px) !important;
  }
}

@media (max-width:520px){
  .modal{
    padding:10px !important;
  }

  .modal__box{
    width:min(392px, calc(100vw - 20px)) !important;
    max-width:calc(100vw - 20px) !important;
    max-height:calc(100dvh - 20px) !important;
    border-radius:18px;
  }
}

.modal__title{
  color:#062a52 !important;
  font-size:20px !important;
  line-height:1.12;
  letter-spacing:0;
  padding-right:42px;
}

.modal__subtitle{
  color:#475569 !important;
  font-size:13px !important;
  line-height:1.42 !important;
}

.modal__section{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  background:#fff !important;
  box-shadow:0 8px 20px rgba(15,23,42,.045);
}

.modal__section + .modal__section{
  margin-top:10px;
}

.modal__section--safe{
  border-color:rgba(22,163,74,.20) !important;
  background:linear-gradient(180deg,#fff 0%,#f3fbf6 100%) !important;
}

.modal__row{
  gap:10px;
  border-color:rgba(15,23,42,.06) !important;
}

.modal__value{
  color:#0f172a !important;
  font-weight:850;
  text-align:right;
}

.modal__actions .btnPrimary{
  background:linear-gradient(135deg,#16a34a,#047857) !important;
  box-shadow:0 14px 28px rgba(22,163,74,.24);
}

.modal__actions .btnGhost{
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#334155;
}

/* =========================================================
   FIX DEFINITIVO MOBILE - centralizacao absoluta do popup
   Evita que grid, top antigo ou scroll da pagina empurrem o card
========================================================= */
.modal.is-open{
  display:block !important;
  position:fixed !important;
  inset:0 !important;
  width:100vw !important;
  height:100dvh !important;
  overflow:hidden !important;
  padding:0 !important;
}

.modal.is-open .modal__overlay{
  position:fixed !important;
  inset:0 !important;
}

.modal.is-open .modal__box{
  position:fixed !important;
  top:50% !important;
  left:50% !important;
  right:auto !important;
  bottom:auto !important;
  width:min(440px, calc(100vw - 24px)) !important;
  max-width:calc(100vw - 24px) !important;
  max-height:calc(100dvh - 24px) !important;
  margin:0 !important;
  transform:translate3d(-50%,-50%,0) !important;
  animation:modalFixedCenterIn .22s cubic-bezier(.2,.85,.3,1) both !important;
}

@keyframes modalFixedCenterIn{
  from{
    opacity:0;
    transform:translate3d(-50%,-48%,0) scale(.985);
  }
  to{
    opacity:1;
    transform:translate3d(-50%,-50%,0) scale(1);
  }
}

@media (max-width:520px){
  .modal.is-open .modal__box{
    width:calc(100vw - 20px) !important;
    max-width:calc(100vw - 20px) !important;
    max-height:calc(100dvh - 20px) !important;
  }
}

@media (max-height:680px){
  .modal.is-open .modal__box{
    top:50% !important;
    max-height:calc(100dvh - 12px) !important;
  }

  .modal__content{
    padding-top:44px !important;
  }
}
