*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  width: 100%;
  overflow-x: hidden;
}


/* ===============================
   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: 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;
  }
}
/* =========================
   HERO CLEAN – Nexus Pet
   ========================= */

:root{
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);

  /* Nexus CTA */
  --red: #E11D48;
  --red2: #C80529;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(2,6,23,.10);
}

.heroClean{
  background: var(--bg);
  padding: 26px 0 18px;
}

.heroClean__wrap{
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.heroClean__title{
  color: var(--text);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 0;
}

.heroClean__break{
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: -0.01em;
}

.heroClean__media{
  width: 100%;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.heroClean__img{
  width: 100%;
  height: auto;
  display: block;
}

.heroClean__sub{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 62ch;
}

.heroClean__cta{
  margin-top: 6px;
  width: min(420px, 100%);
  border: 0;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 850;
  letter-spacing: .2px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  box-shadow: 0 14px 34px rgba(225,29,72,.24);
  transition: transform .12s ease, filter .12s ease;
}

.heroClean__cta:hover{ transform: translateY(-1px); filter: saturate(1.02); }
.heroClean__cta:active{ transform: translateY(0px) scale(.99); }
.heroClean__cta:focus-visible{
  outline: 3px solid rgba(225,29,72,.25);
  outline-offset: 3px;
}

/* Ajuste fino mobile */
@media (max-width: 520px){
  .heroClean{ padding: 18px 0 14px; }
  .heroClean__wrap{ gap: 12px; }
  .heroClean__sub{ font-size: 14px; }
}
.heroClean__title{
  margin: 0;
  color: var(--text);
  font-weight: 820;                 /* forte, mas não agressivo */
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(22px, 3vw, 34px);
  text-wrap: balance;               /* melhora a quebra (se suportar) */
}

.heroClean__break{
  display: block;
  margin-top: 8px;                  /* respiro = menos chapado */
  color: var(--muted);              /* cinza premium */
  font-weight: 520;                 /* bem mais leve que o título */
  letter-spacing: -0.01em;
  line-height: 1.35;
  font-size: clamp(14px, 1.7vw, 17px);
}
.heroClean__accent{
  color: var(--red);
}
/* =========================
   SEÇÃO 2 – O PROBLEMA
   ========================= */

.petProblem{
  background: var(--bg);
  padding: 18px 0 6px;
}

.petProblem__wrap{
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.petProblem__head{
  text-align: center;
  margin-bottom: 14px;
}

.petProblem__title{
  margin: 0;
  color: var(--text);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(18px, 2.3vw, 24px);
}

.petProblem__sub{
  margin: 8px auto 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.55;
}

.petProblem__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.petProblem__card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

.petProblem__cardTitle{
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 850;
  color: var(--text);
  letter-spacing: -0.01em;
}

.petProblem__list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.petProblem__list li{
  margin: 7px 0;
}

/* Mobile */
@media (max-width: 720px){
  .petProblem{
    padding: 14px 0 4px;
  }

  .petProblem__grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .petProblem__card{
    padding: 13px 13px 11px;
  }
}
/* =========================
   PROBLEM ROTATOR – 1 BOX
   ========================= */

.petProblem__rotator{
  display: grid;
  gap: 10px;
  justify-items: center;
}

.petProblem__stage{
  position: relative;
  width: min(760px, 100%);
  min-height: 168px; /* evita “pulo” entre cards */
}

/* Reaproveita .petProblem__card (se já existir), mas agora vira "slide" */
.petProblem__stage .petProblem__card{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(.995);
  pointer-events: none;

  transition: opacity .28s ease, transform .28s ease;
}

.petProblem__stage .petProblem__card.is-active{
  opacity: 1;
  transform: translateY(0px) scale(1);
  pointer-events: auto;
}

/* Dots */
.petProblem__dots{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 6px 0 0;
}

.petProblem__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15,23,42,.06);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.petProblem__dot:hover{ transform: scale(1.06); }

.petProblem__dot.is-active{
  background: var(--red);
  border-color: rgba(225,29,72,.35);
}
/* === TRANSIÇÃO MAIS PREMIUM (fade + blur leve + micro slide) === */
.petProblem__stage .petProblem__card{
  position: absolute;
  inset: 0;

  opacity: 0;
  transform: translateY(6px);
  filter: blur(3px);
  pointer-events: none;

  transition:
    opacity .42s cubic-bezier(.2,.9,.2,1),
    transform .42s cubic-bezier(.2,.9,.2,1),
    filter .42s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform, filter;
}

.petProblem__stage .petProblem__card.is-active{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  pointer-events: auto;
}

/* === DOTS MAIS MINIMALISTAS === */
.petProblem__dots{
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0;
}

.petProblem__dot{
  width: 6px;                 /* menor */
  height: 6px;
  border-radius: 999px;
  border: 0;                  /* sem borda grossa */
  background: rgba(15,23,42,.16);
  cursor: pointer;
  opacity: .55;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.petProblem__dot:hover{
  opacity: .85;
  transform: scale(1.06);
}

.petProblem__dot.is-active{
  opacity: 1;
  background: var(--red);     /* foco Nexus */
  transform: scale(1.12);     /* bem sutil */
}
.petProblem__accent{
  color: var(--red);
  font-weight: 900;
}
.petProblem__title{
  color: #111827; /* um preto levemente mais suave */
}
/* =========================
   BENEFÍCIOS + VÍDEO
   ========================= */

.petBenefitsOnly{
  background: var(--bg);
  padding: 18px 0 10px;
}

.petBenefitsOnly__wrap{
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.petBenefitsOnly__head{
  text-align: center;
  margin-bottom: 16px;
}

.petBenefitsOnly__title{
  margin: 0;
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--text);
}

.petBenefitsOnly__accent{
  color: var(--red);
  font-weight: 900;
}

.petBenefitsOnly__sub{
  margin: 8px auto 0;
  max-width: 70ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* Layout */
.petBenefitsOnly__content{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: center;
}

/* Checklist */
.petBenefitsOnly__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.petBenefitsOnly__item{
  position: relative;
  padding: 12px 14px 12px 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);

  color: var(--text);
  font-size: 14px;
  line-height: 1.45;

  /* estado inicial (anima) */
  opacity: 0;
  transform: translateY(10px);
  filter: blur(3px);
  transition:
    opacity .55s cubic-bezier(.2,.9,.2,1),
    transform .55s cubic-bezier(.2,.9,.2,1),
    filter .55s cubic-bezier(.2,.9,.2,1);
}

.petBenefitsOnly__item::before{
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 900;
  font-size: 14px;
  background: linear-gradient(135deg, var(--red), #ff2a6a);
}

/* Vídeo */
.petBenefitsOnly__video{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
}

.petBenefitsOnly__video video{
  width: 100%;
  display: block;
}

/* Ativação da animação */
.petBenefitsOnly.is-inview .petBenefitsOnly__item{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Mobile */
@media (max-width: 820px){
  .petBenefitsOnly{
    padding: 14px 0 8px;
  }

  .petBenefitsOnly__content{
    grid-template-columns: 1fr;
  }
}
.petBenefitsOnly__video{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(2,6,23,.08);

  aspect-ratio: 3 / 4;   /* 👈 AQUI define 3:4 */
}
/* =========================
   VER MAIS BENEFÍCIOS
   ========================= */

.petBenefitsOnly__list.is-collapsed .petBenefitsOnly__item.is-hidden{
  display: none;
}

.benefitsMore{
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
}

.benefitsMore:hover{ transform: translateY(-1px); }
.benefitsMore:active{ transform: translateY(0px) scale(.99); }
.benefitsMore:focus-visible{
  outline: 3px solid rgba(225,29,72,.22);
  outline-offset: 3px;
}

.benefitsMore__label{
  font-weight: 750;
  font-size: 13.5px;
  color: var(--muted);
}

.benefitsMore__chev{
  font-size: 14px;
  color: var(--red);
  transition: transform .2s ease;
}

.benefitsMore.is-open .benefitsMore__chev{
  transform: rotate(180deg);
}
.petInstallCarousel{
  padding: 16px 0 10px;
  background: var(--bg);
}

.petInstallCarousel__wrap{
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.petInstallCarousel__head{
  text-align: center;
  margin-bottom: 12px;
}

.petInstallCarousel__title{
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 850;
  color: var(--text);
}

.petInstallCarousel__title span{
  color: var(--red);
}

.petInstallCarousel__sub{
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.petInstallCarousel__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 12px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.petInstallCarousel__track::-webkit-scrollbar{
  display: none;
}

.petInstallCarousel__item{
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.petInstallCarousel__item img{
  width: 100%;
  display: block;
}

/* Desktop */
@media (min-width: 900px){
  .petInstallCarousel__track{
    grid-auto-columns: 23%;
  }
}
/* =========================
   MATERIAIS – BOLINHAS MINIMAL
   ========================= */

.petMaterialsMini{
  background: var(--bg);
  padding: 18px 0 12px;
}

.petMaterialsMini__wrap{
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.petMaterialsMini__head{
  text-align: center;
  margin-bottom: 18px;
}

.petMaterialsMini__title{
  margin: 0;
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 850;
  color: var(--text);
}

.petMaterialsMini__title span{
  color: var(--red);
}

.petMaterialsMini__sub{
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--muted);
}

/* Linhas */
.petMaterialsMini__row{
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 16px;
}

.petMaterialsMini__row--center{
  gap: 36px;
}

/* Item */
.petMaterialsMini__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 130px;
}

/* Bolinha */
.petMaterialsMini__img{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
}

.petMaterialsMini__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Label */
.petMaterialsMini__item span{
  font-size: 13.5px;
  font-weight: 750;
  color: var(--text);
}

/* Mobile */
@media (max-width: 620px){
  .petMaterialsMini__row{
    gap: 18px;
  }

  .petMaterialsMini__img{
    width: 84px;
    height: 84px;
  }

  .petMaterialsMini__item span{
    font-size: 13px;
  }
}
.petMaterialsMini__img{
  width: 68px;
  height: 68px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(2,6,23,.06);
}

.petMaterialsMini__item span{
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}
/* =========================
   NEXUS LIGHTBOX – minimal
   ========================= */

.nxLightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.nxLightbox.is-open{ display: block; }

.nxLightbox__overlay{
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.62);
  backdrop-filter: blur(6px);
}

.nxLightbox__card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 560px);
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  overflow: hidden;
  animation: nxPop .18s ease-out;
}

@keyframes nxPop{
  from{ transform: translate(-50%, -50%) scale(.98); opacity: 0; }
  to{ transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.nxLightbox__x{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.nxLightbox__figure{ margin: 0; }

.nxLightbox__img{
  width: 100%;
  height: auto;
  display: block;
  background: #f7f7f8;
}

.nxLightbox__cap{
  padding: 10px 12px 12px;
  font-size: 13px;
  color: #5B6472;
  text-align: center;
}

/* deixa claro que é clicável */
.petMaterialsMini__item{ cursor: pointer; }
/* remove legenda abaixo da imagem */
.nxLightbox__cap{
  display: none;
}
.petMaterialsMini__hint{
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 6px 0 14px;
}
.petMaterialsMini__hint{
  font-size: 11.5px;
  color: #8A8F99;
  letter-spacing: .02em;
  margin-top: 10px;
}
.petMaterialsMini__item:active{
  transform: scale(.97);
}
.nxBuy, .nxBuy *{ box-sizing:border-box; }
.nxBuy{ background:#fff; color:#0B0F14; padding:16px 0; }
.nxBuy img{ display:block; width:100%; height:auto; }
.nxBuy__wrap{ width:min(1120px, calc(100% - 20px)); margin:0 auto; }

@media (min-width: 920px){
  .nxBuy__wrap{ display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; align-items:start; }
  .nxBuy__head{ grid-column:1/-1; }
}

.nxBuy__title{ margin:0; font-size:22px; font-weight:900; line-height:1.15; }
.nxBuy__title span{ display:block; margin-top:6px; font-size:14px; font-weight:800; color:#E11D48; }

.nxBuy__main img{ border-radius:0!important; }

.nxBuy__thumbs{
  margin-top:10px;
  display:flex;
  gap:10px;
  overflow-x:auto;
  flex-wrap:nowrap;
  -webkit-overflow-scrolling:touch;
  padding:2px 0 10px;
  scrollbar-width:none;
}
.nxBuy__thumbs::-webkit-scrollbar{ display:none; }

.nxThumb{
  flex:0 0 auto;
  width:58px; height:58px;
  border:1px solid rgba(15,23,42,.16);
  background:#fff;
  padding:0;
  cursor:pointer;
  position:relative;
}
.nxThumb img{ width:100%; height:100%; object-fit:cover; }
.nxThumb.is-active{ border-color: rgba(225,29,72,.55); box-shadow:0 10px 22px rgba(225,29,72,.12); }

.nxTag{
  position:absolute; right:4px; bottom:4px;
  width:18px; height:18px; border-radius:999px;
  display:grid; place-items:center;
  font-style:normal; font-weight:900; font-size:11px;
  background: rgba(11,15,20,.85); color:#fff;
}
.nxTag--p{ background: rgba(225,29,72,.85); }

.nxBlock{ padding:12px 0; border-top:1px solid rgba(15,23,42,.12); }
.nxBlock__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.nxMeasuresBtn{
  background:transparent; border:0; padding:0;
  font-size:12px; font-weight:800;
  color:#E11D48; text-decoration:underline; text-underline-offset:3px;
  cursor:pointer;
}

.nxSizes{ display:flex; gap:10px; flex-wrap:wrap; }
.nxSize{
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.16);
  background:#fff;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}
.nxSize.is-active{ border-color: rgba(225,29,72,.5); }

.nxColors{ display:grid; grid-template-columns:repeat(4, 40px); gap:10px 12px; }
.nxColor{
  width:40px; height:40px; border-radius:999px;
  background:var(--c);
  border:1px solid rgba(15,23,42,.16);
  cursor:pointer;
  position:relative;
}
.nxColor.is-active::after{
  content:"✓";
  position:absolute; inset:0;
  display:grid; place-items:center;
  color:#fff; font-weight:900; font-size:16px;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}

.nxHint{ margin:10px 0 0; color:#5B6472; font-size:13px; line-height:1.45; }
.nxMini{ margin:10px 0 0; color:#5B6472; font-size:12.5px; }

.nxPrice{ padding:14px 0 6px; border-top:1px solid rgba(15,23,42,.12); }
.nxPrice__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; }
.nxOff{
  font-weight:900; font-size:12px; color:#dfdfdf;
  border:1px solid rgba(225,29,72,.25);
  background: rgba(225,29,72,.06);
  padding:6px 10px; border-radius:999px;
}
.nxSale{ font-size:34px; font-weight:900; line-height:1.05; }
.nxInst{ margin-top:4px; color:#5B6472; }

.nxCTA{
  display:block;
  width:100%;
  margin:12px auto 0;
  text-align:center;
  padding:14px 16px;
  border-radius:14px;
  background:#E11D48;
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.nxCTA.is-disabled{ opacity:.55; pointer-events:none; }

.nxTrust{ display:block; margin-top:10px; text-align:center; color:#5B6472; }

.nxModal{ position:fixed; inset:0; display:none; z-index:999; }
.nxModal.is-open{ display:block; }
.nxModal__bg{ position:absolute; inset:0; background:rgba(0,0,0,.55); }
.nxModal__box{
  position:relative;
  width:min(520px, calc(100% - 20px));
  margin:12vh auto 0;
  background:#fff;
  padding:14px;
}
.nxModal__x{ position:absolute; top:6px; right:8px; border:0; background:transparent; font-size:22px; cursor:pointer; }
.nxModal__t{ margin:0 0 8px; font-weight:900; }
.nxModal__p{ margin:0 0 8px; color:#5B6472; line-height:1.5; }
.nxModal__ok{ width:100%; margin-top:10px; padding:12px; background:#111318; color:#fff; border:0; cursor:pointer; }
.nxBuy__main{
  width:100%;
  aspect-ratio: 1 / 1;   /* força 1:1 */
  overflow:hidden;
  background:#fff;
}

.nxBuy__main img{
  width:100%;
  height:100%;
  object-fit: cover;    /* preenche sem distorcer */
  display:block;
}
.nxTag{
  display:none !important;
}
/* wrapper */
.nxZoomHold{
  position: relative;
  overflow: hidden;
  touch-action: none; /* evita a página “roubar” o gesto */
  user-select: none;
}

/* imagem */
.nxZoomHold img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 0 0;
  will-change: transform;
  transition: transform .18s ease; /* volta suave ao soltar */
}

/* quando estiver segurando */
.nxZoomHold.is-holding img{
  transition: none; /* durante o gesto, acompanha o dedo sem delay */
}

/* hint */
.nxZoomHint{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
  opacity:.9;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease;
}

.nxZoomHint__hand{
  display:inline-grid;
  place-items:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(11,15,20,.35);
  color:#fff;
  font-size: 20px;
  margin: 0 auto 8px;
  animation: nxTap 1.35s ease-in-out infinite;
}

.nxZoomHint__txt{
  display:block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(55, 55, 55, 0.7);
  text-align:center;
}

@keyframes nxTap{
  0%{ transform: translateY(0) scale(1); opacity:.85; }
  50%{ transform: translateY(2px) scale(1.06); opacity:1; }
  100%{ transform: translateY(0) scale(1); opacity:.85; }
}

/* some depois que o usuário usa uma vez */
.nxZoomHint.is-hide{
  opacity:0;
  transform: translateY(6px);
}
/* ===== MODAL MEDIDAS (compacto + scroll interno) ===== */
.nxModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.nxModal.is-open{ display: block; }

.nxModal__bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.nxModal__box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(92vw, 520px);
  max-height: min(72vh, 520px);   /* ✅ aqui limita a altura */
  overflow: hidden;               /* ✅ conteúdo rola dentro */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  padding: 16px 16px 14px;
}

.nxModal__x{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 0;
}

.nxModal__t{
  margin: 4px 40px 10px 0;
  font-size: 18px;
  line-height: 1.2;
  color: #0B0F14;
}

.nxModal__content{
  /* ✅ rolagem fica aqui */
  overflow: auto;
  max-height: calc(min(72vh, 520px) - 110px); /* subtrai header+botão */
  padding-right: 6px;
}

/* scrollbar discreta */
.nxModal__content::-webkit-scrollbar{ width: 8px; }
.nxModal__content::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.18);
  border-radius: 999px;
}
.nxModal__content::-webkit-scrollbar-track{ background: transparent; }

.nxModal__kicker{
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(15,23,42,.70);
  margin: 10px 0 8px;
}

.nxModal__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.92);
  font-size: 14px;
  line-height: 1.55;
}

.nxModal__divider{
  height: 1px;
  background: rgba(15,23,42,.10);
  margin: 14px 0;
}

.nxModal__ok{
  width: 100%;
  margin-top: 12px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: #E11D48; /* vermelho Nexus */
  color: #fff;
  font-weight: 800;
}
.nxSeeMeasures{
  border: 1px solid rgba(15,23,42,.18);
  background: #fff;
  color: #0B0F14;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nxSeeMeasures:hover{
  border-color: #E11D48;
  color: #E11D48;
  box-shadow: 0 4px 10px rgba(225,29,72,.15);
}

.nxSeeMeasures:active{
  transform: scale(.96);
}
/* ===== MODAL MEDIDAS (centralizado real) ===== */
.nxModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.nxModal.is-open{ display: grid; } /* 🔥 grid centraliza */
.nxModal{
  place-items: center;            /* 🔥 centraliza no centro da tela */
}

.nxModal__bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

/* 🔥 TROCA ABSOLUTE -> FIXED e remove translate */
.nxModal__box{
  position: relative;              /* dentro do grid */
  width: min(92vw, 520px);
  max-height: min(72vh, 520px);
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  padding: 16px 16px 14px;
  z-index: 1;                      /* fica acima do bg */
}

/* (o resto pode manter igual) */
.nxModal__x{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 0;
}

.nxModal__t{
  margin: 4px 40px 10px 0;
  font-size: 18px;
  line-height: 1.2;
  color: #0B0F14;
}

.nxModal__content{
  overflow: auto;
  max-height: calc(min(72vh, 520px) - 110px);
  padding-right: 6px;
}

.nxModal__content::-webkit-scrollbar{ width: 8px; }
.nxModal__content::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.18);
  border-radius: 999px;
}
.nxModal__content::-webkit-scrollbar-track{ background: transparent; }

.nxModal__kicker{
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(15,23,42,.70);
  margin: 10px 0 8px;
}

.nxModal__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.92);
  font-size: 14px;
  line-height: 1.55;
}

.nxModal__divider{
  height: 1px;
  background: rgba(15,23,42,.10);
  margin: 14px 0;
}

.nxModal__ok{
  width: 100%;
  margin-top: 12px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: #E11D48;
  color: #fff;
  font-weight: 800;
}
/* ===== MODAL MEDIDAS (TRAVA NO CENTRO DE VERDADE) ===== */
.nxModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;

  /* força centralização */
  align-items: center;
  justify-content: center;

  /* evita cortar no notch / barra */
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  padding-top: calc(16px + env(safe-area-inset-top));
}

.nxModal.is-open{
  display: flex;
}

.nxModal__bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.nxModal__box{
  position: relative;
  width: min(92vw, 520px);
  max-height: min(72vh, 520px);
  overflow: hidden;

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);

  padding: 16px 16px 14px;
  z-index: 1;

  /* evita “torto” por subpixel */
  transform: translateZ(0);
}

.nxModal__content{
  overflow: auto;
  max-height: calc(min(72vh, 520px) - 110px);
  padding-right: 6px;
}

.nxModal__x{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 0;
}
.nxModal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  z-index: 99999;
}

.nxModal.is-open{
  display: block;
}

.nxModal__box{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 420px;
  max-height: 70vh;

  background: #fff;
  border-radius: 14px;
  padding: 16px;

  overflow-y: auto;
}

.nxModal__x{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
}
.nxModal__box{
  position: fixed;
  left: 50%;
  top: 35%; /* 🔼 sobe o modal */
  transform: translate(-50%, -50%);
}
.nxHeroInfo{
  padding: 10px 16px 6px;
  text-align: center;
}

.nxHeroTitle{
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #0B0F14;
  margin-bottom: 6px;
}

.nxHeroTitle span{
  display: block;
  margin-top: 6px;
  font-size: 25px;
  font-weight: 5000;
  color: #E11D48; /* vermelho Nexus */
}
.nxHeroTitle{
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700; /* base */
  color: #0B0F14;
  text-align: center;
}

.nxHeroHighlight{
  color: #E11D48;      /* vermelho Nexus */
  font-weight: 900;   /* mais grossa */
}

.nxHeroSub{
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}
/* ===== BUY PANEL (sem “cardão” pesado) ===== */
.nxBuy__panel{
  width: 100%;
}

/* ===== BLOCO ===== */
.nxBlock{
  padding: 14px 0;
  border-top: 1px solid rgba(15,23,42,.08);
}

.nxBlock:first-child{
  border-top: 0;
  padding-top: 6px;
}

.nxBlock__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.nxBlock__top b{
  font-size: 14px;
  font-weight: 800;
  color: #0B0F14;
  letter-spacing: -.01em;
}

/* “Selecionado” vira mais discreto */
.nxBlock__top small{
  font-size: 12px;
  color: rgba(15,23,42,.62);
  display:flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
}

/* chip da cor (quando você usar a classe nxChip no span) */
.nxChip{
  display:inline-flex;
  align-items:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #0B0F14;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
}

/* ===== BOTÃO VER MEDIDAS (mais minimalista) ===== */
.nxSeeMeasures{
  border: 1px solid rgba(15,23,42,.16);
  background: #fff;
  color: rgba(15,23,42,.85);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: .18s ease;
}

.nxSeeMeasures:hover{
  border-color: rgba(225,29,72,.45);
  color: #E11D48;
  box-shadow: 0 8px 18px rgba(225,29,72,.10);
}

.nxSeeMeasures:active{ transform: scale(.98); }

/* ===== TAMANHO (segmented premium) ===== */
.nxSizes{
  display:flex;
  gap: 10px;
}

.nxSize{
  flex: 1;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.16);
  background: #fff;
  color: #0B0F14;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
  transition: .18s ease;
}

.nxSize:hover{
  border-color: rgba(15,23,42,.22);
  transform: translateY(-1px);
}

.nxSize.is-active{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 10px 24px rgba(15,23,42,.08), 0 0 0 4px rgba(225,29,72,.10);
}

/* hint menor e com leitura melhor */
.nxHint{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(15,23,42,.62);
}

/* ===== CORES (grid 4x2 + bolinha premium) ===== */
.nxColors{
  display:grid;
  grid-template-columns: repeat(4, 44px);
  gap: 12px;
  margin-top: 2px;
}

@media (max-width: 360px){
  .nxColors{ gap: 10px; grid-template-columns: repeat(4, 42px); }
}

.nxColor{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--c);
  border: 1px solid rgba(15,23,42,.18);
  cursor: pointer;
  position: relative;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* brilho sutil “premium” */
.nxColor::before{
  content:"";
  position:absolute;
  inset: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.40), rgba(255,255,255,0) 55%);
  opacity: .9;
  pointer-events:none;
}

/* aro externo */
.nxColor::after{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: .18s ease;
  pointer-events:none;
}

.nxColor:hover{ transform: translateY(-1px); }

/* estado ativo: aro + sombra + check */
.nxColor.is-active{
  box-shadow: 0 10px 24px rgba(15,23,42,.10);
}

.nxColor.is-active::after{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 0 0 4px rgba(225,29,72,.10);
}

/* check minimalista */
.nxColor.is-active{
  /* o check vai “flutuar” por cima */
}
.nxColor.is-active span,
.nxColor.is-active i{ display:flex; }

/* cria o check via pseudo (não precisa mexer no HTML) */
.nxColor.is-active .nxTick{ display:flex; }

.nxColor.is-active::marker{ content:""; } /* no-op */

/* check via ::before? não dá pq já usamos brilho.
   Então usamos ::after do filho criado no JS OU (mais simples) um ::after extra:
   Vamos usar um elemento gerado via CSS com background. */
.nxColor.is-active::before{
  /* mantém o brilho */
}

.nxColor.is-active .nxColor__tick{ display:flex; }

.nxColor.is-active::selection{ background: transparent; }

/* Criar o ✓ sem HTML extra: usamos um pseudo interno com content */
.nxColor.is-active ._dummy{ display:none; }
.nxColor.is-active{
  /* nada */
}
.nxColor.is-active > *{ pointer-events:none; } /* no-op */
.nxColor.is-active::after{
  /* aro já está aqui */
}

/* ✓ usando outro pseudo: colocamos no próprio botão com background e content via ::before não dá.
   Então solução simples: coloca o ✓ com background-image via mask */
.nxColor.is-active{
  --tick: #fff;
}
.nxColor.is-active{
  background-image:
    radial-gradient(circle at center, rgba(0,0,0,.22) 0 16px, rgba(0,0,0,0) 17px),
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.40), rgba(255,255,255,0) 55%);
  background-blend-mode: normal;
}

/* texto de ajuda */
.nxMini{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(15,23,42,.58);
}

/* ===== PRICE area (só alinhamento mobile) ===== */
.nxPrice{
  padding: 16px 0 0;
  border-top: 1px solid rgba(15,23,42,.08);
}

.nxCTA{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  margin-top: 12px;
}

/* se o botão tá indo pra direita, geralmente é display inline ou width auto.
   Isso garante central e 100%. */
.nxSeeMeasures{
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  color: #E11D48;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nxSeeMeasures::after{
  content: "›";
  font-size: 14px;
  transform: translateY(-.5px);
}

.nxSeeMeasures:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nxSeeMeasures:active{ transform: scale(.98); }
.nxColor{
  position: relative;
  border: 1px solid rgba(15,23,42,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

/* aro selecionado */
.nxColor.is-active{
  box-shadow: 0 10px 20px rgba(15,23,42,.10);
}
.nxColor.is-active::after{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius: 999px;
  border: 2px solid rgba(225,29,72,.60);
  box-shadow: 0 0 0 4px rgba(225,29,72,.12);
}

/* ✓ no meio */
.nxColor.is-active::before{
  content:"✓";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 14px;
  color: var(--tick, #fff);
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* tick escuro pra cores claras (cinza/rosa) */
.nxColor[data-color="cinza"].is-active,
.nxColor[data-color="rosa"].is-active{
  --tick: #0B0F14;
  text-shadow: none;
}
.nxBlock__top small{
  color: rgba(15,23,42,.55);
}

.nxChip{
  border-radius: 999px;
  padding: 0 10px;
  height: 22px;
  display:inline-flex;
  align-items:center;
  font-weight: 900;
  font-size: 12px;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.18);
  color: #E11D48;
}
/* ===== PRICE / CTA (premium + verde) ===== */

/* Fonte do preço: troca pra algo mais clean (system) e menos “chapado” */
.nxSale{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #16A34A; /* ✅ verde no valor */
  margin-top: 6px;
}

/* comparação e parcelamento ficam neutros (pretos/cinza escuro) */
.nxPrice__top small,
.nxPrice__top s,
.nxInst{
  color: rgba(15,23,42,.85);
}

/* topo com “De R$” + desconto colado ao lado */
.nxPrice__top{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start; /* ✅ fica junto */
}

.nxPrice__top small{
  font-size: 12px;
  font-weight: 700;
}

/* desconto ao lado do “De R$” mais visível */
.nxOff{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.28);
  color: #E11D48;
  transform: translateY(-1px);
}

/* CTA verde, centralizada, pulsando */
.nxCTA{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* ✅ não vai pra direita */
  height: 54px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .01em;
  background: #16A34A; /* ✅ verde */
  color: #fff;
  box-shadow: 0 14px 30px rgba(22,163,74,.28);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

/* pulso (bem visível mas premium) */
.nxCTA:not(.is-disabled){
  animation: nxPulse 1.25s ease-in-out infinite;
}

@keyframes nxPulse{
  0%   { box-shadow: 0 14px 30px rgba(22,163,74,.22); transform: scale(1); }
  50%  { box-shadow: 0 18px 44px rgba(22,163,74,.34); transform: scale(1.02); }
  100% { box-shadow: 0 14px 30px rgba(22,163,74,.22); transform: scale(1); }
}

/* brilho passando (micro “wow”) */
.nxCTA:not(.is-disabled)::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-30%) rotate(15deg);
  animation: nxShine 2.2s linear infinite;
  pointer-events:none;
  opacity:.85;
}

@keyframes nxShine{
  0%   { transform: translateX(-60%) rotate(15deg); }
  100% { transform: translateX(60%) rotate(15deg); }
}

/* estado desabilitado */
.nxCTA.is-disabled{
  background: rgba(15,23,42,.12);
  color: rgba(15,23,42,.45);
  box-shadow: none;
  animation: none;
}
.nxCTA.is-disabled::after{ display:none; }

/* texto de confiança */
.nxTrust{
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(15,23,42,.55);
}
.nxBuy{
  background: #F6F7F9;
  padding: 20px 16px 26px;
}
/* ===== 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;
}
.nxShip{
  margin-top: 10000000 !important;
  padding-top: 4px !important;
}
.nxShip{
  background: #eaeaea;
  border-radius: 12px;
}
/* ===== Frete: compacto no mobile + logo maior ===== */
.nxShip{
  padding: 10px 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 ... */
}
/* ===============================
   CONTADOR – Clientes satisfeitos
   =============================== */

.nx-count{
  background: #F6F7F9;
  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;
  }
}
/* =========================
   NX REVIEWS (estilo print)
   ========================= */

.nxReviews{
  padding: 22px 16px;
  background: #fff;
}

.nxReviews__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.nxReviews__head{
  text-align: center;
  margin-bottom: 12px;
}

.nxReviews__title{
  font-size: 20px;
  line-height: 1.15;
  color: #0B0F14;
  margin: 0 0 6px;
  font-weight: 800;
}

.nxReviews__sub{
  margin: 0;
  font-size: 13px;
  color: rgba(11,15,20,.65);
}

/* trilho */
.nxReviews__rail{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 2px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nxReviews__rail::-webkit-scrollbar{ display: none; }

@media (min-width: 560px){
  .nxReviews__rail{ grid-auto-columns: 360px; }
}

/* card */
.nxReview{
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  scroll-snap-align:center;
}

/* topo */
.nxReview__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}

.nxReview__avatar{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
}

/* nome + badge */
.nxReview__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 0;
}

.nxReview__nameRow{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap: wrap;
}

.nxReview__name{
  font-size:14px;
  font-weight:800;
  color:#111;
}

/* cliente verificado vermelho */
.nxReview__badge{
  font-size:12px;
  font-weight:800;
  color:#E11D48;
}

/* estrelas */
.nxReview__stars{
  font-size:13px;
  color:#F59E0B;
  display:flex;
  align-items:center;
  gap:6px;
  letter-spacing: .5px;
}

/* nota 5.0 */
.nxReview__stars::after{
  content:"5.0";
  font-weight:800;
  color:#111;
  font-size:13px;
  letter-spacing: 0;
}

/* comentário */
.nxReview__text{
  font-size:14px;
  line-height:1.35;
  color:#333;
  margin:6px 0 10px;
}

/* foto feedback */
.nxReview__photo{
  border-radius:12px;
  overflow:hidden;
}

.nxReview__photo img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}

/* dots */
.nxReviews__dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top: 10px;
}

.nxDot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(11,15,20,.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.nxDot.is-active{
  background: #E11D48;
  width: 18px;
  transform: scale(1.02);
}
/* =========================
   NX REVIEWS (corrigido)
   Avatar SEMPRE bolinha pequena
   ========================= */

.nxReviews{
  padding: 22px 16px;
  background: #fff;
}

.nxReviews__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.nxReviews__head{
  text-align: center;
  margin-bottom: 12px;
}

.nxReviews__title{
  font-size: 20px;
  line-height: 1.15;
  color: #0B0F14;
  margin: 0 0 6px;
  font-weight: 800;
}

.nxReviews__sub{
  margin: 0;
  font-size: 13px;
  color: rgba(11,15,20,.65);
}

/* trilho */
.nxReviews__rail{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 12px;

  overflow-x: auto;
  padding: 10px 2px 6px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}
.nxReviews__rail::-webkit-scrollbar{ display: none; }

@media (min-width: 560px){
  .nxReviews__rail{ grid-auto-columns: 360px; }
}

/* card */
.nxReview{
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  scroll-snap-align:center;

  /* ✅ impede qualquer imagem de “empurrar” o layout */
  overflow: hidden;
}

/* topo */
.nxReview__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

/* ✅ AVATAR BOLINHA PEQUENA (forçado) */
.nxReview__avatar{
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;

  object-fit: cover !important;
  object-position: center !important;

  display: block;
  flex: 0 0 36px;

  /* deixa premium */
  border: 2px solid rgba(225,29,72,.20);
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
}

/* nome + badge */
.nxReview__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 0;
}

.nxReview__nameRow{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap: wrap;
}

.nxReview__name{
  font-size:14px;
  font-weight:800;
  color:#111;
  line-height: 1.1;
}

.nxReview__badge{
  font-size:12px;
  font-weight:800;
  color:#E11D48;
  line-height: 1.1;
}

/* estrelas + nota */
.nxReview__stars{
  font-size:13px;
  color:#F59E0B;
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing: .5px;
  line-height: 1.1;
}

.nxReview__stars::after{
  content:"5.0";
  font-weight:800;
  color:#111;
  font-size:13px;
  letter-spacing: 0;
}

/* comentário */
.nxReview__text{
  font-size:14px;
  line-height:1.35;
  color:#333;
  margin: 8px 0 12px;
}

/* foto feedback 3:4 */
.nxReview__photo{
  border-radius:12px;
  overflow:hidden;
  background: #f3f4f6;
}

.nxReview__photo img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;

  /* evita estourar */
  max-width: 100%;
  height: auto;
}

/* dots */
.nxReviews__dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top: 10px;
}

.nxDot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(11,15,20,.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.nxDot.is-active{
  background: #E11D48;
  width: 18px;
  transform: scale(1.02);
}
.nxReview__avatar{
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  flex: 0 0 48px;
}
.nxReview__photo{
  border-radius:12px;
  overflow:hidden;
  margin-top: 10px;

  /* 🔥 deixa a foto ocupar mais espaço */
  width: 90%;
}

.nxReview__photo img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;

  /* REMOVE limites antigos */
  max-height: none;
}
.nxReview{
  padding: 12px 12px 12px;
}

.nxReview__photo{
  margin-left: -6px;
  margin-right: -6px;
}
/* FOTO DO FEEDBACK — central e grande */
.nxReview__photo{
  width: 100%;
  margin: 10px auto 0;     /* centraliza o bloco */
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.nxReview__photo img{
  width: 100%;
  display: block;          /* remove “puxada” de inline img */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center; /* garante foco central */
}
/* ===== SATISFAÇÃO GARANTIDA (GALERIA DUPLA) ===== */
.nxSatis{
  background: #f3f4f6;               /* ✅ fundo mais “alto” e cinza claro */
  padding: 22px 0 34px;              /* ✅ mais altura geral */
  overflow: hidden;
}

.nxSatis__wrap{
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
}

.nxSatis__title{
  text-align: center;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #0B0F14;
  margin: 0 0 12px;
}

/* ===== trilhos ===== */
.nxMarq{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.nxMarq--bottom{
  margin-top: 0;                     /* ✅ colado na de cima */
}

/* faixa que anda */
.nxMarq__track{
  display: flex;
  width: max-content;
  will-change: transform;
}

/* ✅ fotos QUADRADAS, coladas, sem arredondar */
.nxMarq__track img{
  width: 140px;                      /* ajuste tamanho */
  height: 140px;                     /* quadrado */
  object-fit: cover;
  display: block;
  border-radius: 0;                  /* ✅ sem “balão” */
  margin: 0;                         /* ✅ sem gap */
}

/* no mobile: fotos um pouco menores */
@media (max-width: 420px){
  .nxMarq__track img{
    width: 120px;
    height: 120px;
  }
}

/* ===== BALÃO SOBRE A LINHA DE BAIXO ===== */
.nxSatis__bubble{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;                      /* ✅ desceu o balão */
  z-index: 3;
  pointer-events: none;
}

.nxSatis__bubbleInner{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  border-radius: 16px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 800;
  color: #0B0F14;
  line-height: 1.15;
  max-width: 320px;
}

.nxSatis__num{
  color: #E11D48;                    /* ✅ +2000 em vermelho */
  font-weight: 1000;
}
/* ===== SATISFAÇÃO GARANTIDA (GALERIA DUPLA) ===== */
.nxSatis{
  background: #ffffff;               /* ✅ fundo mais “alto” e cinza claro */
  padding: 22px 0 34px;              /* ✅ mais altura geral */
  overflow: hidden;
}

.nxSatis__wrap{
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
}

.nxSatis__title{
  text-align: center;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #0B0F14;
  margin: 0 0 12px;
}

/* ===== trilhos ===== */
.nxMarq{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.nxMarq--bottom{
  margin-top: 0;                     /* ✅ colado na de cima */
}

/* faixa que anda */
.nxMarq__track{
  display: flex;
  width: max-content;
  will-change: transform;
}

/* ✅ fotos QUADRADAS, coladas, sem arredondar */
.nxMarq__track img{
  width: 140px;                      /* ajuste tamanho */
  height: 140px;                     /* quadrado */
  object-fit: cover;
  display: block;
  border-radius: 0;                  /* ✅ sem “balão” */
  margin: 0;                         /* ✅ sem gap */
}

/* no mobile: fotos um pouco menores */
@media (max-width: 420px){
  .nxMarq__track img{
    width: 120px;
    height: 120px;
  }
}

/* ===== BALÃO SOBRE A LINHA DE BAIXO ===== */
.nxSatis__bubble{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;                      /* ✅ desceu o balão */
  z-index: 3;
  pointer-events: none;
}

.nxSatis__bubbleInner{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  border-radius: 16px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 800;
  color: #0B0F14;
  line-height: 1.15;
  max-width: 320px;
}

.nxSatis__num{
  color: #E11D48;                    /* ✅ +2000 em vermelho */
  font-weight: 1000;
}
.nxGallery__badge{
  position: absolute;
  top: 40px;   /* quanto maior, mais para baixo */
}
/* =========================
   FAQ – CSS (premium + clean)
   ========================= */
.nxFAQ{
  background: #fff;
  padding: 28px 0;
}

.nxFAQ__wrap{
  width: min(980px, 92vw);
  margin: 0 auto;
}

.nxFAQ__head{
  text-align: center;
  margin-bottom: 14px;
}

.nxFAQ__title{
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  color: #0B0F14;
  letter-spacing: -.02em;
}

.nxFAQ__sub{
  margin: 8px auto 0;
  max-width: 46ch;
  font-size: 13px;
  color: rgba(11,15,20,.62);
  line-height: 1.45;
}

.nxFAQ__list{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.nxFAQ__item{
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  overflow: hidden;
}

.nxFAQ__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  color: #0B0F14;
  font-size: 14px;
}

.nxFAQ__q::-webkit-details-marker{ display:none; }

.nxFAQ__icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  position: relative;
  opacity: .85;
}

.nxFAQ__icon::before,
.nxFAQ__icon::after{
  content:"";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: rgba(11,15,20,.78);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}
.nxFAQ__icon::after{
  width: 2px;
  height: 14px;
}

.nxFAQ__item[open] .nxFAQ__icon::after{
  height: 0; /* vira “-” quando abre */
}

.nxFAQ__a{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(15,23,42,.08);
  animation: nxFaqIn .22s ease both;
}

@keyframes nxFaqIn{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}

.nxFAQ__a p{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11,15,20,.82);
}

.nxFAQ__note{
  color: rgba(11,15,20,.62) !important;
  font-size: 12px !important;
}

/* foco acessível */
.nxFAQ__q:focus-visible{
  outline: 3px solid rgba(225,29,72,.25);
  outline-offset: 2px;
  border-radius: 14px;
}

/* mobile */
@media (max-width: 420px){
  .nxFAQ__title{ font-size: 20px; }
  .nxFAQ__q{ padding: 13px 12px; }
  .nxFAQ__a{ padding: 0 12px 12px; }
}
/* Balão menor e mais clean */
.nxBalloon2000{
  padding: 8px 12px;          /* antes devia estar tipo 18px 24px */
  border-radius: 12px;
  max-width: 220px;          /* limita largura */
  text-align: center;
  font-size: 12px;           /* texto menor */
  line-height: 1.3;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* só o +2000 em vermelho e mais forte */
.nxBalloon2000 span{
  color: #E11D48;
  font-weight: 900;
  font-size: 13px;
}

/* restante do texto mais leve */
.nxBalloon2000 p{
  margin: 0;
  font-size: 11px;
  color: #0B0F14;
}
.nxDivider{
  width: 100%;
  height: 1px;
  margin: 36px 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.12),
    transparent
  );
}

.nxCTA{
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .4px;
}
