/* scroll suave (âncoras tipo #secao) */
html{
  scroll-behavior: smooth;
}

:root{
  --vx-dark: #0b0b0c;  /* mesma cor do guia */
}

/* RESET GLOBAL */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  width:100%;
  height:100%;
  background:#000;   /* ← ESSENCIAL */
}

body{
  overflow-x:hidden;
}



/* ===============================
   NEXUS UI – STYLE (CLEAN)
   Reutilizável (footer + header)
   =============================== */

:root{
  /* Marca BLACK */
  --nx-brand: #000000;
  --nx-brand-2: #0b0b0b;

  --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,.35);

  --nx-radius: 14px;
  --nx-font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Header */
  --nx-head-bg: #000000;
  --nx-head-accent: #ffffff;
  --nx-head-line: rgba(255,255,255,.12);

  /* Drawer */
  --nx-drawer-overlay: rgba(0,0,0,.65);
  --nx-drawer-bg: #0b0b0b;
  --nx-drawer-border: rgba(255,255,255,.08);
  --nx-drawer-item-border: rgba(255,255,255,.12);
}

/* ===============================
   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: 40px; /* 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;
  }
}
.nx-topbar__secure{
  font-size: 11px;
  letter-spacing: .6px;
  font-weight: 800;
  color: #ffffff !important;   /* força branco */
  text-transform: uppercase;
  opacity: .85;
}/* ===============================
   DRAWER — FIX BLACK (cola no final)
   =============================== */

/* garante que o drawer sempre fica acima */
.nx-drawer{ position: fixed; inset: 0; z-index: 2000; pointer-events: none; }
.nx-drawer.is-open{ pointer-events: auto; }

/* overlay ok */
.nx-drawer__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.72);
  opacity:0;
  transition: opacity .18s ease;
}
.nx-drawer.is-open .nx-drawer__overlay{ opacity:1; }

/* painel preto */
.nx-drawer__panel{
  position:absolute; top:0; left:0;
  height:100%;
  width:min(360px, 86vw);
  background:#000;
  border-right:1px solid rgba(255,255,255,.10);
  transform: translateX(-102%);
  transition: transform .22s ease;
  display:flex;
  flex-direction:column;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.nx-drawer.is-open .nx-drawer__panel{ transform: translateX(0); }

/* header */
.nx-drawer__header{
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nx-drawer__title{
  color:#fff;
  opacity:.85;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
}

/* close (garante X visível) */
.nx-drawer__close{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size: 22px;
}
.nx-drawer__close span{ color:#fff; }

/* conteúdo sem “buracos” */
.nx-drawer__content{
  padding: 14px;
  display:grid;
  gap: 10px;
  align-content: start;
}

/* itens — versão premium (preto) */
.nx-drawer__item{
  height: 46px;
  border-radius: 16px;
  padding: 0 14px;

  display:flex;
  align-items:center;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  color:#fff !important;
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;

  transition: .18s ease;
}
.nx-drawer__item:hover{
  background: rgba(255,255,255,.10);
}

/* footer colado embaixo */
.nx-drawer__footer{
  margin-top:auto;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,.75));
}

/* CTA — FIX do seu print (texto sumindo) */
.nx-drawer__cta{
  height: 52px;
  border-radius: 16px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#fff !important;
  color:#000 !important;

  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;
  text-decoration:none;

  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.nx-drawer__cta:active{ transform: translateY(1px); }
/* ===== RESET ===== */
*{ box-sizing:border-box; }
html, body{
  width:100%;
  margin:0;
  padding:0;
}
body{
  overflow-x:hidden;
  background:#fff;
}

/* =========================
   SESSÃO 01 — WHITE / FLAT
   ========================= */
:root{
  --vx-bg:#ffffff;
  --vx-text:#0b0f17;
  --vx-muted:rgba(11,15,23,.62);
  --vx-hair:rgba(11,15,23,.10);

  --vx-green:#16a34a;
  --vx-green2:#0f7a34;

  --vx-font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.vx-main{
  background:var(--vx-bg);
  color:var(--vx-text);
  font-family:var(--vx-font);
}

.vx-hero{ background:var(--vx-bg); }

/* galeria 1:1 */
.vx-gallery{ width:100%; background:var(--vx-bg); }

.vx-track{
  display:flex;
  overflow:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width:none;
}
.vx-track::-webkit-scrollbar{ display:none; }

.vx-slide{
  flex:0 0 100%;
  width:100%;
  aspect-ratio: 1/1;
  scroll-snap-align:start;
  margin:0;
  background:#f5f6f7;
}
.vx-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* dots */
.vx-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  padding:10px 0 2px;
}
.vx-dot{
  width:6px; height:6px; border-radius:999px;
  background: rgba(11,15,23,.18);
}
.vx-dot.is-active{ background: rgba(11,15,23,.55); }

/* conteúdo */
.vx-wrap{
  width:min(560px, 92vw);
  margin:0 auto;
  padding: 10px 0 22px;
}

.vx-title{
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .15px;
}

.vx-rating{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 12px;
}
.vx-stars{ font-size:14px; letter-spacing:1px; color:#111; }
.vx-reviews1{ font-size:13px; color:var(--vx-muted); }

/* tabs */
.vx-tabs{
  display:flex;
  gap:10px;
  margin: 6px 0 10px;
}
.vx-tab{
  flex:1;
  height:44px;
  border-radius: 16px;
  border:1px solid var(--vx-hair);
  background:#fff;
  color:var(--vx-text);
  font-weight: 900;
  cursor:pointer;
  transition:.18s ease;
}
.vx-tab:hover{ background: rgba(11,15,23,.03); }
.vx-tab.is-active{
  background:#111;
  color:#fff;
  border-color: transparent;
}

/* selects */
.vx-selects{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.vx-field{ display:grid; gap:6px; }
.vx-field span{
  font-size:12px;
  color: rgba(11,15,23,.62);
  font-weight: 800;
}
.vx-field select{
  height:46px;
  border-radius: 16px;
  border:1px solid var(--vx-hair);
  background:#fff;
  color:var(--vx-text);
  padding:0 12px;
  outline:none;
  transition:.18s ease;
}
.vx-field select:focus{
  border-color: rgba(22,163,74,.45);
  box-shadow: 0 0 0 4px rgba(22,163,74,.12);
}
.vx-field--full{ grid-column: 1 / -1; }

/* cores */
.vx-colors{
  display:flex;
  gap:10px;
  margin: 12px 0 10px;
}
.vx-color{
  flex:1;
  height:46px;
  border-radius: 16px;
  border:1px solid var(--vx-hair);
  background:#fff;
  color:var(--vx-text);
  font-weight: 900;
  cursor:pointer;
  transition:.18s ease;
}
.vx-color:hover{ background: rgba(11,15,23,.03); }
.vx-color.is-active{
  background:#111;
  color:#fff;
  border-color: transparent;
}

/* preços — FLAT */
.vx-prices{
  padding: 8px 0 0;
  border-top: 1px solid var(--vx-hair);
  margin-top: 8px;
}

.vx-compare{
  font-size: 13px;
  color: var(--vx-muted);
  text-decoration: line-through;
  margin: 6px 0 6px;
}

.vx-priceRow{
  display:flex;
  align-items: center;
  gap: 10px;
}

.vx-price{
  font-size: 26px;
  font-weight: 950;
  letter-spacing:.2px;
  color: var(--vx-green);
}

.vx-save{
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(22,163,74,.10);
  color: var(--vx-green2);
}

.vx-install{
  margin-top: 6px;
  font-size: 13px;
  color: var(--vx-muted);
}

/* CTA verde */
.vx-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 56px;
  margin-top: 14px;
  border-radius: 18px;
  text-decoration:none;
  font-weight: 950;
  color:#fff;
  background: linear-gradient(180deg, var(--vx-green) 0%, var(--vx-green2) 100%);
  box-shadow: 0 16px 40px rgba(22,163,74,.20), 0 10px 18px rgba(0,0,0,.10);
  position: relative;
  overflow:hidden;
  transition: .18s ease;
}
.vx-cta:hover{ transform: translateY(-1px); }
.vx-cta:active{ transform: translateY(0px); }

/* brilho leve */
.vx-cta::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-40%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(18deg);
  animation: vxShine 3.2s ease-in-out infinite;
}
@keyframes vxShine{
  0%{ left:-60%; opacity:0; }
  15%{ opacity:.9; }
  35%{ left:120%; opacity:0; }
  100%{ left:120%; opacity:0; }
}

.vx-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(11,15,23,.55);
}
/* ======================
   SETAS DA GALERIA
   ====================== */

.vx-gallery{
  position: relative;
}

.vx-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 20px;
  font-weight: 700;

  backdrop-filter: blur(6px);
  transition: .2s ease;
  z-index: 5;
}

.vx-arrow:hover{
  background: rgba(0,0,0,.65);
  transform: translateY(-50%) scale(1.05);
}

.vx-arrow--left{
  left: 12px;
}

.vx-arrow--right{
  right: 12px;
}

/* Esconde quando necessário */
.vx-arrow.is-hidden{
  opacity: 0;
  pointer-events: none;
}
/* ===============================
   ACCORDION – MINIMAL (ANEXO)
   =============================== */

.vx-accordion{
  width: min(560px, 92vw);
  margin: 14px auto 10px;            /* ✅ sem “bordão” enorme */
  border-top: 1px solid rgba(0,0,0,.10);
}

.vx-acc-item{
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.vx-acc-header{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 0;                   /* ✅ mais compacto */
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;

  font-weight: 650;
  font-size: 14px;
  letter-spacing: .2px;
  color: #111;
}

.vx-acc-icon{
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  transition: transform .22s ease;
  color: #111;
}

.vx-acc-item.active .vx-acc-icon{
  transform: rotate(180deg);
}

.vx-acc-content{
  padding: 0 0 14px 24px;            /* ✅ indent alinhado ao texto */
  color: rgba(0,0,0,.74);
  font-size: 14px;
  line-height: 1.65;
}

.vx-acc-content p{ margin: 0 0 10px; }
.vx-acc-content ul{ margin: 0 0 0 16px; padding: 0; }
.vx-acc-content li{ margin: 6px 0; }

/* tira espaço exagerado após CTA e preços */
.vx-prices{ margin-bottom: 10px !important; }
.vx-cta{ margin-top: 12px !important; margin-bottom: 8px !important; }
.vx-wrap{ padding-bottom: 14px !important; }
/* ===============================
   INFO STRIP (FULL-WIDTH WHITE)
   =============================== */
.vx-info{
  background:#fff;
  /* truque pra “esticar” branco até a borda da tela mesmo dentro de container escuro */
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
  padding: 8px 0 10px;  /* ✅ colado no CTA, sem espaço gigante */
}

.vx-info__inner{
  width: min(560px, 92vw);
  margin: 0 auto;
}

/* ===============================
   ACCORDION – MINIMAL (IGUAL ANEXO)
   =============================== */
.vx-accordion{
  margin: 0;                       /* ✅ tira o “vazio” de cima */
  border-top: 0;                   /* ✅ remove borda de cima */
}

.vx-acc-item{
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.vx-acc-header{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;

  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  color: #111;
}

.vx-acc-icon{
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  transition: transform .22s ease;
  color:#111;
}

.vx-acc-item.active .vx-acc-icon{
  transform: rotate(180deg);
}

.vx-acc-content{
  padding: 0 0 14px 24px;
  color: rgba(0,0,0,.74);
  font-size: 14px;
  line-height: 1.65;
}

.vx-acc-content p{ margin: 0 0 10px; }
.vx-acc-content ul{ margin: 0 0 0 16px; padding: 0; }
.vx-acc-content li{ margin: 6px 0; }

/* ✅ corta qualquer “borda”/espaço gigante entre CTA e accordion */
.vx-cta{ margin-bottom: 8px !important; }
.vx-wrap{ padding-bottom: 10px !important; }
/* ===============================
   STEPS (PREMIUM / DARK)
   =============================== */

.vx-steps{
  background: #0b0b0c;
  color: #fff;
  padding: 56px 0 54px;
  position: relative;
  overflow: hidden;
}

.vx-steps::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(255,255,255,.08), transparent 62%);
  pointer-events:none;
}

.vx-steps__inner{
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vx-steps__head{
  text-align: center;
  margin-bottom: 22px;
}

.vx-steps__title{
  margin: 0;
  font-size: clamp(26px, 4.5vw, 44px);
  letter-spacing: -0.6px;
  font-weight: 900;
}

.vx-steps__sub{
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}

.vx-steps__hint{
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.90);
}

.vx-steps__carousel{
  position: relative;
  margin-top: 22px;
}

.vx-steps__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(320px, 84vw);
  gap: 16px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 2px 6px;

  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.vx-steps__track::-webkit-scrollbar{ display:none; }

/* Cards */
.vx-step{
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,.06); /* preto “mais fraco” */
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.vx-step__media{
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(0,0,0,.35);
}

.vx-step__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

.vx-step__badge{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  background: rgba(255,255,255,.92);
  color: #111;
}

.vx-step__body{
  padding: 14px 14px 16px;
}

.vx-step__kicker{
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}

.vx-step__name{
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.vx-step__meta{
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  color: rgba(255,255,255,.62);
}

.vx-step__text{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

/* Setas (desktop) */
.vx-steps__arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor: pointer;
  display: none; /* mostra no desktop */
  place-items: center;
  font-size: 20px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.vx-steps__arrow--left{ left: -6px; }
.vx-steps__arrow--right{ right: -6px; }

.vx-steps__arrow:hover{
  background: rgba(0,0,0,.65);
  transform: translateY(-50%) scale(1.05);
}

@media (min-width: 980px){
  .vx-steps__arrow{ display: grid; }
  .vx-steps__track{
    grid-auto-columns: 1fr;
    mask-image: none;
    overflow: hidden;
  }
}

/* Dots */
.vx-steps__dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.vx-steps__dots span{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.vx-steps__dots span.is-active{
  background: rgba(255,255,255,.85);
}
/* ===============================
   DIVISÓRIA INFINITA (CORES FIXAS)
   =============================== */

.vx-divider{
  position: relative;
  height: 70px;
  background:#fff;
  overflow:hidden;
  line-height:0;
}

.vx-divider__svg{
  position:absolute;
  left:0;
  bottom:-1px;
  width:200%;
  height:100%;
  display:block;

  /* reduz “flicker” e emenda que parece trocar cor */
  shape-rendering: geometricPrecision;
}

/* paths */
.vx-wave{
  will-change: transform;
  transform: translateZ(0);
  transform-box: fill-box;
  transform-origin: center;
}

/* clone sempre ao lado (50% porque svg tem 200% de largura) */
.vx-clone{ transform: translateX(50%); }

/* CORES FIXAS (não mudam nunca) */
.vx-w1{ fill: rgba(0,0,0,.10); }
.vx-w2{ fill: rgba(0,0,0,.18); }
.vx-w3{ fill: #1F1F20; }

/* animações por % (loop perfeito) */
@keyframes vxLoopLeft  { from{ transform: translateX(0);}   to{ transform: translateX(-50%);} }
@keyframes vxLoopRight { from{ transform: translateX(-50%);} to{ transform: translateX(0);} }

/* IMPORTANTE: anima em cada path (não no group) */
.vx-w1{ animation: vxLoopLeft 10s linear infinite; }
.vx-w2{ animation: vxLoopRight 14s linear infinite; }
.vx-w3{ animation: vxLoopLeft 22s linear infinite; }

/* clone acompanha a mesma animação */
.vx-w1.vx-clone{ animation: vxLoopLeft 10s linear infinite; }
.vx-w2.vx-clone{ animation: vxLoopRight 14s linear infinite; }
.vx-w3.vx-clone{ animation: vxLoopLeft 22s linear infinite; }

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .vx-wave{ animation:none !important; }
}
:root{
  --vx-dark: #0b0b0c;   /* MESMA cor do fundo do GUIA PASSO A PASSO */
}

/* ===============================
   DIVISÓRIA ANIMADA (INFINITA / 3 CAMADAS)
   =============================== */
.vx-divider{
  position: relative;
  height: 70px;
  overflow: hidden;
  line-height: 0;
  background: #fff;              /* cor da seção de cima (padrão: branco) */
}

.vx-divider__svg{
  position: absolute;
  left: 0;
  bottom: -1px;                  /* evita micro fenda */
  width: 200%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
}

/* FLIP (ponta-cabeça) para usar na parte de baixo */
.vx-divider--flip .vx-divider__svg{
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
  transform-origin: center;
}

/* paths */
.vx-wave{
  will-change: transform;
  transform: translateZ(0);
  transform-box: fill-box;
  transform-origin: center;
}

/* clone sempre deslocado 50% (pq svg tem width:200%) */
.vx-clone{ transform: translateX(50%); }

/* cores fixas (NÃO mudam) */
.vx-w1{ fill: rgba(0,0,0,.10); }
.vx-w2{ fill: rgba(0,0,0,.18); }
.vx-w3{ fill: var(--vx-dark); }  /* preto igual ao fundo do guia */

/* animações por % (loop perfeito em qualquer tela) */
@keyframes vxLoopLeft  { from{ transform: translateX(0);}    to{ transform: translateX(-50%);} }
@keyframes vxLoopRight { from{ transform: translateX(-50%);} to{ transform: translateX(0);} }

/* cada layer (2 paths) com a MESMA animação */
.vx-w1{ animation: vxLoopLeft  10s linear infinite; }
.vx-w2{ animation: vxLoopRight 14s linear infinite; }
.vx-w3{ animation: vxLoopLeft  22s linear infinite; }

.vx-w1.vx-clone{ animation: vxLoopLeft  10s linear infinite; }
.vx-w2.vx-clone{ animation: vxLoopRight 14s linear infinite; }
.vx-w3.vx-clone{ animation: vxLoopLeft  22s linear infinite; }

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .vx-wave{ animation: none !important; }
}
/* Remove qualquer gradiente e deixa preto sólido */
.vx-steps{
  background: var(--vx-dark) !important;
}

/* remove overlays e efeitos */
.vx-steps::before,
.vx-steps::after{
  display: none !important;
}/* ===============================
   SECURITY SECTION
   =============================== */

.vx-security{
  background:#ffffff;
  padding: 40px 0 60px;
}

.vx-security__wrap{
  width: min(560px, 92vw);
  margin: 0 auto;
}

/* FOTO EM CARD */
.vx-security__media{
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  margin-bottom: 24px;
}

.vx-security__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* TEXTO */
.vx-security__title{
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 14px;
  color:#111;
}

.vx-security__text{
  font-size: 16px;
  line-height: 1.6;
  color:#444;
}

.vx-security__text strong{
  color:#000;
  font-weight: 800;
}
/* ===============================
   FEATURE WHITE SECTION
   =============================== */

.vx-featureWhite{
  background: #ffffff;
  padding: 40px 0 60px;
}

.vx-featureWhite__wrap{
  width: min(560px, 92vw);
  margin: 0 auto;
  position: relative;
}

/* FOTO 1:1 */
.vx-featureWhite__media{
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  margin-bottom: 24px;
}

.vx-featureWhite__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXTO */
.vx-featureWhite__title{
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 12px;
  color:#111;
}

.vx-featureWhite__text{
  font-size: 16px;
  line-height: 1.6;
  color:#555;
  max-width: 46ch;
}

.vx-featureWhite__text strong{
  color:#000;
  font-weight: 800;
}

/* linha vertical discreta */
.vx-featureWhite__line{
  position: absolute;
  right: -8px;
  bottom: 20px;
  width: 1px;
  height: 70px;
  background: rgba(0,0,0,.12);
}

/* Mobile refinado */
@media (max-width: 420px){
  .vx-featureWhite__title{ font-size: 24px; }
  .vx-featureWhite__text{ font-size: 15px; }
}
/* Remove excesso de espaço entre seções */
.vx-featureWhite,
.vx-security,
.vx-darkFeature,
.vx-steps{
  padding-top: 28px;
  padding-bottom: 20px;
}
/* ===============================
   COMPARATIVO (BRANCO / destaque preto)
   =============================== */
.vx-comparePrice{
  font-size: 13px;
  color: var(--vx-muted);
  text-decoration: line-through;
  margin: 6px 0 6px;
}

.vx-compare__wrap{
  width: min(640px, 92vw);
  margin: 0 auto;
}

.vx-compare__head{
  margin-bottom: 18px;
}

.vx-compare__title{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.35px;
  font-weight: 850;
  color:#0b0b0c;
}

.vx-compare__sub{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(0,0,0,.72);
  max-width: 62ch;
}
.vx-compare__sub strong{ color:#000; font-weight: 850; }

/* ===== tabela ===== */
.vx-table{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
}

.vx-row{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  align-items: stretch;
}

.vx-row:not(.vx-row--top){
  border-top: 1px solid rgba(0,0,0,.10);
}

.vx-cell{
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vx-cell--label{
  justify-content: flex-start;
  font-weight: 800;
  color: rgba(0,0,0,.85);
  letter-spacing: .1px;
}

.vx-row--top .vx-cell{
  padding: 18px 14px 14px;
}

/* coluna Rovera (destaque preto) */
.vx-col--rovera{
  background: #0b0b0c;
  color:#fff;
}

.vx-row--top .vx-col--rovera{
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* topo com imagens */
.vx-col{
  flex-direction: column;
  gap: 10px;
}

.vx-col__img{
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.vx-col__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  padding: 8px;
}

.vx-col__name{
  font-weight: 900;
  letter-spacing: .3px;
}

/* ícones */
.vx-ico{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
}

.vx-ico--ok{
  background: rgba(255,255,255,.14);
  color: #fff;
}

.vx-ico--muted{
  background: rgba(0,0,0,.08);
  color: rgba(0,0,0,.65);
}

.vx-ico--no{
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.40);
  border: 1px solid rgba(0,0,0,.10);
}

/* linhas finais arredondadas */
.vx-row--last .vx-col--rovera{
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

@media (max-width: 420px){
  .vx-compare__title{ font-size: 23px; }
  .vx-row{ grid-template-columns: 1.2fr .8fr .8fr; }
  .vx-cell{ padding: 12px 12px; }
  .vx-col__img{ width: 62px; height: 62px; }
}
/* FIX: remove “riscos” (line-through/underline) herdados do CSS global */
.vx-compare,
.vx-compare *{
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-thickness: auto !important;
}
/* aumenta somente a imagem interna */
.vx-col__img img{
  width: 120%;      /* aumenta além da box */
  height: 120%;
  object-fit: contain;
  transform: scale(1.1); /* ajuste fino */
}/* Remove fundo da coluna "Outras" */
.vx-col:not(.vx-col--rovera) .vx-col__img{
  background: transparent !important;
  box-shadow: none !important;
}/* ===============================
   REVIEWS (CARROSSEL 6 FEEDBACKS)
   =============================== */
.vx-reviews{
  background:#fff;
  padding: 44px 0 54px;
}

.vx-reviews__wrap{
  width: min(680px, 92vw);
  margin: 0 auto;
}

.vx-reviews__head{
  margin-bottom: 18px;
}

.vx-reviews__title{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.35px;
  font-weight: 900;
  color:#0b0b0c;
}

.vx-reviews__sub{
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(0,0,0,.72);
  max-width: 64ch;
}
.vx-reviews__sub strong{ color:#000; font-weight: 900; }

.vx-reviews__kicker{
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(0,0,0,.62);
}

/* ===== carrossel ===== */
.vx-reviews__carousel{
  position: relative;
  margin-top: 16px;
}

.vx-reviews__track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.vx-reviews__track::-webkit-scrollbar{ display:none; }

.vx-review{
  scroll-snap-align: start;
  flex: 0 0 88%;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  padding: 14px 14px 16px;
}

@media (min-width: 720px){
  .vx-review{ flex-basis: 48%; }
}

/* topo (avatar, nome, estrelas) */
.vx-review__top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vx-review__avatar{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.10);
}

.vx-review__name{
  font-weight: 900;
  color: #0b0b0c;
  font-size: 14px;
  line-height: 1.1;
}

.vx-review__stars{
  font-size: 13px;
  letter-spacing: 1px;
  color: #0b0b0c;
  opacity: .9;
  margin-top: 3px;
}

/* texto */
.vx-review__text{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,.72);
}

/* foto do feedback (produto funcionando) */
.vx-review__media{
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
}

.vx-review__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* setas */
.vx-revArrow{
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  user-select: none;
}

.vx-revArrow span{
  font-size: 28px;
  line-height: 0;
  color: rgba(0,0,0,.72);
  transform: translateY(-1px);
}

.vx-revArrow--prev{ left: -10px; }
.vx-revArrow--next{ right: -10px; }

.vx-revArrow.is-hidden{ opacity: 0; pointer-events: none; }

/* dots */
.vx-reviews__dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.vx-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}
.vx-dot.is-active{ background: rgba(0,0,0,.62); }

:root{
  --vx-dark: #0b0b0c;     /* mesmo preto do guia */
  --vx-green: #1FAF9A;    /* seu verde checkout (ajuste se quiser) */
}

/* ====== DIVISÓRIA INFINITA (3 camadas) ====== */
.vx-divider{
  position: relative;
  height: 70px;
  overflow: hidden;
  line-height: 0;
  background: #fff;
}
.vx-divider__svg{
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 200%;
  height: 100%;
  display: block;
}
.vx-divider--flip .vx-divider__svg{
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
  transform-origin: center;
}
.vx-wave{ will-change: transform; transform: translateZ(0); }
.vx-clone{ transform: translateX(50%); }
.vx-w1{ fill: rgba(0,0,0,.10); }
.vx-w2{ fill: rgba(0,0,0,.18); }
.vx-w3{ fill: var(--vx-dark); }

@keyframes vxLoopLeft  { from{ transform: translateX(0);}    to{ transform: translateX(-50%);} }
@keyframes vxLoopRight { from{ transform: translateX(-50%);} to{ transform: translateX(0);} }

.vx-w1{ animation: vxLoopLeft  10s linear infinite; }
.vx-w2{ animation: vxLoopRight 14s linear infinite; }
.vx-w3{ animation: vxLoopLeft  22s linear infinite; }

.vx-w1.vx-clone{ animation: vxLoopLeft  10s linear infinite; }
.vx-w2.vx-clone{ animation: vxLoopRight 14s linear infinite; }
.vx-w3.vx-clone{ animation: vxLoopLeft  22s linear infinite; }

@media (prefers-reduced-motion: reduce){
  .vx-wave{ animation: none !important; }
}

/* ====== CTA 2 PRETA ====== */
.vx-cta2{
  background: var(--vx-dark);
  padding: 34px 0 38px; /* compacto */
  color: #fff;
}
.vx-cta2__wrap{
  width: min(560px, 92vw);
  margin: 0 auto;
}
.vx-cta2__title{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.35px;
  font-weight: 900;
}
.vx-cta2__sub{
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
}
.vx-cta2__sub strong{ color:#fff; font-weight: 900; }

.vx-cta2__actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vx-cta2__btn{
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--vx-green);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.vx-cta2__btn:hover{ transform: translateY(-1px); }
.vx-cta2__btn:active{ transform: translateY(0); }

.vx-cta2__link{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
}
.vx-cta2__link:hover{ color:#fff; }

.vx-cta2__micro{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  font-weight: 700;
}

/* ====== BOTÃO FLUTUANTE (VOLTA AO TOPO) ====== */
.vx-topBtn{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(11,11,12,.78);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.vx-topBtn.is-show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vx-topBtn:hover{ transform: translateY(-1px); }
.vx-topBtn:active{ transform: translateY(0); }/* CTA 2 - botão full width + link minimal */
.vx-cta2__actions--stack{
  display: grid;
  gap: 10px;
}

/* botão ocupa a largura toda */
.vx-cta2__btn--full{
  width: 100%;
  height: 54px;
  border-radius: 16px;
  justify-content: center;
  font-size: 15px;
}

/* link bem minimalista abaixo */
.vx-cta2__link--mini{
  width: fit-content;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.22);
  opacity: .9;
}
.vx-cta2__link--mini:hover{ opacity: 1; }
/* ===============================
   FAQ BRANCO PREMIUM
   =============================== */

.vx-faq{
  background:#fff;
  padding: 50px 0 60px;
}

.vx-faq__wrap{
  width: min(640px, 92vw);
  margin: 0 auto;
}

.vx-faq__title{
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
  color:#111;
}

.vx-faq__item{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.vx-faq__question{
  width:100%;
  background:transparent;
  border:none;
  padding:18px 0;
  font-size:15px;
  font-weight:800;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  color:#111;
}

.vx-faq__question span{
  font-size:20px;
  font-weight:300;
  transition:.3s;
}

.vx-faq__answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
  font-size:14px;
  line-height:1.6;
  color:#555;
}

.vx-faq__item.active .vx-faq__answer{
  max-height:400px;
  padding-bottom:18px;
}

.vx-faq__item.active .vx-faq__question span{
  transform: rotate(45deg);
}
:root{ --nx-header-h: 0px; }

/* o JS vai controlar isso */
body{
  padding-top: var(--nx-header-h);
}

/* evita margens “vazando” e criando espaço fantasma */
.vx-main{ display: flow-root; }
.vx-hero{ margin-top: 0 !important; padding-top: 0 !important; }
:root{ --nx-header-h: 0px; }

body{
  padding-top: var(--nx-header-h);
}
.vx-main{ display: flow-root; }
.vx-hero{ margin-top: 0 !important; padding-top: 0 !important; }
/* ===== SEÇÃO COMPARATIVO (BRANCA) ===== */
section.vx-compare{
  background: #fff !important;
  color: #0b0b0c;
  padding: 44px 0 54px;
}
/* ===============================
   MODAL REVISÃO (MINIMAL / PREMIUM)
   =============================== */
.vx-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.vx-modal.is-open{ display:block; }

.vx-modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(6px);
}

.vx-modal__panel{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 92vw);
  border-radius: 18px;
  background: #fff;
  color: #111;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  border: 1px solid rgba(0,0,0,.08);
  overflow:hidden;
}

.vx-modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.vx-modal__kicker{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .9px;
  color: rgba(0,0,0,.55);
}

.vx-modal__title{
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.2px;
}

.vx-modal__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
}

.vx-modal__body{
  padding: 12px 16px 6px;
}

.vx-modal__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.vx-modal__row span{
  font-size: 13px;
  color: rgba(0,0,0,.62);
  font-weight: 800;
}

.vx-modal__row strong{
  font-size: 13px;
  font-weight: 950;
  color: #111;
  text-align:right;
}

.vx-modal__warn{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 186, 0, .10);
  border: 1px solid rgba(255, 186, 0, .18);
  color: rgba(0,0,0,.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.vx-modal__foot{
  padding: 12px 16px 16px;
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.vx-modal__ghost{
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor:pointer;
  font-weight: 950;
}

.vx-modal__confirm{
  height: 52px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 950;
  color:#fff;
  background: linear-gradient(180deg, var(--vx-green, #16a34a) 0%, var(--vx-green2, #0f7a34) 100%);
  box-shadow: 0 16px 40px rgba(22,163,74,.18), 0 10px 18px rgba(0,0,0,.10);
}

.vx-modal__confirm.is-disabled{
  opacity: .55;
  pointer-events:none;
  filter: grayscale(1);
}

.vx-modal__micro{
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-align:center;
  font-weight: 750;
}

/* trava scroll quando modal abre */
body.vx-lock{ overflow:hidden; }/* ===============================
   MODAL REVISÃO (MINIMAL / ELEGANTE)
   =============================== */
.vx-modal{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.vx-modal.is-open{ display: grid; }

/* centralização sem translate (evita bug de “ir pro lado”) */
.vx-modal{
  place-items: center;
  padding: 16px;
}

.vx-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}

/* painel */
.vx-modal__panel{
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;

  border-radius: 18px;
  background: #fff;
  color: #111;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

/* header */
.vx-modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;

  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.vx-modal__kicker{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  color: rgba(0,0,0,.55);
}

.vx-modal__title{
  margin: 6px 0 0;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.2px;
  line-height: 1.2;
}

.vx-modal__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  cursor:pointer;

  font-size: 22px;
  line-height: 1;
  color: rgba(0,0,0,.75);
}

/* body */
.vx-modal__body{
  padding: 12px 16px 6px;
}

.vx-modal__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;

  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.vx-modal__row span{
  font-size: 13px;
  color: rgba(0,0,0,.58);
  font-weight: 600;
}

.vx-modal__row strong{
  font-size: 13px;
  font-weight: 650;
  color: rgba(0,0,0,.92);
  text-align:right;
}

.vx-modal__warn{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 186, 0, .10);
  border: 1px solid rgba(255, 186, 0, .18);
  color: rgba(0,0,0,.75);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

/* footer */
.vx-modal__foot{
  padding: 12px 16px 16px;
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;

  border-top: 1px solid rgba(0,0,0,.08);
}

.vx-modal__ghost{
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor:pointer;
  font-weight: 650;
  color: rgba(0,0,0,.85);
}

.vx-modal__confirm{
  height: 50px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  font-weight: 700;
  letter-spacing: .1px;

  color:#fff;
  background: linear-gradient(180deg, var(--vx-green, #16a34a) 0%, var(--vx-green2, #0f7a34) 100%);
  box-shadow: 0 16px 40px rgba(22,163,74,.16), 0 10px 18px rgba(0,0,0,.10);
}

.vx-modal__confirm.is-disabled{
  opacity: .55;
  pointer-events:none;
  filter: grayscale(1);
}

.vx-modal__micro{
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-align:center;
  font-weight: 600;
}

/* trava scroll */
body.vx-lock{ overflow:hidden; }
/* ===============================
   FRETE / PRAZO (BRANCO PREMIUM)
   =============================== */

.nxShip{
  background: #f8f9fb; /* branco levemente mais escuro */
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: 18px 0;
}

.nxShip__row{
  width: min(640px, 92vw);
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 14px;
}

.nxShip__logo{
  width: 48px;
  height: auto;
  object-fit: contain;
  opacity: .9;
}

.nxShip__txt{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* linha principal */
.nxShip__line1{
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #111;
}

.nxShip__free{
  font-weight: 800;
  letter-spacing: -.2px;
}

.nxShip__to{
  font-weight: 500;
  color: rgba(0,0,0,.6);
}

.nxShip__city{
  font-weight: 800;
}

/* ETA */
.nxShip__line2{
  font-size: 13.5px;
  color: rgba(0,0,0,.65);
  font-weight: 500;
}

/* Mobile refinado */
@media (max-width: 420px){
  .nxShip__logo{
    width: 42px;
  }

  .nxShip__line1{
    font-size: 14px;
  }

  .nxShip__line2{
    font-size: 13px;
  }
}