

html{
  scroll-behavior: smooth;
}



html, body{
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body{
  min-height: 100dvh; /* usa viewport real do mobile */
}




/* ===============================
   NEXUS UI – STYLE (CLEAN)
   Reutilizável (footer + header)
   =============================== */

:root{
  /* Marca (FOOTER / geral) */
  --nx-brand: #e1142b;
  --nx-brand-2: #ff2a6a;

  --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 (troca fácil) */
  --nx-head-bg: #ffffff;
  --nx-head-accent: #e1142b;
  --nx-head-line: rgba(0,0,0,.08);

  /* Drawer */
  --nx-drawer-overlay: rgba(0,0,0,.45);
  --nx-drawer-bg: #ffffff;
  --nx-drawer-border: rgba(0,0,0,.08);
  --nx-drawer-item-border: rgba(0,0,0,.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: 50px; /* 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;
  }
}
/* ===============================
   AQUAPOOL BLUE THEME (override)
   Cole NO FINAL do seu CSS
   =============================== */

:root{
  /* Paleta azul (pegada do print) */
  --nx-brand:   #0B3A78;   /* azul principal */
  --nx-brand-2: #0E4B9A;   /* azul 2 (pra gradientes) */
  --nx-accent:  var(--nx-brand); /* cor de destaque (substitui o vermelho) */

  /* Header */
  --nx-head-bg: #0B3A78;                 /* barra azul */
  --nx-head-accent: #ffffff;             /* ícones/linhas em branco no header */
  --nx-head-line: rgba(255,255,255,.14); /* divisória sutil */
}

/* HEADER azul + texto branco */
.nx-topbar{
  background: var(--nx-head-bg);
  color: #fff;
}

/* se tiver links no header, garante branco */
.nx-topbar a{ color: #fff; }

/* burger branco */
.nx-burger span{ background: var(--nx-head-accent); }

/* “secure” no topo em branco suave */
.nx-topbar__secure{ color: rgba(255,255,255,.85); }

/* linha divisória do header em branco suave */
.nx-topbar__divider{ background: var(--nx-head-line); }

/* CTA do drawer (botão) azul */
.nx-drawer__cta{
  background: var(--nx-accent);
}

/* Ícones circulares do footer: agora azul */
.nx-icoStroke,
.nx-icoFill{
  color: var(--nx-accent);
}
.nx-socialIcon{
  fill: var(--nx-accent);
}

/* FOOTER com gradiente azul */
.nx-footer{
  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%);
}

/* Linha do título nas POLICIES usando a nova accent */
.policy h1::after{
  background: var(--nx-accent);
}
/* ===============================
   HERO – clean / no card
   =============================== */

.ap-hero{
  background:#fff;

  /* HERO arredondado, não card */
  border-radius: 22px;

  /* remove “buraco” em cima */
  padding: 14px 16px 18px;

  max-width: 760px;
  margin: 0 auto;

  display:flex;
  flex-direction:column;
  align-items:center;

  /* controla TUDO pelo gap */
  gap: 10px;
}

/* zera margens padrão */
.ap-hero h1,
.ap-hero p{
  margin: 0;
}

/* HEADLINE – fonte normal, sem estranheza */
.ap-hero__title{
  text-align:center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0B0F14;
}

.ap-hero__title strong{
  color: var(--nx-brand);
  font-weight: 900;
}

/* IMAGEM */
.ap-hero__img{
  width: 100%;
  max-width: 360px;
  height: auto;
  display:block;
  border-radius: 12px;
}

/* TEXTO DE APOIO – bem minimal */
.ap-hero__support{
  text-align:center;
  font-size: 12px;
  line-height: 1.4;
  color: #5B6472;
  max-width: 420px;
}

/* CTA */
.ap-hero__cta{
  margin-top: 4px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height: 44px;
  padding: 0 18px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;
  text-decoration:none;
  color:#fff;

  background: linear-gradient(
    90deg,
    var(--nx-brand),
    var(--nx-brand-2)
  );

  box-shadow: 0 12px 24px rgba(11,58,120,.26);
  transition: transform .15s ease, box-shadow .15s ease;
}

.ap-hero__cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(11,58,120,.32);
}

/* DESKTOP */
@media (min-width: 900px){
  .ap-hero{
    padding: 18px 20px 22px;
    gap: 12px;
  }

  .ap-hero__title{
    font-size: 40px;
  }

  .ap-hero__support{
    font-size: 13px;
  }

  .ap-hero__cta{
    height: 48px;
    font-size: 14px;
    padding: 0 22px;
  }
}
.nx-topbar__logo{
  transform: translateX(-35px);
}
.nx-drawer__item{
  color: #111 !important;
}
/* ===============================
   CTA PRODUTO (SEM CARD)
   =============================== */

.pd-cta{
  background:#fff;
  padding: 16px 14px 22px;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

/* ===== Galeria ===== */
.pd-gallery{
  display: grid;
  gap: 10px;
}

.pd-gallery__thumbs{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.pd-thumb{
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  cursor: pointer;
}

.pd-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb.is-active{
  border-color: rgba(11,58,120,.55);
  box-shadow: 0 10px 22px rgba(11,58,120,.14);
}

.pd-gallery__main{
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}

.pd-gallery__main img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Infos (SEM CARD) ===== */
.pd-info{
  display: grid;
  gap: 10px;
}

/* título */
.pd-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #0B0F14;
  font-weight: 900;
}

/* preço */
.pd-price{
  display: grid;
  gap: 6px;
}

.pd-price__row{
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-old{
  font-size: 13px;
  color: rgba(11,15,20,.55);
  text-decoration: line-through;
}

.pd-badge{
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--nx-brand), var(--nx-brand-2));
}

.pd-now{
  font-size: 30px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: #0B0F14;
}

.pd-inst{
  font-size: 13px;
  color: rgba(11,15,20,.70);
}

.pd-save{
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  color: #0B0F14;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(11,58,120,.08);
  border: 1px solid rgba(11,58,120,.14);
}

/* botão */
.pd-buy{
  display: grid;
  place-items: center;
  height: 52px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .4px;
  color: #fff;
  background: linear-gradient(90deg, var(--nx-brand), var(--nx-brand-2));
  box-shadow: 0 14px 26px rgba(11,58,120,.22);
  margin-top: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.pd-buy:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(11,58,120,.30);
}

/* pagamentos (SEM card) */
.pd-pay{
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(15,23,42,.10);
  display: grid;
  gap: 10px;
}

.pd-pay__title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(11,15,20,.70);
}

.pd-pay__icons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pd-pay__svg{
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: .95;
}

.pd-pay__hint{
  font-size: 12px;
  color: rgba(11,15,20,.55);
}

/* ===== Modal ===== */
.pd-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.pd-modal.is-open{ display:block; }

.pd-modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

.pd-modal__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(92vw, 520px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.pd-modal__panel img{
  width:100%;
  height:auto;
  display:block;
}

.pd-modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.96);
  cursor: pointer;
  font-size: 22px;
  line-height: 0;
}

/* desktop: thumbs na lateral + duas colunas */
@media (min-width: 980px){
  .pd-cta{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }

  .pd-gallery{
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: start;
  }

  .pd-gallery__thumbs{
    flex-direction: column;
    overflow: visible;
    padding: 0;
  }

  .pd-thumb{
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
}
/* Centraliza bloco de pagamento */
.pd-pay{
  text-align: center;
}

.pd-pay__icons{
  justify-content: center;   /* centraliza a fileira */
}

.pd-pay__hint{
  text-align: center;
}
.pd-save{
  width: fit-content;
  font-size: 12px;
  font-weight: 900;
  color: #ffffff;

  padding: 7px 10px;
  border-radius: 10px;

  background: linear-gradient(90deg, var(--nx-brand), var(--nx-brand-2));
  box-shadow: 0 10px 22px rgba(11,58,120,.18);
  border: 0;
}
/* ===== BOX PIX (estilo ecommerce) ===== */
.pd-pix{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 12px;

  background: #F6FAFF;
  border: 1px solid rgba(11,58,120,.14);
}

.pd-pix__icon{
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

.pd-pix__text{
  display: grid;
  gap: 4px;
  min-width: 0;
}

.pd-pix__top{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.1;
  color: #0B0F14;
  font-size: 13px;
}

.pd-pix__top strong{
  font-size: 13px;
  font-weight: 1000;
}

.pd-pix__top span{
  color: rgba(11,15,20,.75);
  font-weight: 700;
}

.pd-pix__tag{
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0B3A78;
  background: rgba(11,58,120,.10);
  border: 1px solid rgba(0, 63, 144, 0.742);
}

.pd-pix__sub{
  font-size: 12px;
  color: rgba(11,15,20,.62);
}
/* Ícone Pix maior e quadrado */
.pd-pix__icon{
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.pd-pix__tag{
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(
    90deg,
    var(--nx-brand),
    var(--nx-brand-2)
  );
}
.pd-pix__tag{
  color: #ffffff !important;
}
/* ===== Frete (estilo do print) ===== */
.nxShip{
  background: #fff;
  border: 0;                 /* sem card */
  border-radius: 0;
  padding: 10px 14px;
  max-width: 980px;
  margin: 10px auto 0;
}

.nxShip__row{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nxShip__logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;

  /* sem borda / sem caixa */
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  flex: 0 0 34px;
}

.nxShip__txt{
  min-width: 0;
  display: grid;
  gap: 2px;
}

.nxShip__line1{
  font-size: 13px;
  line-height: 1.2;
  color: #0B0F14;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

/* Verde do “Frete Grátis” (igual print) */
.nxShip__free{
  color: #16A34A;
  font-weight: 900;
}

.nxShip__to{
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

/* Cidade/UF em destaque */
.nxShip__city{
  color: #16A34A;
  font-weight: 900;
}

/* Linha 2 com datas em strong */
.nxShip__line2{
  font-size: 12px;
  color: rgba(11,15,20,.62);
}

.nxShip__line2 strong{
  color: #0B0F14;
  font-weight: 900;
}
/* ===============================
   FAQ – clean / premium
   =============================== */

.nx-faq{
  background:#fff;
  max-width: 920px;
  margin: 28px auto 40px;
  padding: 0 16px;
}

.nx-faq__title{
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #0B0F14;
}

.nx-faq__list{
  display: grid;
  gap: 8px;
}

/* Pergunta */
.nx-faq__item{
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 12px;
  padding: 14px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 14px;
  font-weight: 800;
  color: #0B0F14;

  cursor: pointer;
  text-align: left;
}

/* Ícone + */
.nx-faq__item i{
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.nx-faq__item i::before,
.nx-faq__item i::after{
  content:"";
  position:absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--nx-brand);
  transform: translateY(-50%);
  border-radius: 2px;
}

.nx-faq__item i::after{
  transform: translateY(-50%) rotate(90deg);
  transition: transform .2s ease;
}

/* Conteúdo */
.nx-faq__content{
  display: none;
  padding: 10px 16px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(11,15,20,.75);
}

/* Aberto */
.nx-faq__item.is-open i::after{
  transform: translateY(-50%) rotate(0deg);
}

.nx-faq__content.is-open{
  display: block;
}

/* Desktop */
@media (min-width: 900px){
  .nx-faq__title{ font-size: 24px; }
  .nx-faq__item{ font-size: 15px; }
  .nx-faq__content{ font-size: 14px; }
}
.pd-pay{
  margin-top: 6px;

  padding-top: 10px;
  padding-bottom: 10px;

  border-top: 1px solid rgba(15,23,42,.10);
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.pd-pay{
  padding-bottom: 6px;   /* antes estava ~10–12px */
}
/* APERTA O ESPAÇO ENTRE A LINHA E O FRETE */
.pd-pay{
  padding-bottom: 4px !important;
}

.nxShip{
  margin-top: 0 !important;
  padding-top: 4px !important;
}
.nxShip{
  background: #F3F4F6;
}
/* ===== Frete: compacto no mobile + logo maior ===== */
.nxShip{
  padding: 8px 14px !important; /* reduz altura geral */
}

/* logo maior */
.nxShip__logo{
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
}

/* menos quebra de linha no texto */
.nxShip__line1{
  gap: 4px !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
}

/* deixa a cidade/UF mais “curta” e não estoura */
.nxShip__city{
  display: inline-block;
  max-width: 220px;          /* limita no mobile */
  white-space: nowrap;       /* tenta segurar numa linha */
  overflow: hidden;
  text-overflow: ellipsis;   /* se for gigante, corta com ... */
}

/* linha 2 um pouco mais compacta */
.nxShip__line2{
  font-size: 12px !important;
  line-height: 1.2 !important;
}
/* ===============================
   CONTADOR – Clientes satisfeitos
   =============================== */

.nx-count{
  background: #fff;
  padding: 18px 16px;
  text-align: center;
}

.nx-count__wrap{
  display: grid;
  gap: 6px;
  justify-items: center;
}

.nx-count__number{
  font-size: 42px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height: 1;

  /* azul da marca */
  color: var(--nx-brand);

  /* leve destaque sem virar card */
}

.nx-count__number::after{
  content: "+";
  font-size: .6em;
  margin-left: 2px;
}

.nx-count__label{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(11,15,20,.65);
}

/* desktop */
@media (min-width: 900px){
  .nx-count__number{
    font-size: 56px;
  }
}
/* ===============================
   FEEDBACKS (carrossel clean)
   =============================== */

.fb{
  background:#fff;
  padding: 24px 16px 18px;
  max-width: 980px;
  margin: 0 auto;
}

.fb__head{
  text-align:center;
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.fb__title{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  color:#0B0F14;
}

.fb__sub{
  margin: 0;
  font-size: 13px;
  color: rgba(11,15,20,.65);
}

/* scroller */
.fb__scroller{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 12px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px;

  scrollbar-width: none;
}
.fb__scroller::-webkit-scrollbar{ display:none; }

/* card leve (não é card pesado) */
.fb__card{
  scroll-snap-align: start;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: #fff;
}

/* topo */
.fb__top{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.fb__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 44px;
  background: #f3f4f6;
}

.fb__meta{
  min-width: 0;
  display: grid;
  gap: 5px;
}

.fb__nameRow{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.fb__name{
  font-size: 14px;
  font-weight: 1000;
  color:#0B0F14;
}

.fb__badge{
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0B3A78;
  background: rgba(11,58,120,.10);
  border: 1px solid rgba(11,58,120,.14);
}

/* estrelas */
.fb__stars{
  font-size: 12px;
  letter-spacing: 1px;
  color: #F5B301; /* dourado padrão de estrela */
}

/* texto */
.fb__text{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11,15,20,.78);
}

/* nav */
.fb__nav{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.fb__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 0;
  color: var(--nx-brand);
  display: grid;
  place-items: center;
}

.fb__btn:hover{
  border-color: rgba(11,58,120,.25);
}

@media (min-width: 900px){
  .fb__scroller{
    grid-auto-columns: 44%;
  }
}
/* Foto do feedback (1:1) */
.fb__photo{
  width: 100%;
  aspect-ratio: 3 / 4;     /* força 1:1 */
  object-fit: cover;

  margin-top: 10px;

  border-radius: 12px;
  background: #F3F4F6;     /* fallback enquanto carrega */
}
.fb__title{
  color: #0B0F14;
}

.fb__title span{
  color: var(--nx-brand);
}
.pd-buy{
  background: linear-gradient(
    90deg,
    #16A34A,
    #22C55E
  );
  box-shadow: 0 14px 26px rgba(22,163,74,.28);
}

.pd-buy:hover{
  box-shadow: 0 18px 32px rgba(22,163,74,.36);
}
.pd-pix__tag{
  color: #ffffff !important;
  background: linear-gradient(
    90deg,
    #16A34A,
    #22C55E
  );
}
.pd-save{
  color: #ffffff;
  background: linear-gradient(
    90deg,
    #0B3A78,
    #0E4B9A
  );
  box-shadow: 0 10px 22px rgba(11,58,120,.25);
}
.pd-badge{
  color: #ffffff;
  background: linear-gradient(
    90deg,
    #E11D48,   /* vermelho principal */
    #FB7185    /* vermelho claro */
  );
  font-weight: 900;
}
/* ===============================
   ANTES / DEPOIS – slider
   =============================== */

.ab{
  background:#fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 10px;
}

.ab__head{
  text-align: center;
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.ab__title{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  color:#0B0F14;
}

.ab__sub{
  margin: 0;
  font-size: 13px;
  color: rgba(11,15,20,.65);
}

/* área comparador */
.ab__wrap{
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #F3F4F6;
}

/* imagens */
.ab__img{
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* camada de antes recortada */
.ab__before{
  position: absolute;
  inset: 0;
  width: 50%; /* começa no meio */
  overflow: hidden;
}

.ab__img--before{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ab__img--after{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* para garantir altura boa no mobile */
.ab__wrap{
  aspect-ratio: 16 / 10;
}
@media (max-width: 420px){
  .ab__wrap{ aspect-ratio: 16 / 11; }
}

/* labels */
.ab__labels{
  position: absolute;
  inset: 12px 12px auto 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ab__tag{
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(11,15,20,.42);
  backdrop-filter: blur(6px);
}

/* range invisível (captura interação) */
.ab__range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

/* linha */
.ab__line{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(11,15,20,.10);
}

/* handle */
.ab__handle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  cursor: ew-resize;
  padding: 0;
}

.ab__arrows{
  width: 22px;
  height: 22px;
  color: var(--nx-brand); /* azul da sua paleta */
}

/* micro-interação */
.ab__handle:hover{
  transform: translate(-50%,-50%) scale(1.02);
}

@media (min-width: 900px){
  .ab__title{ font-size: 24px; }
}
/* evita o scroll/zoom do celular durante o drag */
.ab__wrap,
.ab__handle{
  touch-action: none;
}

/* range fica só acessível (teclado), mas não captura toque */
.ab__range{
  pointer-events: none;
}
/* ===============================
   CHECKLIST – clean
   =============================== */

.ck{
  background:#fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 10px;
}

.ck__title{
  margin: 0 0 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 1000;
  color: #0B0F14;
}

.ck__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* item */
.ck__list li{
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(11,15,20,.80);
}

/* “check” */
.ck__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;

  width: 22px;
  height: 22px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 1000;
  font-size: 13px;

  background: linear-gradient(90deg, var(--nx-brand), var(--nx-brand-2));
  box-shadow: 0 10px 20px rgba(11,58,120,.18);
}

.ck__list strong{
  color: #0B0F14;
  font-weight: 1000;
}

@media (min-width: 900px){
  .ck__title{ font-size: 24px; }
  .ck__list{
    grid-template-columns: 1fr 1fr; /* 2 colunas no desktop */
    column-gap: 18px;
  }
}
/* ===============================
   CARROSSEL DE VÍDEOS
   =============================== */

.vd{
  background:#fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 10px;
}

.vd__head{
  text-align:center;
  display:grid;
  gap:6px;
  margin-bottom:12px;
}

.vd__title{
  margin:0;
  font-size:22px;
  font-weight:1000;
  color:#0B0F14;
}

.vd__sub{
  margin:0;
  font-size:13px;
  color:rgba(11,15,20,.65);
}

/* scroller */
.vd__scroller{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: 86%;
  gap:12px;

  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;

  scrollbar-width:none;
}
.vd__scroller::-webkit-scrollbar{ display:none; }

/* item */
.vd__item{
  scroll-snap-align:start;
  margin:0;
}

/* vídeo */
.vd__video{
  width:100%;
  aspect-ratio: 3 / 4;   /* vertical (story) */
  object-fit:cover;
  border-radius:16px;
  background:#000;
  display:block;
}

/* legenda */
.vd__cap{
  margin-top:8px;
  font-size:13px;
  line-height:1.35;
  color:rgba(11,15,20,.75);
  text-align:center;
}

/* navegação */
.vd__nav{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}

.vd__btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:0;
  color:var(--nx-brand);
  display:grid;
  place-items:center;
}

@media (min-width: 900px){
  .vd__scroller{
    grid-auto-columns: 32%;
  }
}
/* ===============================
   CTA FIXO MOBILE
   =============================== */

.mcta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;

  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,.10);

  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* esconde no desktop */
@media (min-width: 900px){
  .mcta{ display: none; }
}

/* preço */
.mcta__price{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mcta__old{
  font-size: 11px;
  text-decoration: line-through;
  color: rgba(11,15,20,.45);
}

.mcta__new{
  font-size: 15px;
  font-weight: 1000;
  color: #0B0F14;
}

/* botão */
.mcta__btn{
  margin-left: auto;

  height: 44px;
  padding: 0 18px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    90deg,
    #16A34A,
    #22C55E
  );

  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;

  box-shadow: 0 12px 26px rgba(22,163,74,.28);
}
/* ===== CTA FIXO – miniatura do produto ===== */

.mcta__left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.mcta__thumb{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #F3F4F6;
  flex: 0 0 44px;
  border: 1px solid rgba(15,23,42,.08);
}

/* garante que o botão não quebre linha */
.mcta__btn{
  white-space: nowrap;
}
/* Separador entre seções */
.sep{
  width: min(980px, 100%);
  margin: 16px auto;
  padding: 0 16px;
}

.sep::after{
  content:"";
  display:block;
  height: 1px;
  background: rgba(15,23,42,.10);
}
.mcta{
  transition:
    opacity .25s ease,
    transform .25s ease;
}
.pd-title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;              /* antes devia estar 800+ */
  letter-spacing: -0.01em;       /* menos chapado */
  line-height: 1.25;
  color: #0B0F14;
}
.pd-now{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;              /* CHAVE */
  letter-spacing: -0.012em;      /* bem sutil */
  color: #22C55E;
}
