

html, body{
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ===== SCROLL SUAVE GLOBAL ===== */
html{
  scroll-behavior: smooth;
}


/* ===============================
   NEXUS UI – STYLE (CLEAN)
   Reutilizável (footer + header)
   =============================== */

:root{
  /* ===============================
     MILLER MOTORS – PALETA (da logo)
     =============================== */

  /* Primárias */
  --nx-brand:   #0F60D1;  /* azul elétrico (principal) */
  --nx-brand-2: #49BDF5;  /* ciano glow (secundária) */

  /* Base/apoio */
  --nx-navy:    #021546;  /* azul bem escuro (fundo/placa) */
  --nx-navy-2:  #072A7D;  /* azul escuro (borda/contraste) */
  --nx-ice:     #E3F0F9;  /* branco gelo */
  --nx-ice-2:   #AAD0E9;  /* azul clarinho */

  --nx-white: #ffffff;
  --nx-white-85: rgba(255,255,255,.85);
  --nx-white-70: rgba(255,255,255,.70);
  --nx-white-25: rgba(255,255,255,.25);
  --nx-shadow: 0 10px 30px rgba(0,0,0,.18);

  --nx-radius: 14px;
  --nx-font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Header */
  --nx-head-bg: #ffffff;
  --nx-head-accent: #0F60D1;       /* burger/cta/destaques */
  --nx-head-line: rgba(2,21,70,.10);

  /* Drawer */
  --nx-drawer-overlay: rgba(0,0,0,.45);
  --nx-drawer-bg: #ffffff;
  --nx-drawer-border: rgba(2,21,70,.10);
  --nx-drawer-item-border: rgba(2,21,70,.14);
}


/* ===============================
   HEADER (igual ao print)
   =============================== */

.nx-topbar{
  font-family: var(--nx-font);
  background: var(--nx-head-bg);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nx-topbar__wrap{
  height: 64px;
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px auto 1fr;
  align-items: center;
  gap: 10px;
}

.nx-topbar__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nx-topbar__logoImg{
  height: 110px; /* ajuste aqui */
  width: auto;
  display: block;
}

.nx-topbar__right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nx-topbar__secure{
  font-size: 11px;
  letter-spacing: .6px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
}

.nx-topbar__divider{
  height: 1px;
  background: var(--nx-head-line);
  width: 100%;
}

/* Burger */
.nx-burger{
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.nx-burger span{
  width: 18px;
  height: 2px;
  background: var(--nx-head-accent);
  border-radius: 10px;
  display: block;
}
.nx-burger span:nth-child(2){ width: 14px; justify-self: start; }
.nx-burger span:nth-child(3){ width: 16px; justify-self: start; }

/* ===============================
   DRAWER (menu lateral)
   Fix: tirar grid 1fr que cria “vazios”
   =============================== */

.nx-drawer{
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.nx-drawer__overlay{
  position: absolute;
  inset: 0;
  background: var(--nx-drawer-overlay);
  opacity: 0;
  transition: opacity .18s ease;
}

/* painel: agora é FLEX, não grid */
.nx-drawer__panel{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--nx-drawer-bg);
  transform: translateX(-102%);
  transition: transform .2s ease;
  border-right: 1px solid var(--nx-drawer-border);

  display: flex;
  flex-direction: column;
}

/* header do drawer */
.nx-drawer__header{
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--nx-drawer-border);
}

.nx-drawer__title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  color: #222;
}

.nx-drawer__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--nx-drawer-border);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 0;
  color: #444;
}

/* conteúdo: NÃO estica, e fica no topo */
.nx-drawer__content{
  padding: 14px;
  display: grid;
  gap: 8px;          /* aqui controla proximidade */
  align-content: start;
}

/* itens: botões compactos */
.nx-drawer__item{
  text-decoration: none;
  color: #111;
  font-weight: 800;
  font-size: 14px;

  height: 44px;
  display: flex;
  align-items: center;

  padding: 0 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--nx-drawer-item-border);

  box-sizing: border-box;
}

.nx-drawer__item:hover{ background: #f6f6f6; }

/* footer do drawer sempre embaixo */
.nx-drawer__footer{
  margin-top: auto;
  padding: 14px;
  border-top: 1px solid var(--nx-drawer-border);
}

.nx-drawer__cta{
  height: 48px;
  display: grid;
  place-items: center;

  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;

  color: #fff;
  background: var(--nx-head-accent);
  border-radius: 14px;
}

/* Estado aberto */
.nx-drawer.is-open{ pointer-events: auto; }
.nx-drawer.is-open .nx-drawer__overlay{ opacity: 1; }
.nx-drawer.is-open .nx-drawer__panel{ transform: translateX(0); }

body.nx-lock{ overflow: hidden; }

/* ===============================
   FOOTER (Nexus)
   =============================== */

.nx-footer{
  font-family: var(--nx-font);
  color: var(--nx-white);
  background:
    radial-gradient(1200px 700px at 15% 15%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(135deg, var(--nx-brand) 0%, var(--nx-brand-2) 100%);
  padding: 26px 0 0;
}

.nx-footer__container{
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 0 0 18px;
}

.nx-footer__col{
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--nx-radius);
  padding: 16px 16px 14px;
  box-shadow: var(--nx-shadow);
}

.nx-footer__title{
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--nx-white-25);
  padding-bottom: 10px;
}

.nx-footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.nx-footer__item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--nx-white-85);
  line-height: 1.25;
}

.nx-footer__muted{
  margin: 10px 0 10px;
  color: var(--nx-white-70);
  font-size: 13px;
}

.nx-footer__link{
  color: var(--nx-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.nx-footer__link:hover{ opacity: .9; }

.nx-footer__menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.nx-footer__menu a{
  display: inline-block;
  font-size: 13px;
  color: var(--nx-white-85);
  text-decoration: none;
  padding-left: 10px;
  position: relative;
}

.nx-footer__menu a::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--nx-white);
}

.nx-footer__menu a:hover{ color: var(--nx-white); }

.nx-footer__block{ margin-top: 14px; }

/* Ícones círculo */
.nx-icoCircle{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--nx-white);
  display: grid;
  place-items: center;
  flex: 0 0 26px;
}

.nx-icoStroke,
.nx-icoFill{
  width: 16px;
  height: 16px;
  color: var(--nx-brand);
}

.nx-icoStroke path{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nx-icoFill path{ fill: currentColor; }

/* Redes sociais */
.nx-socialRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.nx-socialBtn{
  width: 34px;
  height: 34px;
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.nx-socialCircle{
  position: absolute;
  inset: 0;
  background: var(--nx-white);
  border-radius: 999px;
  opacity: .95;
}

.nx-socialIcon{
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  fill: var(--nx-brand);
}

.nx-socialBtn:hover{ transform: translateY(-1px); }
.nx-socialBtn:active{ transform: translateY(0px); }

/* Pagamentos/verificada */
.nx-badges{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 8px;
  row-gap: 10px;
  padding: 12px 0;
  align-items: center;
}

.nx-badge{
  height: 32px;
  width: auto;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  justify-self: center;
  align-self: center;
  object-fit: contain;
  opacity: .95;
}

/* Newsletter */
.nx-news{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.nx-news__input{
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(0,0,0,.18);
  color: var(--nx-white);
  padding: 0 12px;
  outline: none;
}

.nx-news__input::placeholder{ color: rgba(255,255,255,.70); }

.nx-news__input:focus{
  border-color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.22);
}

.nx-news__btn{
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.95);
  color: var(--nx-brand);
  font-weight: 700;
}

.nx-news__btn:hover{ opacity: .95; }
.nx-news__btn:active{ transform: translateY(1px); }

.nx-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.20);
  padding: 14px 0 16px;
  text-align: center;
  color: var(--nx-white-85);
  font-size: 12px;
}
.nx-footer__bottom p{ margin: 4px 0; }

/* Responsivo */
@media (max-width: 820px){
  .nx-footer__container{ grid-template-columns: 1fr; }
}
/* dá espaço pra logo maior */
.nx-topbar__wrap{
  height: 72px !important;       /* antes 64 */
  align-items: center !important;
}
/* ===== POLÍTICAS (Termos / Entrega / etc) ===== */
.policy{
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  line-height: 1.65;
  color: #111;
}

.policy h1{
  text-align: center;
  font-size: 28px;
  margin: 0 0 18px;
}

.policy h2{
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.policy h3{
  font-size: 16px;
  margin: 20px 0 10px;
}

.policy p{
  margin: 0 0 12px;
}

.policy a{
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 520px){
  .policy{
    padding: 28px 16px 44px;
  }
  .policy h1{
    font-size: 24px;
  }
}
/* ===== POLÍTICAS (Termos / Entrega / Reembolso / etc) ===== */
.policy{
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  line-height: 1.65;
  color: #111;
}

.policy h1{
  text-align: center;
  font-size: 28px;
  margin: 0 0 18px;
}

.policy h2{
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.policy h3{
  font-size: 16px;
  margin: 20px 0 10px;
}

.policy p{
  margin: 0 0 12px;
}

.policy ul{
  margin: 8px 0 14px 18px;
  padding: 0;
}

.policy li{
  margin: 6px 0;
}

.policy a{
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 520px){
  .policy{
    padding: 28px 16px 44px;
  }
  .policy h1{
    font-size: 24px;
  }
}
/* ===== POLÍTICAS (fino e elegante) ===== */
.policy{
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 18px 56px;
  line-height: 1.75;
  color: #121212;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.policy h1{
  text-align: center;
  font-size: 22px;
  margin: 6px 0 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.policy h2{
  font-size: 14px;
  margin: 18px 0 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .9;
}

.policy h3{
  font-size: 14.5px;
  margin: 18px 0 8px;
  font-weight: 700;
}

.policy p{
  margin: 0 0 12px;
  color: rgba(18,18,18,.92);
}

.policy b, .policy strong{
  font-weight: 700;
}

.policy ul{
  margin: 8px 0 14px 18px;
  padding: 0;
}

.policy li{
  margin: 6px 0;
  color: rgba(18,18,18,.92);
}

.policy a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* Mobile (deixa mais “premium”) */
@media (max-width: 520px){
  .policy{
    padding: 22px 16px 40px;
    font-size: 15px;
    line-height: 1.8;
  }

  .policy h1{
    font-size: 20px;
    margin-bottom: 12px;
  }

  .policy h2{
    font-size: 13px;
    margin-top: 16px;
  }

  .policy h3{
    font-size: 14px;
  }

  .policy ul{
    margin-left: 16px;
  }
}
/* ===== POLÍTICAS – PREMIUM ===== */
.policy{
  max-width: 920px;
  margin: 24px auto 60px;
  padding: 34px 22px 44px;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 6px 20px rgba(0,0,0,.04),
    0 1px 3px rgba(0,0,0,.05);
  line-height: 1.75;
  color: #121212;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

.policy h1{
  text-align: center;
  font-size: 22px;
  margin: 6px 0 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.policy h2{
  font-size: 13.5px;
  margin: 20px 0 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .9;
}

.policy h3{
  font-size: 14.5px;
  margin: 18px 0 8px;
  font-weight: 700;
}

.policy p{
  margin: 0 0 12px;
  color: rgba(18,18,18,.92);
}

.policy ul{
  margin: 8px 0 14px 18px;
}

.policy a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* Mobile refinado */
@media (max-width: 520px){
  .policy{
    margin: 14px 12px 40px;
    padding: 22px 16px 34px;
    font-size: 15px;
    line-height: 1.8;
    border-radius: 12px;
  }

  .policy h1{ font-size: 20px; }
  .policy h2{ font-size: 13px; }
}
/* ===== TÍTULO COM LINHA SUTIL (NEXUS) ===== */
.policy h1{
  position: relative;
  text-align: center;
  font-size: 22px;
  margin: 6px 0 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.policy h1::after{
  content: "";
  display: block;
  width: 48px;                 /* comprimento da linha */
  height: 2px;                 /* espessura fina */
  margin: 10px auto 0;
  border-radius: 2px;
  background: #E11D48;         /* vermelho NEXUS */
  opacity: .85;
}

/* Mobile refinado */
@media (max-width: 520px){
  .policy h1{
    font-size: 20px;
    margin-bottom: 18px;
  }

  .policy h1::after{
    width: 40px;
    height: 2px;
    margin-top: 8px;
  }
}
.policy h1::after{
  background: var(--nx-brand); /* antes: #E11D48 */
}
.hero-clean{
  background: #fff;
  padding: 0px 16px 60px;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero-clean__title{
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 32px;
  color: #021546; /* azul escuro da logo */
}

.hero-clean__title span{
  color: #0F60D1; /* azul principal */
}

.hero-clean__image img{
  width: 100%;
  max-width: 520px;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.25));
  border-radius: 12px;
}

.hero-clean__cta{
  display: inline-block;
  padding: 16px 34px;
  border-radius: 14px;
  background: #0F60D1;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(15,96,209,.35);
  transition: all .2s ease;
}

.hero-clean__cta:hover{
  background: #021546;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* Mobile */
@media (max-width: 768px){
  .hero-clean__title{
    font-size: 30px;
    margin-bottom: 22px;
  }

  .hero-clean__image img{
    max-width: 360px;
  }
}
.nx-topbar__divider{
  height: 1px;
  background: rgba(15,96,209,.18); /* azul sutil */
}
.hero-clean{
  background:
    radial-gradient(520px 260px at 50% 40%, rgba(73,189,245,.22), transparent 60%),
    radial-gradient(700px 320px at 50% 75%, rgba(15,96,209,.10), transparent 60%),
    #fff;
  padding: 0px 16px 40px;
  text-align: center;
}
/* ===== HEADER AZUL (MILLER MOTORS) ===== */

.nx-topbar{
  background: linear-gradient(135deg, #021546 0%, #0F60D1 100%);
}

/* texto da direita */
.nx-topbar__secure{
  color: rgba(255,255,255,.9);
}

/* burger menu branco */
.nx-burger span{
  background: #ffffff;
}

/* divisor inferior */
.nx-topbar__divider{
  background: rgba(255,255,255,.18);
}

/* botão close do drawer (se quiser manter coerência) */
.nx-drawer__close{
  border-color: rgba(2,21,70,.2);
}

/* drawer itens continuam escuros (ok) */
.hero-clean__bullets{
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #021546;
  margin-bottom: 18px;
  opacity: .9;
}

.hero-clean__bullets span{
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,96,209,.05);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Mobile */
@media (max-width: 520px){
  .hero-clean__bullets{
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
  }
}
.hero-clean__bullets{
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(2,21,70,.65); /* cinza azulado */
  margin-bottom: 18px;
}

/* remove qualquer fundo */
.hero-clean__bullets span{
  background: none;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mobile */
@media (max-width: 520px){
  .hero-clean__bullets{
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
  }
}
.hero-clean__bullets span + span::before{
  content: "•";
  margin: 0 10px;
  color: rgba(2,21,70,.4);
}
.hero-clean__bullets{
  opacity: .75;
}
.proof{
  padding: 0px 16px 60px;
  background: #fff;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.proof__title{
  font-size: 28px;
  font-weight: 900;
  color: #021546;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.proof__subtitle{
  font-size: 14px;
  color: rgba(2,21,70,.65);
  margin-bottom: 28px;
}

.proof__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 22px;
}

.proof__grid img{
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* bullets */
.proof__bullets{
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(2,21,70,.65);
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px){
  .proof__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proof__title{
    font-size: 22px;
  }
}
.proof__title{
  font-size: 25px;
  font-weight: 900;
  color: #021546; /* cor normal do texto */
}

.proof__title .highlight{
  color: #0F60D1; /* azul do tema Miller Motors */
}
.video34{
  padding: 0px 16px 0px;
  text-align: center;
  background: #fff;
}

.video34__title{
  font-size: 26px;
  font-weight: 900;
  color: #021546;
  margin: 0 0 6px;
}

.video34__subtitle{
  font-size: 14px;
  color: rgba(2,21,70,.65);
  margin: 0 0 26px;
}

/* frame 3:4 */
.video34__frame{
  width: min(420px, 92vw);
  margin: 0 auto 26px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1633;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  border: 1px solid rgba(2,21,70,.08);
}

.video34__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA */
.video34__cta{
  display: inline-block;
  padding: 14px 30px;
  border-radius: 14px;
  background: #0F60D1;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 26px rgba(15,96,209,.28);
  transition: .2s ease;
}

.video34__cta:hover{
  background: #021546;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.video34__hint{
  margin: -10px 0 22px;
  font-size: 12px;
  color: rgba(2,21,70,.55);
}
.video34__title{
  font-size: 26px;
  font-weight: 900;
  color: #021546;
}

.video34__title .highlight{
  color: #0F60D1; /* azul do tema */
}
.section-divider{
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #021546, #0F60D1, #49BDF5);
  border-radius: 999px;
  margin: 0 auto 26px;
}
/* ===== BENEFÍCIOS (checklist animado) ===== */
.video34__checks{
  width: min(520px, 92vw);
  margin: 22px auto 0;
  display: grid;
  gap: 12px;
}

.video34__check{
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(2,21,70,.03);
  border: 1px solid rgba(2,21,70,.08);

  /* estado inicial (antes de aparecer) */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

.ck-ico{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;

  background: rgba(15,96,209,.12);
  color: #0F60D1;
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}

.ck-txt{
  color: rgba(2,21,70,.82);
  font-size: 14px;
  line-height: 1.35;
}

.ck-txt b{
  color: #021546;
}

/* quando ativa (apareceu) */
.video34__checks.is-visible .video34__check{
  opacity: 1;
  transform: translateY(0);
}

/* cascata (um por vez) */
.video34__checks.is-visible .video34__check:nth-child(1){ transition-delay: .05s; }
.video34__checks.is-visible .video34__check:nth-child(2){ transition-delay: .15s; }
.video34__checks.is-visible .video34__check:nth-child(3){ transition-delay: .25s; }
.video34__checks.is-visible .video34__check:nth-child(4){ transition-delay: .35s; }
.video34__checks.is-visible .video34__check:nth-child(5){ transition-delay: .45s; }

/* acessibilidade: reduz animações se usuário preferir */
@media (prefers-reduced-motion: reduce){
  .video34__check{
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.section-divider{
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #021546, #0F60D1, #49BDF5);
  border-radius: 999px;

  /* folga */
  margin: 24px auto 26px;  /* cima | laterais | baixo */
}
.proof__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width:768px){
  .proof__grid{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .proof__grid img{
    min-width: 80%;
    scroll-snap-align: center;
  }
}
.video360{
  padding: 0px 16px 0px;
  text-align: center;
  background: #fff;
}

.section-divider{
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #021546, #0F60D1, #49BDF5);
  border-radius: 999px;
  margin: 18px auto 26px;
}

.video360__title{
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #021546;
}

.video360__title .hl{ color: #0F60D1; }

.video360__sub{
  margin: 0 auto 22px;
  max-width: 520px;
  font-size: 14px;
  color: rgba(2,21,70,.65);
  line-height: 1.4;
}

/* 3:4 premium */
.video360__frame{
  width: min(420px, 92vw);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1633;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  border: 1px solid rgba(2,21,70,.08);
}

.video360__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video360__frame{
  width: min(420px, 92vw);
  aspect-ratio: 1 / 1;   /* 🔥 agora é 1:1 */
  margin: 0 auto;
  overflow: hidden;
  background: transparent; /* sem fundo */
  border: none;            /* sem borda */
  box-shadow: none;        /* sem sombra */
}

.video360__video{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* preenche o quadrado */
  display: block;
}
.ports{
  padding: 56px 16px 66px;
  background: #fff;
  text-align: center;
}

.ports__title{
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #021546;
}

.ports__title span{
  color: #0F60D1;
}

.ports__sub{
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 14px;
  color: rgba(2,21,70,.65);
}

.ports__wrap{
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

/* lista */
.ports__list{
  display: grid;
  gap: 14px;
  text-align: left;
}

.ports__item{
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15,96,209,.05);
  border: 1px solid rgba(15,96,209,.12);
  font-size: 14px;
  font-weight: 700;
  color: #021546;
}

/* imagem */
.ports__image img{
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

/* mobile */
@media (max-width: 820px){
  .ports__wrap{
    grid-template-columns: 1fr;
  }

  .ports__list{
    order: 2;
  }

  .ports__image{
    order: 1;
  }
}
/* ===== CTA LAYOUT ===== */
.cta{
  background:#fff;
  padding: 56px 16px 80px;
}

.cta__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

/* ===== GALERIA ===== */
.cta-gallery__main{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.cta-gallery__main img{
  width: 100%;
  height: auto;
  display:block;
}

.cta-gallery__thumbs{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.cta-thumb{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(2,21,70,.10);
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
  background:#fff;
}

.cta-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.cta-thumb.is-active{
  border-color: #0F60D1;
  transform: translateY(-1px);
}

/* ===== BOX ===== */
.cta-box{
  border: 1px solid rgba(2,21,70,.08);
  border-radius: 18px;
  padding: 18px 16px 16px;
  background: #fff;
}

.cta-box__title{
  margin: 2px 0 6px;
  font-size: 22px;
  font-weight: 900;
  color: #021546;
  letter-spacing: -0.4px;
}

.cta-box__title span{ color:#0F60D1; }

.cta-box__sub{
  margin: 0 0 14px;
  font-size: 13.5px;
  color: rgba(2,21,70,.65);
  line-height: 1.35;
}

/* ===== VARIANT BUTTONS ===== */
.cta-variants{
  display:grid;
  gap: 10px;
  margin: 10px 0 14px;
}

.cta-variant{
  text-align:left;
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,21,70,.10);
  background: rgba(15,96,209,.04);
  cursor:pointer;
  transition: .15s ease;
}

.cta-variant__name{
  display:block;
  font-weight: 900;
  color:#021546;
  font-size: 14px;
}

.cta-variant__desc{
  display:block;
  margin-top: 2px;
  font-size: 12.5px;
  color: rgba(2,21,70,.65);
}

.cta-variant.is-active{
  background: rgba(15,96,209,.08);
  border-color: rgba(15,96,209,.35);
}

/* ===== PRICE ===== */
.cta-price{
  border-top: 1px solid rgba(2,21,70,.08);
  padding-top: 12px;
  margin-top: 8px;
}

.cta-price__row{
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content: space-between;
}

.cta-price__compare{
  font-size: 13px;
  color: rgba(2,21,70,.55);
  text-decoration: line-through;
}

.cta-price__off{
  font-size: 12px;
  font-weight: 900;
  color: #E11D48; /* vermelho destaque */
  letter-spacing: .4px;
}

.cta-price__sale{
  margin: 6px 0 6px;
  font-size: 28px;
  font-weight: 1000;
  color:#021546;
}

.cta-price__install{
  font-size: 13px;
  color: rgba(2,21,70,.70);
}

/* ===== VEHICLE PANEL ===== */
.veh-panel{
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(2,21,70,.03);
  border: 1px solid rgba(2,21,70,.08);
}

.veh-panel__title{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color:#021546;
}
.veh-panel__title span{ color:#0F60D1; }

.veh-panel__hint{
  margin: 4px 0 10px;
  font-size: 12.5px;
  color: rgba(2,21,70,.62);
}

.veh-grid{
  display:grid;
  gap: 10px;
}

.veh-field label{
  display:block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(2,21,70,.72);
  margin-bottom: 6px;
}

.veh-field select{
  width:100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2,21,70,.12);
  background:#fff;
  padding: 0 12px;
  font-weight: 700;
  color:#021546;
  outline:none;
}

.veh-summary{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,96,209,.07);
  border: 1px solid rgba(15,96,209,.16);
  color:#021546;
  font-weight: 800;
  font-size: 13px;
}

/* ===== PERKS ===== */
.cta-perks{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}

.mx-perk{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,21,70,.08);
  background: #fff;
}

.mx-perk__ico{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color:#0F60D1;
  background: rgba(15,96,209,.10);
  flex: 0 0 28px;
}

.mx-perk__ico svg{ width: 16px; height: 16px; }

.mx-perk__txt{
  margin: 0;
  font-size: 12.8px;
  color: rgba(2,21,70,.72);
  line-height: 1.25;
}

.mx-perk__txt b{ color:#021546; }

/* ===== CTA BUTTON ===== */
.cta-btn{
  margin-top: 14px;
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 16px;
  cursor:pointer;
  background:#0F60D1;
  color:#fff;
  font-weight: 1000;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(15,96,209,.28);
  transition: .18s ease;
}

.cta-btn:hover{
  background:#021546;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}

.cta-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(2,21,70,.55);
  text-align:center;
}

/* ===== MODAL ===== */
.review{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.review__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .18s ease;
}

.review__panel{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) translateY(10px);
  width: min(520px, 92vw);
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(2,21,70,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  overflow:hidden;
}

.review__head{
  padding: 14px 14px 10px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(2,21,70,.08);
}

.review__kicker{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  color: rgba(2,21,70,.55);
  text-transform: uppercase;
}

.review__title{
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 1000;
  color:#021546;
}

.review__close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(2,21,70,.10);
  background:#fff;
  cursor:pointer;
  font-size: 22px;
  line-height: 0;
  color:#021546;
}

.review__content{
  padding: 14px;
  display:grid;
  gap: 10px;
}

.review__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(2,21,70,.03);
  border: 1px solid rgba(2,21,70,.08);
}

.review__row--soft{
  background: rgba(15,96,209,.05);
  border-color: rgba(15,96,209,.12);
}

.review__label{
  font-size: 12px;
  font-weight: 900;
  color: rgba(2,21,70,.70);
}

.review__value{
  font-size: 13px;
  font-weight: 1000;
  color:#021546;
  text-align:right;
}

.review__foot{
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(2,21,70,.08);
  display:grid;
  gap: 10px;
}

.review__pay{
  height: 48px;
  border: 0;
  border-radius: 16px;
  background:#0F60D1;
  color:#fff;
  font-weight: 1000;
  cursor:pointer;
}

.review__back{
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(2,21,70,.12);
  background:#fff;
  font-weight: 900;
  color:#021546;
  cursor:pointer;
}

.review.is-open{ pointer-events:auto; }
.review.is-open .review__overlay{ opacity:1; }
.review.is-open .review__panel{ opacity:1; transform: translate(-50%,-50%) translateY(0); }

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){
  .cta__wrap{ grid-template-columns: 1fr; }
}
/* CTA nunca pode estourar a tela */
.cta, .cta * { box-sizing: border-box; }
.cta { overflow: hidden; } /* esconde só se sobrar 1px */

/* wrap tem que respeitar o padding da section */
.cta__wrap{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;            /* importante: sem padding aqui */
  min-width: 0;          /* 🔥 evita grid “empurrar” */
}

/* colunas do grid não podem ter min-width implícito */
.cta__wrap > *{ min-width: 0; }

/* thumbs não podem “forçar” largura */
.cta-gallery__thumbs{
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

/* thumbs sempre encolhem certo */
.cta-thumb{ flex: 0 0 auto; }
@media (max-width: 980px){
  .cta{ padding: 40px 16px 70px; }

  .cta__wrap{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .cta-gallery,
  .cta-box{
    width: 100%;
    max-width: 100%;
  }
}
.cta-gallery__main{
  width: 100%;
  aspect-ratio: 1 / 1;   /* 🔥 trava proporção */
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.cta-gallery__main img{
  width: 100%;
  height: 100%;
  object-fit: cover;    /* preenche sem distorcer */
  display: block;
}
/* =========================
   VERDE (preço + CTAs)
   ========================= */
:root{
  --green: #16A34A;        /* verde principal */
  --green-dark: #0F7A36;   /* hover */
  --green-soft: rgba(22,163,74,.12);
}

/* PREÇO DE VENDA (verde) */
.cta-price__sale{
  color: var(--green);
}

/* BOTÃO CTA (verde) */
.cta-btn{
  background: var(--green);
  box-shadow: 0 12px 28px rgba(22,163,74,.26);
}
.cta-btn:hover{
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

/* BOTÃO PAGAMENTO DO MODAL (verde) */
.review__pay{
  background: var(--green);
  box-shadow: 0 12px 28px rgba(22,163,74,.26);
}
.review__pay:hover{
  background: var(--green-dark);
}

/* =========================
   DESCONTO estilo “tag” (igual anexo)
   ========================= */

/* linha do compare + badge */
.cta-price__row{
  align-items: center;
}

/* badge “↓ 61% OFF” */
.cta-price__off{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #E11D48;
  color: var(--nx-white);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
}

/* setinha pra ficar igual ao anexo */
.cta-price__off::before{
  content: "↓";
  font-weight: 1000;
  line-height: 1;
}

/* =========================
   ECONOMIA (boa ideia ✅)
   ========================= */
.cta-economy{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

/* ===== THUMB 1:1 — preenchimento total ===== */

.cta-thumb{
  width: 68px;
  aspect-ratio: 1 / 1;

  border-radius: 12px;
  overflow: hidden;

  border: 2px solid rgba(2,21,70,.10);
  flex: 0 0 auto;

  background: #000; /* fallback — nunca aparece */
  padding: 0;        /* 🔥 remove qualquer espaço interno */
}

/* imagem ocupa tudo */
.cta-thumb img{
  width: 100%;
  height: 100%;

  object-fit: cover;     /* zoom automático */
  object-position: center;

  display: block;
}
/* ===== CTA INTRO ===== */

.cta-intro{
  text-align: center;
  padding: 0px 16px 0px;
  background: #fff;
}

.cta-intro__divider{
  width: 90px;
  height: 3px;
  margin: 0 auto 20px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #021546,
    #0F60D1,
    #49BDF5
  );
}

.cta-intro__title{
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
  color: #021546;
}

.cta-intro__title span{
  color: #0F60D1;
}

.cta-intro__sub{
  margin: 0 auto;
  max-width: 420px;
  font-size: 14px;
  color: rgba(2,21,70,.65);
}
/* ===== PREÇO DE VENDA (verde + pulse sutil) ===== */
:root{
  --green:#16a34a;         /* verde principal */
  --green-soft:#22c55e;    /* verde brilho */
  --blue-soft: rgba(15,96,209,.35); /* azul tema (bem leve) */
}

#priceSale{
  color: var(--green);
  font-weight: 1000;
  letter-spacing: -0.3px;
  display: inline-block;
  transform-origin: center;
  animation: pricePop 2.2s ease-in-out infinite;
  text-shadow: 0 10px 26px rgba(34,197,94,.15);
}

@keyframes pricePop{
  0%,100%{ transform: translateY(0) scale(1); filter: saturate(1); }
  50%{ transform: translateY(-1px) scale(1.02); filter: saturate(1.15); }
}

@media (prefers-reduced-motion: reduce){
  #priceSale{ animation: none; }
}
/* ===== BOTÕES (CTA + PAGAMENTO) ===== */
.cta-btn,
.review__pay{
  position: relative;
  overflow: hidden;         /* necessário pro shine */
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow:
    0 14px 34px rgba(34,197,94,.25),
    0 10px 22px rgba(0,0,0,.12);
  transform: translateZ(0);
  animation: btnPulse 1.9s ease-in-out infinite;
}

/* Pulse suave */
@keyframes btnPulse{
  0%,100%{
    transform: translateY(0) scale(1);
    box-shadow:
      0 14px 34px rgba(34,197,94,.22),
      0 10px 22px rgba(0,0,0,.12);
  }
  50%{
    transform: translateY(-1px) scale(1.015);
    box-shadow:
      0 18px 40px rgba(34,197,94,.30),
      0 14px 28px rgba(0,0,0,.14);
  }
}

/* Shine passando por cima */
.cta-btn::before,
.review__pay::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.25) 45%,
    rgba(255,255,255,.06) 55%,
    transparent 100%
  );
  transform: translateX(-60%) rotate(8deg);
  animation: btnShine 2.6s ease-in-out infinite;
  pointer-events:none;
}

@keyframes btnShine{
  0%,55%{ transform: translateX(-70%) rotate(8deg); opacity:.0; }
  60%{ opacity: 1; }
  100%{ transform: translateX(70%) rotate(8deg); opacity: 0; }
}

/* ===== LINHA “RODANDO” EM VOLTA (orbit ring) =====
   - verde claro + um toque azul translúcido (fica lindo no verde)
*/
.cta-btn::after,
.review__pay::after{
  content:"";
  position:absolute;
  inset:-2px;                 /* cria a borda */
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(255,255,255,.00) 18%,
    rgba(255,255,255,.35) 22%,
    var(--green-soft) 28%,
    rgba(255,255,255,.20) 34%,
    transparent 40%,
    transparent 55%,
    var(--blue-soft) 68%,
    transparent 80%,
    transparent 100%
  );

  -webkit-mask: 
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: ringSpin 1.8s linear infinite;
  pointer-events:none;
  opacity: .95;
}

@keyframes ringSpin{
  to{ transform: rotate(360deg); }
}

/* Hover mais forte (opcional premium) */
.cta-btn:hover,
.review__pay:hover{
  filter: brightness(1.02) saturate(1.05);
  transform: translateY(-2px) scale(1.02);
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce){
  .cta-btn, .review__pay{ animation: none; }
  .cta-btn::before, .review__pay::before{ animation: none; }
  .cta-btn::after, .review__pay::after{ animation: none; }
}
.cta-btn,
.review__pay{
  color:#fff;
  font-weight: 1000;
  letter-spacing: .2px;
}
/* ===== MODAL — tipografia refinada ===== */

.review__title{
  font-size: 16px;
  font-weight: 800; /* antes tava pesado demais */
  letter-spacing: -0.2px;
  color:#021546;
}

/* labels (lado esquerdo) */
.review__label{
  font-size: 12px;
  font-weight: 600; /* médio */
  color: rgba(2,21,70,.65);
}

/* valores (lado direito — destaque) */
.review__value{
  font-size: 13.5px;
  font-weight: 600; /* destaque sem exagero */
  color:#021546;
}

/* rows */
.review__row{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(2,21,70,.03);
  border: 1px solid rgba(2,21,70,.06);
}

/* kicker (texto pequeno superior) */
.review__kicker{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(2,21,70,.5);
}

/* botão fechar */
.review__close{
  font-weight: 500;
  opacity: .7;
}

.review__close:hover{
  opacity: 1;
}
/* ===== FRETE / PRAZO ===== */

.nxShip{
  padding: 14px 16px;
  margin: 16px auto;

  width: min(520px, 94vw);

  background: linear-gradient(
    135deg,
    rgba(15,96,209,.06),
    rgba(73,189,245,.05)
  );

  border: 1px solid rgba(2,21,70,.08);
  border-radius: 16px;

  box-shadow: 0 8px 22px rgba(0,0,0,.06);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* layout */
.nxShip__row{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* logo */
.nxShip__logo{
  width: 48px;
  height: auto;
  flex-shrink: 0;

  filter: drop-shadow(0 3px 6px rgba(0,0,0,.12));
}

/* textos */
.nxShip__txt{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* linha principal */
.nxShip__line1{
  font-size: 14px;
  color: #021546;

  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

/* destaque frete grátis */
.nxShip__free{
  color: #16A34A;
  font-weight: 800;
}

/* cidade */
.nxShip__city{
  font-weight: 700;
  color: #0F60D1;
}

/* texto secundário */
.nxShip__line2{
  font-size: 12.5px;
  color: rgba(2,21,70,.65);
}

/* mobile refinado */
@media (max-width: 480px){

  .nxShip{
    padding: 12px;
  }

  .nxShip__logo{
    width: 40px;
  }

  .nxShip__line1{
    font-size: 13px;
  }

  .nxShip__line2{
    font-size: 12px;
  }

}

/* ===== CTA — espaçamento corrigido ===== */

.cta{
  background:#fff;

  padding-top: 40px;
  padding-bottom: 20px; /* antes tava enorme */
}
/* ===== SAFE MOBILE WIDTH FIX ===== */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

/* evita qualquer section estourar */
section{
  width: 100%;
  max-width: 100%;
}
/* ===== CONTADOR SEGURO MOBILE ===== */

.nx-live{
  width: 100%;
  max-width: 100%;
  padding: 18px 16px;
  background: #fff;
}

.nx-live__wrap{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;

  padding: 14px;

  border-radius: 16px;
  border: 1px solid rgba(2,21,70,.10);
  background: #fff;

  overflow: hidden; /* 🔥 impede expansão */
}

.nx-live__label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(2,21,70,.6);
}

.nx-live__row{
  margin-top: 6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 8px;
}

.nx-live__num{
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color:#021546;

  white-space: nowrap; /* 🔥 evita quebrar layout */
}

.nx-live__plus{
  color:#0F60D1;
}

.nx-live__tag{
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;

  border: 1px solid rgba(2,21,70,.1);
  background: rgba(2,21,70,.03);

  white-space: nowrap;
}

.nx-live__sub{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(2,21,70,.55);
}
/* ===== DESCRIÇÃO DO PRODUTO (preview + ver mais) ===== */
.pd{
  background:#fff;
  padding: 14px 16px 8px; /* fica “encaixado” entre correios e contador */
}

.pd__wrap{
  width: min(920px, 92vw);
  margin: 0 auto;
}

.pd__title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color:#021546;
}

.pd__box{
  border: 1px solid rgba(2,21,70,.10);
  border-radius: 16px;
  background: #fff;
  padding: 12px 12px 10px;
  overflow: hidden;
}

.pd__text{
  color: rgba(2,21,70,.78);
  font-size: 13.5px;
  line-height: 1.6;
}

.pd__text p{
  margin: 0 0 10px;
}

.pd__text b{
  color:#021546;
}

.pd__text i{
  color: rgba(2,21,70,.55);
}

.pd__text.is-collapsed{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; /* ✅ 5 linhas */
  overflow: hidden;
}

.pd__fade{
  position: relative;
}

.pd__fade::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events:none;
  opacity: 1;
  transition: opacity .18s ease;
}

.pd__text:not(.is-collapsed) + .pd__toggle{ margin-top: 8px; }
.pd__text:not(.is-collapsed) ~ .pd__fade::after{ opacity: 0; }

.pd__toggle{
  width: 100%;
  height: 44px;
  margin-top: 6px;
  border-radius: 14px;
  border: 1px solid rgba(2,21,70,.10);
  background: rgba(2,21,70,.03);
  color:#021546;
  font-weight: 900;
  cursor: pointer;
  transition: .18s ease;
}

.pd__toggle:hover{
  background: rgba(15,96,209,.06);
  border-color: rgba(15,96,209,.20);
}

/* mobile refinado */
@media (max-width: 520px){
  .pd{ padding: 12px 12px 6px; }
  .pd__title{ font-size: 15px; }
}
/* ===== DESCRIÇÃO — NEGRITO PREMIUM ===== */

.pd__text b{
  font-weight: 600;     /* antes era 900 */
  color: #021546;
  letter-spacing: 0.1px;
}

/* título mais equilibrado */
.pd__title{
  font-weight: 700;
}
/* ===== AVALIAÇÕES ===== */
.rvw{
  background:#fff;
  padding: 46px 16px 56px;
}

.rvw__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.rvw__title{
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color:#021546;
}

.rvw__sub{
  margin: 0 auto 18px;
  max-width: 560px;
  font-size: 14px;
  color: rgba(2,21,70,.65);
}

/* Rail */
.rvw__rail{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.rvw__nav{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2,21,70,.12);
  background:#fff;
  color:#021546;
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .18s ease;
}
.rvw__nav:hover{ transform: translateY(-1px); border-color: rgba(15,96,209,.35); }
.rvw__nav:active{ transform: translateY(0); }

/* Track */
.rvw__track{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px;
  scrollbar-width: none;
}
.rvw__track::-webkit-scrollbar{ display:none; }

.rvwCard{
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(360px, 86vw);
  text-align: left;

  border-radius: 18px;
  border: 1px solid rgba(2,21,70,.10);
  background:#fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  padding: 14px;
}

.rvwCard__head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.rvwCard__avatar{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(15,96,209,.20);
}

.rvwCard__meta{ min-width: 0; }

.rvwCard__nameRow{
  display:flex;
  align-items:center;
  gap: 8px;
}

.rvwCard__name{
  font-weight: 900;
  color:#021546;
  font-size: 14px;
  line-height: 1.1;
}

.rvwCard__verified{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(15,96,209,.12);
  color: #0F60D1;
  font-weight: 900;
  font-size: 12px;
}

.rvwCard__stars{
  margin-top: 2px;
  color: #FFB200; /* dourado das estrelas */
  font-size: 14px;
  letter-spacing: .8px;
}

.rvwCard__text{
  margin: 0 0 12px;
  color: rgba(2,21,70,.78);
  font-size: 13.5px;
  line-height: 1.45;
}

/* foto do produto 1:1 */
.rvwCard__prod{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(2,21,70,.08);
  background:#fff;
  aspect-ratio: 1 / 1;
}

.rvwCard__prod img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* preenche sem borda */
  display:block;
}

/* dots */
.rvw__dots{
  margin-top: 14px;
  display:flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rvwDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(2,21,70,.18);
  cursor: pointer;
}
.rvwDot.is-active{
  width: 18px;
  background: rgba(15,96,209,.85);
}

/* Mobile: esconde setas (fica só swipe) */
@media (max-width: 820px){
  .rvw__rail{ grid-template-columns: 1fr; }
  .rvw__nav{ display:none; }
}
/* ===== BLOCO COMPRA SEGURA / GARANTIA ===== */
.secure{
  padding: 22px 16px 26px;
  background: #fff;
}

.secure__wrap{
  width: min(920px, 92vw);
  margin: 0 auto;
  text-align: left;
}

/* pill */
.secure__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #021546;
  background: rgba(2,21,70,.06);
  border: 1px solid rgba(2,21,70,.10);
}

.secure__pillDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0F60D1;
  box-shadow: 0 0 0 4px rgba(15,96,209,.12);
}

/* title/sub */
.secure__title{
  margin: 10px 0 6px;
  font-size: 22px;
  font-weight: 900; /* menos “pesado” que 1000 */
  letter-spacing: -0.4px;
  color: #021546;
}

.secure__sub{
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(2,21,70,.65);
}

/* list */
.secure__list{
  display: grid;
  gap: 12px;
}

.secure__item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(2,21,70,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.secure__ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,96,209,.08);
  border: 1px solid rgba(15,96,209,.14);
}

.secure__ico img{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* text */
.secure__h{
  font-size: 14px;
  font-weight: 800;
  color: #021546;
  margin-top: 1px;
}

.secure__p{
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(2,21,70,.70);
}

.secure__p b{
  font-weight: 800;
  color: #021546;
}

/* mobile refinements */
@media (max-width: 520px){
  .secure__title{ font-size: 20px; }
  .secure__item{ padding: 11px 11px; }
}
/* ===== FAQ ===== */
.faq{
  padding: 26px 16px 34px;
  background: #fff;
}

.faq__wrap{
  width: min(920px, 92vw);
  margin: 0 auto;
}

.faq__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #021546;
  background: rgba(2,21,70,.06);
  border: 1px solid rgba(2,21,70,.10);
}

.faq__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0F60D1;
  box-shadow: 0 0 0 4px rgba(15,96,209,.12);
}

.faq__title{
  margin: 10px 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #021546;
}

.faq__sub{
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(2,21,70,.65);
}

.faq__list{
  display: grid;
  gap: 10px;
}

/* item */
.faq__item{
  border: 1px solid rgba(2,21,70,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  overflow: hidden;
}

/* remove marcador padrão */
.faq__item summary{
  list-style: none;
}
.faq__item summary::-webkit-details-marker{
  display: none;
}

/* pergunta */
.faq__q{
  cursor: pointer;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 10px;
  align-items: center;
  color: #021546;
  font-weight: 800;
  font-size: 14px;
  user-select: none;
  background: linear-gradient(180deg, rgba(15,96,209,.06), rgba(15,96,209,0));
}

.faq__q:hover{
  background: linear-gradient(180deg, rgba(15,96,209,.10), rgba(15,96,209,0));
}

/* ícone + / - */
.faq__icon{
  width: 18px;
  height: 18px;
  position: relative;
  justify-self: end;
  opacity: .9;
}
.faq__icon::before,
.faq__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(2,21,70,.55);
  transform: translate(-50%,-50%);
  border-radius: 99px;
}
.faq__icon::after{
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .18s ease, opacity .18s ease;
}

/* resposta */
.faq__a{
  padding: 0 14px 14px;
  color: rgba(2,21,70,.72);
  font-size: 13.5px;
  line-height: 1.45;
}

.faq__a b{
  font-weight: 800;
  color: #021546;
}

/* animação suave */
.faq__item[open] .faq__a{
  animation: faqFade .18s ease both;
}
@keyframes faqFade{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* quando abre: vira “–” */
.faq__item[open] .faq__icon::after{
  transform: translate(-50%,-50%) rotate(0deg);
  opacity: 0;
}

/* mobile */
@media (max-width: 520px){
  .faq__title{ font-size: 20px; }
  .faq__q{ font-size: 13.5px; }
}
.nx-burger{
  transform: translateY(-15px);
}
.nx-topbar__logo{
  transform: translateY(-12px);
}
.nx-topbar__secure{
  transform: translateY(-14px);
}
:root{ --header-h: 72px; }  /* ajuste esse valor */

.nx-topbar{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
}

body{
  padding-top: var(--header-h);
}
.hero-clean__cta{
  animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse{
  0%{
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
  }

  50%{
    transform: scale(1.04);
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
  }

  100%{
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
  }
}
.hero-clean__cta{
  position: relative;
  overflow: hidden;
}

.hero-clean__cta::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );

  animation: ctaShine 2.8s linear infinite;
}

@keyframes ctaShine{
  to{
    left: 120%;
  }
}
.hero-clean__note{
  margin-top: 10px;

  font-size: 11.5px;
  font-weight: 500;

  color: rgba(0,0,0,.45); /* cinza suave */
  text-align: center;

  letter-spacing: .4px;
}
.hero-clean__note{
  margin-top: 10px;

  font-size: 11px;
  font-weight: 400;

  color: rgba(2,21,70,.45);
  text-align: center;

  letter-spacing: .6px;
  text-transform: uppercase;
}
/* ===== BOTÃO — EFEITO BRILHO PREMIUM ===== */

.btn-shine{
  position: relative;
  overflow: hidden;
}

/* faixa de luz */
.btn-shine::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );

  animation: btnShine 2.8s linear infinite;
}

@keyframes btnShine{
  to{
    left: 120%;
  }
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .btn-shine::after{
    display: none;
  }
}
/* ===== BOTÃO — BRILHO PREMIUM ===== */

.btn-shine{
  position: relative;
  overflow: hidden;
}

/* faixa de luz */
.btn-shine::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );

  animation: btnShine 2.8s linear infinite;
}

@keyframes btnShine{
  to{
    left: 120%;
  }
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .btn-shine::after{
    display: none;
  }
}
.cta-price__row{
  display: flex;
  align-items: center;
  gap: 6px; /* aproxima os elementos */
}

/* selo desconto */
.cta-price__off{
  font-size: 10.5px;
  font-weight: 600;

  padding: 3px 8px;

  border-radius: 999px;

  background: #e63946;
  color: #fff;

  letter-spacing: .3px;

  line-height: 1;
}
.cta-price__row{
  display: flex;
  align-items: center;
  justify-content: flex-start; /* impede espalhar */
  gap: 4px;
}

/* puxa o selo pra esquerda */
.cta-price__off{
  margin-left: 12px;

  font-size: 10.5px;
  font-weight: 600;

  padding: 3px 8px;
  border-radius: 999px;

  background: #e63946;
  color: #fff;

  line-height: 1;
}
/* trava scroll */
body.nx-lock{
  overflow: hidden;
  touch-action: none;
}

/* ===== MINI CART (igual anexo) ===== */
.miniCart{
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.miniCart.is-open{ pointer-events:auto; }

.miniCart__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.40);
  opacity: 0;
  transition: opacity .18s ease;
}
.miniCart.is-open .miniCart__overlay{ opacity: 1; }

.miniCart__panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width: min(360px, 92vw);
  background:#fff;
  box-shadow: -24px 0 60px rgba(0,0,0,.20);
  transform: translateX(110%);
  transition: transform .22s ease;
  display:flex;
  flex-direction: column;
}
.miniCart.is-open .miniCart__panel{ transform: translateX(0); }

/* header */
.miniCart__head{
  height: 54px;
  padding: 0 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.miniCart__headLeft{
  display:flex;
  align-items:center;
  gap: 10px;
}

.miniCart__bag{
  width: 26px;
  height: 26px;
  color: #111827;
  display:grid;
  place-items:center;
}
.miniCart__bag svg{ width: 24px; height: 24px; }

.miniCart__items{
  font-size: 14px;
  font-weight: 700;
  color:#111827;
}

.miniCart__close{
  width: 44px;
  height: 44px;
  border:0;
  background: transparent;
  font-size: 28px;
  line-height: 0;
  color:#111827;
  cursor:pointer;
}

/* body */
.miniCart__body{
  padding: 12px 14px 16px;
  overflow: auto;
}

/* banner frete */
.miniCart__banner{
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.18);
  color: #15803d;
  font-weight: 800;
  text-align:center;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* card produto */
.miniCart__card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 12px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background:#fff;
}

.miniCart__thumb{
  width: 74px;
  height: 74px;
  border-radius: 12px;
  background: #f3f4f6;
  object-fit: cover;
  flex: 0 0 74px;
}

.miniCart__info{ flex:1; min-width: 0; }

.miniCart__title{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  color:#111827;
  line-height: 1.25;
  text-transform: uppercase;
}

.miniCart__meta{
  font-size: 12px;
  color: rgba(17,24,39,.75);
  line-height: 1.35;
  display:grid;
  gap: 2px;
  margin-bottom: 10px;
}
.miniCart__meta b{
  font-weight: 700; /* menos pesado */
}

.miniCart__prices{
  display:flex;
  align-items: baseline;
  gap: 10px;
}

.miniCart__sale{
  font-weight: 900;
  color: #0ea5e9; /* azul do anexo */
  font-size: 15px;
}

.miniCart__compare{
  font-size: 13px;
  color: rgba(17,24,39,.45);
  text-decoration: line-through;
}

/* total */
.miniCart__total{
  margin-top: 12px;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 12px;
}

.miniCart__totalRow{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 15px;
  color:#111827;
}
.miniCart__totalRow b{
  font-size: 18px;
  font-weight: 900;
}

.miniCart__saved{
  margin-top: 6px;
  text-align:center;
  font-size: 14px;
  color: #16A34A;
  font-weight: 700;
}
.miniCart__saved b{ font-weight: 900; }

/* botões */
.miniCart__btn{
  width: 100%;
  height: 54px;
  border-radius: 999px; /* igual anexo */
  border: 2px solid transparent;
  font-weight: 900;
  cursor:pointer;
  margin-top: 12px;
  font-size: 16px;
}

.miniCart__btn--primary{
  background: #60a5fa; /* azul do anexo */
  color: #fff;
  box-shadow: 0 16px 34px rgba(96,165,250,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.miniCart__btn--primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 40px rgba(96,165,250,.40);
}
/* trava scroll do site quando drawer abre */
body.nx-lock { overflow: hidden; }

/* painel ocupa a altura toda do celular */
#nxCart .nxCart__panel{
  height: 100dvh;          /* pega altura real do mobile */
  display: flex;
  flex-direction: column;  /* body em cima, footer embaixo */
}

/* conteúdo do produto rola */
#nxCart .nxCart__body{
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* bloco TOTAL fica no final SEM borda branca embaixo */
#nxCart .nxCart__footer{
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(2,21,70,.10);
}
/* ======================================================
   DRAWER: força o bloco TOTAL a ficar no final (rodapé)
   ====================================================== */

/* quando abrir, trava o body */
body.nx-lock { overflow: hidden; }

/* overlay/painel (ajuste o seletor do seu drawer) */
#nxCart{ position: fixed; inset: 0; z-index: 9999; }

/* PAINEL precisa ser a “caixa” com altura do celular e flex coluna */
#nxCart .nxCart__panel{
  height: 100dvh;                 /* pega altura real do mobile */
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* header do drawer não encolhe */
#nxCart .nxCart__head{
  flex: 0 0 auto;
}

/* BODY rola e ocupa todo espaço restante */
#nxCart .nxCart__body{
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;           /* folga mínima */
}

/* FOOTER fica grudado no final SEM branco embaixo */
#nxCart .nxCart__footer{
  flex: 0 0 auto;
  margin-top: auto;               /* 🔥 isso empurra pro fim */
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid rgba(2,21,70,.10);
  padding: 12px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* ======================================================
   BOTÕES DO DRAWER
   ====================================================== */

/* Principal (verde) */
#nxCart .nxCart__btnPrimary{
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  background: #16A34A; /* verde */
  box-shadow: 0 14px 30px rgba(22,163,74,.28);
  transition: transform .16s ease, filter .16s ease;
}
#nxCart .nxCart__btnPrimary:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
}

/* Secundário (azul claro da paleta) */
#nxCart .nxCart__btnSecondary{
  width: 100%;
  height: 48px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  background: rgba(15,96,209,.10);
  border: 1px solid rgba(15,96,209,.25);
  color: #0F60D1;                 /* azul */
  transition: .16s ease;
}
#nxCart .nxCart__btnSecondary:hover{
  background: rgba(15,96,209,.14);
}

/* se tiver 2 botões, dá um espacinho */
#nxCart .nxCart__footer .nxCart__btnSecondary{
  margin-top: 10px;
}
/* trava scroll do site quando drawer abre */
body.nx-lock { overflow: hidden; }

/* painel ocupa a altura real do mobile */
.miniCart__panel{
  height: 100dvh;
  max-height: 100dvh;
  display:flex;
  flex-direction: column;
  background:#fff;
}

/* body rola */
.miniCart__body{
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px 16px;
}

/* footer colado no final */
.miniCart__footer{
  flex: 0 0 auto;
  margin-top: auto;               /* 🔥 empurra pro fim */
  position: sticky;
  bottom: 0;
  background:#fff;
  border-top: 1px solid rgba(0,0,0,.10);
  padding: 12px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* alinhar "Você economizou..." pra direita e bater com o total */
.miniCart__saved{
  margin-top: 6px;
  text-align: right;              /* ✅ vai pro lado direito */
  font-size: 14px;
  color: #16A34A;
  font-weight: 700;
}

/* opcional: deixar total alinhado e com espaçamento igual anexo */
.miniCart__totalRow{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 15px;
  color:#111827;
}
.miniCart__totalRow b{
  font-size: 18px;
  font-weight: 900;
}
.miniCart__bagSvg2{
  width: 22px;
  height: 22px;
  fill: #111827; /* cor do ícone */
  display: block;
}
.miniCart__meta{
  margin: 4px 0 8px;       /* menos espaço em cima/baixo */
  gap: 1px;                /* menos espaço entre linhas */
  line-height: 1.22;       /* linhas mais compactas */
  font-size: 12px;         /* um tiquinho menor */
}

.miniCart__meta b{
  font-weight: 650;        /* menos “pesado” */
}

/* se quiser ficar ainda mais compacto no mobile */
@media (max-width: 420px){
  .miniCart__meta{ font-size: 11.6px; }
}
.miniCart__footer{
  border-top: 0;                 /* remove a linha */
  /* ou se quiser bem suave:
  border-top: 1px solid rgba(0,0,0,.06);
  */
}
.miniCart__saved{
  margin-top: 4px;
  margin-bottom: 10px;           /* respiro antes do botão */
  text-align: right;
  font-size: 13.5px;
  line-height: 1.15;
}
.miniCart__panel{
  width: min(360px, 94vw);  /* um tico mais “cheio” */
}

.miniCart__body{
  padding: 12px 12px 14px;  /* menos padding lateral */
}

.miniCart__card{
  border-radius: 16px;
}
:root{
  --nx-blue: #0F60D1;          /* azul principal */
  --nx-blue-soft: rgba(15,96,209,.12);
}
.miniCart__sale{
  color: #16A34A;
  font-weight: 900;
}
:root{
  --nx-blue: #0F60D1;   /* sua paleta */
  --nx-dark: #021546;
}

.nxTrust{
  background:#fff;
  padding: 14px 16px;
}

.nxTrust__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nxTrust__track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* card */
.nxTrust__card{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(2,21,70,.10);
  background: #fff;
}

.nxTrust__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  color: var(--nx-blue); /* puxa o azul nos strokes currentColor */
  background: rgba(15,96,209,.08);
  flex: 0 0 34px;
}

.nxTrust__icon svg{
  width: 22px;
  height: 22px;
}

.nxTrust__txt h4{
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--nx-dark);
  letter-spacing: -.2px;
}

.nxTrust__txt p{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(2,21,70,.62);
}

/* dots (hidden no desktop) */
.nxTrust__dots{
  display:none;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.nxTrust__dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(2,21,70,.18);
}
.nxTrust__dot.is-active{
  width: 18px;
  background: var(--nx-blue);
}

/* MOBILE: vira carrossel */
@media (max-width: 860px){
  .nxTrust{
    padding: 10px 16px 14px;
  }

  .nxTrust__track{
    display:flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;

    /* evita “quebrar” e estourar largura */
    max-width: 100%;
  }

  .nxTrust__track::-webkit-scrollbar{ height: 0; }

  .nxTrust__card{
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .nxTrust__dots{ display:flex; }
}
/* CARD 1:1 (quadrado) */
.nxTrust__card{
  border-radius: 14px;
  border: 1px solid rgba(2,21,70,.10);
  background:#fff;

  /* 1:1 */
  aspect-ratio: 1 / 1;

  /* layout interno */
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

/* ajuste do ícone e textos para caber bonito no quadrado */
.nxTrust__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.nxTrust__txt h4{
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.nxTrust__txt p{
  font-size: 12.5px;
  line-height: 1.35;
  margin: 0;
}

/* DESKTOP: mantém 4 colunas */
.nxTrust__track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* MOBILE: 1 card por vez, quadrado, sem cortar */
@media (max-width: 860px){
  .nxTrust__track{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    max-width: 100%;
  }

  .nxTrust__track::-webkit-scrollbar{ height: 0; }

  .nxTrust__card{
    /* 1 por vez */
    flex: 0 0 auto;
    width: min(78vw, 320px);   /* largura do quadrado */
    aspect-ratio: 1 / 1;       /* 1:1 */
    scroll-snap-align: center;
  }

  .nxTrust__dots{ display:flex; }
}
.nxTrust__card{
  aspect-ratio: 1 / 1;

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* conteúdo sobe */

  gap: 6px;
  padding: 10px;

  border-radius: 12px;
  border: 1px solid rgba(2,21,70,.08);
  background:#fff;

  /* 🔥 limita altura visual */
  max-height: 150px;
}
.nxVideoCta{
  background:#fff;
  padding: 34px 16px 40px;
}

.nxVideoCta__wrap{
  width: min(860px, 92vw);
  margin: 0 auto;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.nxVideoCta__title{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color:#021546;
}

.nxVideoCta__title span{
  color:#0F60D1; /* seu azul da paleta */
}

.nxVideoCta__sub{
  margin: 0 0 14px;
  font-size: 13.5px;
  color: rgba(2,21,70,.62);
}

.nxVideoCta__frame{
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 3 / 2; /* 1536 x 1024 */
  border-radius: 16px;
  overflow: hidden;
  background: #0b1633;
  border: 1px solid rgba(2,21,70,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.nxVideoCta__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay play */
.nxVideoCta__play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  gap: 10px;
  border:0;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,.18), rgba(0,0,0,.55));
  cursor:pointer;
  transition: .18s ease;
}

.nxVideoCta__play:hover{
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,.12), rgba(0,0,0,.50));
}



.nxVideoCta__playTxt{
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  letter-spacing: .2px;
}

.nxVideoCta__hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(2,21,70,.55);
}
