  html{
scroll-behavior: smooth;
}

/* ===============================
   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;
   border-bottom: 2px solid var(--nx-brand);
}

.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: 60px; /* 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;
  }
}
:root{
  /* ===============================
     COASTAL RESORT – PREMIUM
     (adaptado para Nexus UI Clean)
     =============================== */

  /* Marca (FOOTER / geral) */
  --nx-brand: #1FAF9A;      /* teal premium (CTA/brand) */
  --nx-brand-2: #15A08C;    /* teal mais profundo p/ gradiente */

  /* Neutros */
  --nx-white: #ffffff;
  --nx-white-85: rgba(255,255,255,.88);
  --nx-white-70: rgba(255,255,255,.72);
  --nx-white-25: rgba(255,255,255,.22);

  /* Shadow (um pouco mais “soft premium”) */
  --nx-shadow: 0 10px 30px rgba(17, 24, 39, .14);

  --nx-radius: 14px;
  --nx-font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Header */
  --nx-head-bg: #ffffff;
  --nx-head-accent: #1FAF9A;          /* burger/cta/detalhes */
  --nx-head-line: rgba(17, 24, 39, .08);

  /* Drawer */
  --nx-drawer-overlay: rgba(17, 24, 39, .45);
  --nx-drawer-bg: #ffffff;
  --nx-drawer-border: rgba(17, 24, 39, .08);
  --nx-drawer-item-border: rgba(17, 24, 39, .12);

  /* Extras que vamos usar na LP (já deixa pronto) */
  --lp-bg-main: #F8FAF9;
  --lp-bg-soft: #EEF3F1;
  --lp-text-primary: #1E2423;
  --lp-text-secondary: #5E6A67;
  --lp-brand-soft: #D7F3EE;
  --lp-price: #FF6B5E;
  --lp-brand-hover: #158F7F;
}
.policy h1::after{
  background: var(--nx-brand); /* antes #E11D48 */
}
/* ===== Reset essencial (anti-borda / anti-overflow) ===== */
*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; width:100%; max-width:100%; overflow-x:hidden; }
img{ display:block; }

/* ===============================
   HERO B – Banner Vertical Premium (CORRIGIDO)
   - colado no header
   - sem borda gigante
   - sem zoom/corte
   =============================== */

.lp-heroB{
  background: var(--lp-bg-main);
  font-family: var(--nx-font);
}

/* Banner full width */
.lp-heroB__slider{
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0; /* remove gaps */
}

/* Track 2 slides */
.lp-heroB__track{
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}

/* Cada slide ocupa 100% */
.lp-heroB__slide{
  flex: 0 0 100%;
  width: 100%;
}

/* IMAGEM SEM ZOOM E SEM CORTE (proporção real) */
.lp-heroB__slide img{
  width: 100%;
  height: auto;     /* isso evita borda gigante e evita corte */
}

/* Dots */
.lp-heroB__dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.lp-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  transition: .25s ease;
}

.lp-dot.is-active{
  width: 18px;
  background: #fff;
}

/* Conteúdo colado no banner */
.lp-heroB__content{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 14px 18px 26px; /* bem próximo */
}

.lp-heroB__title{
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--lp-text-primary);
}

.lp-heroB__bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.lp-heroB__bullets li{
  font-size: 14px;
  color: var(--lp-text-secondary);
  padding-left: 22px;
  position: relative;
}

.lp-heroB__bullets li::before{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nx-brand);
  position: absolute;
  left: 0;
  top: 5px;
}

.lp-heroB__cta{
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--nx-brand);
  color: #fff;
  text-decoration: none;
  border-radius: var(--nx-radius);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(31,175,154,.22);
  transition: .2s ease;
}

.lp-heroB__cta:hover{
  background: var(--lp-brand-hover);
  transform: translateY(-1px);
}
.lp-heroB__cta{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* brilho passando */
.lp-heroB__cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,.18) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.18) 65%,
    transparent 100%);
  transform: translateX(-140%) skewX(-18deg);
  animation: lpSheen 3.6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
}

@keyframes lpSheen{
  0%   { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
  12%  { opacity: .9; }
  28%  { transform: translateX(140%) skewX(-18deg); opacity: .9; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* conteúdo acima do brilho */
.lp-heroB__cta{
  z-index: 1;
}
.lp-heroB__cta{
  box-shadow: 0 12px 26px rgba(31,175,154,.22);
}
.lp-heroB__cta:hover{
  box-shadow: 0 16px 34px rgba(31,175,154,.28);
}
.lp-heroB__bullets li{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}

.lp-heroB__bullets li.is-in{
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   BENEFÍCIOS – Premium Clean
   =============================== */

.lp-benefits{
  background: var(--lp-bg-soft);
  padding: 34px 0 34px;
  font-family: var(--nx-font);
}

.lp-benefits__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.lp-benefits__head{
  width: min(680px, 100%);
  margin: 0 auto 18px;
  text-align: left;
}

.lp-kicker{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .8px;
  font-weight: 900;
  color: rgba(17,24,39,.65);
}

.lp-benefits__title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 900;
  color: var(--lp-text-primary);
}

.lp-benefits__sub{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-text-secondary);
}

/* grid */
.lp-benefits__grid{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

/* cards */
.lp-benefit{
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: calc(var(--nx-radius) + 6px);
  padding: 16px 14px 14px;
  box-shadow: 0 10px 28px rgba(17,24,39,.06);
}

.lp-benefit__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(31,175,154,.12);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.lp-ico{
  width: 22px;
  height: 22px;
  color: var(--nx-brand);
}
.lp-ico path{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-benefit__ttl{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
  color: #111827;
}

.lp-benefit__txt{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lp-text-secondary);
}

/* mini destaque */
.lp-benefits__mini{
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: calc(var(--nx-radius) + 6px);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(17,24,39,.06);
}

.lp-mini__label{
  display: block;
  font-size: 12px;
  color: rgba(17,24,39,.62);
  margin-bottom: 2px;
  font-weight: 700;
}

.lp-mini__value{
  font-size: 14px;
  color: #111827;
  font-weight: 900;
}

.lp-mini__sep{
  width: 1px;
  height: 34px;
  background: rgba(17,24,39,.10);
}

/* Reveal animation (elegante) */
.js-reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* desktop */
@media (min-width: 820px){
  .lp-benefits__head{ text-align: center; }
  .lp-benefits__title{ font-size: 28px; }
  .lp-benefits__sub{ font-size: 15px; }

  .lp-benefits__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
/* Divisor premium (sem onda) */
.lp-dividerFade{
  height: 26px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(248,250,249,0) 0%,
    rgba(248,250,249,.55) 45%,
    rgba(248,250,249,1) 100%
  );
}

/* Se quiser uma linha finíssima de marca no começo da próxima seção */
.lp-benefits{
  position: relative;
}

.lp-benefits::before{
  content:"";
  position:absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(110px, 40vw);
  height: 2px;
  border-radius: 999px;
  background: rgba(31,175,154,.35); /* bem sutil */
}
.lp-heroB{ margin-bottom: 0 !important; padding-bottom: 0 !important; }
.lp-heroB__content{ padding-bottom: 14px !important; } /* opcional, controla respiro */
.lp-dividerFade{
  height: 26px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    var(--lp-bg-main) 0%,
    rgba(248,250,249,.75) 40%,
    var(--lp-bg-soft) 100%
  );
  margin-top: -1px; /* cola e some a linha */
}
.lp-benefits{
  background: #ffffff;
}
.lp-benefit{
  background: #F9FBFA;
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 6px 18px rgba(17,24,39,.05);
}
.lp-benefits__mini{
  background: linear-gradient(
    135deg,
    rgba(31,175,154,.08),
    rgba(31,175,154,.02)
  );
}
/* ===============================
   EXPERIÊNCIA – Carrossel premium
   =============================== */

.lp-exp{
  background: #fff;
  padding: 28px 0 34px;
  font-family: var(--nx-font);
}

.lp-exp__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.lp-exp__head{
  width: min(720px, 100%);
  margin: 0 auto 14px;
  text-align: left;
}

.lp-exp__title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 900;
  color: var(--lp-text-primary);
}
.lp-exp__sub{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-secondary);
}

/* Slider */
.lp-exp__slider{
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--nx-radius) + 10px);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 12px 28px rgba(17,24,39,.06);
  background: #fff;
}

.lp-exp__track{
  display: flex;
  width: 100%;
  transform: translate3d(0,0,0);
  transition: transform .55s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}

.lp-exp__slide{
  flex: 0 0 100%;
  width: 100%;
  background: #fff;
}

.lp-exp__media{
  margin: 0;
  background: #fff;
}
.lp-exp__media img{
  width: 100%;
  height: auto;
  display: block;
}

.lp-exp__body{
  padding: 14px 14px 16px;
}

.lp-exp__ttl{
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.2px;
}

.lp-exp__txt{
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lp-text-secondary);
}

/* chips (reaproveita o lp-chip que você já usa) */
.lp-exp__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* dots */
.lp-exp__dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17,24,39,.08);
}

.lp-exp__dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(17,24,39,.25);
  border: 0;
  padding: 0;
}
.lp-exp__dot.is-active{
  width: 18px;
  background: rgba(31,175,154,.85);
}

/* Desktop: mantém carrossel mas com cara editorial */
@media (min-width: 820px){
  .lp-exp__head{ text-align: center; }
  .lp-exp__title{ font-size: 28px; }
  .lp-exp__sub{ font-size: 15px; }

  .lp-exp__body{
    padding: 18px 18px 20px;
  }
}
/* ===============================
   KIT – Conteúdo do pacote (Premium)
   =============================== */

.lp-kit{
  background: #fff;
  padding: 26px 0 38px;
  font-family: var(--nx-font);
}

.lp-kit__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.lp-kit__head{
  width: min(720px, 100%);
  margin: 0 auto 14px;
  text-align: left;
}

.lp-kit__title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 900;
  color: var(--lp-text-primary);
}

.lp-kit__sub{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-secondary);
}

/* lista */
.lp-kit__list{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

/* item */
.lp-kitItem{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.06);
  background: rgba(31,175,154,.04);
}

.lp-kitItem__thumb{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(31,175,154,.10);
  border: 1px solid rgba(31,175,154,.18);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lp-kitItem__thumb img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.lp-kitItem__ttl{
  margin: 0 0 3px;
  font-size: 14.5px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.2px;
}

.lp-kitItem__txt{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--lp-text-secondary);
}

/* Desktop: mais “editorial” e leve */
@media (min-width: 820px){
  .lp-kit__head{ text-align: center; }
  .lp-kit__title{ font-size: 28px; }
  .lp-kit__sub{ font-size: 15px; }

  .lp-kit__list{
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .lp-kitItem{
    padding: 14px 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17,24,39,.05);
    border: 1px solid rgba(17,24,39,.08);
  }
}
/* ===============================
   FAQ – Premium Accordion
   =============================== */

.lp-faq{
  background: #fff;
  padding: 28px 0 44px;
  font-family: var(--nx-font);
}

.lp-faq__wrap{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.lp-faq__head{
  width: min(720px, 100%);
  margin: 0 auto 14px;
  text-align: left;
}

.lp-faq__title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  font-weight: 900;
  color: var(--lp-text-primary);
}

.lp-faq__sub{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-secondary);
}

/* lista */
.lp-faq__list{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

/* item */
.lp-faq__item{
  border-radius: calc(var(--nx-radius) + 6px);
  border: 1px solid rgba(17,24,39,.08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17,24,39,.05);
  overflow: hidden;
}

.lp-faq__q{
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  font-weight: 900;
  color: #111827;
}

.lp-faq__q::-webkit-details-marker{ display:none; }

/* ícone + / x (animado) */
.lp-faq__icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  position: relative;
  background: rgba(31,175,154,.10);
  border: 1px solid rgba(31,175,154,.18);
}
.lp-faq__icon::before,
.lp-faq__icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--nx-brand);
  transform: translate(-50%,-50%);
  border-radius: 2px;
}
.lp-faq__icon::after{
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .2s ease;
}

.lp-faq__a{
  padding: 0 14px 14px;
  color: var(--lp-text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
}

/* animação suave ao abrir */
.lp-faq__item > .lp-faq__a{
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .22s ease, transform .22s ease;
}

.lp-faq__item[open]{
  border-color: rgba(31,175,154,.22);
}

.lp-faq__item[open] .lp-faq__a{
  opacity: 1;
  transform: translateY(0);
}

.lp-faq__item[open] .lp-faq__icon::after{
  transform: translate(-50%,-50%) rotate(0deg); /* vira “-” */
}

/* Desktop */
@media (min-width: 820px){
  .lp-faq__head{ text-align: center; }
  .lp-faq__title{ font-size: 28px; }
  .lp-faq__sub{ font-size: 15px; }

  .lp-faq__list{
    width: min(860px, 100%);
    margin: 18px auto 0;
  }
}
/* evita puxar pro lado */
html, body{ margin:0; padding:0; width:100%; max-width:100%; overflow-x:hidden; }
*{ box-sizing:border-box; }
img{ display:block; }

/* ===============================
   BUY / CTA AREA (Premium)
   =============================== */

.lp-buy{
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 10px 12px 18px;
  font-family: var(--nx-font);
  background: #fff;
}

/* hero */
.lp-buy__hero{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
}

.lp-buy__heroImg{
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .18s ease;
}

.lp-buy__heroOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 12px 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.38) 0%,
    rgba(0,0,0,.18) 38%,
    rgba(0,0,0,0) 70%);
}

.lp-buy__headline{
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.05;
  font-size: 20px;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* info */
.lp-buy__info{ padding: 14px 2px 0; }

.lp-buy__titleRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.lp-buy__title{
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.3px;
}

.lp-buy__badge{
  font-size: 12px;
  font-weight: 900;
  color: rgba(17,24,39,.65);
  white-space: nowrap;
  margin-top: 2px;
}

/* rating */
.lp-buy__rating{
  display:flex;
  align-items:center;
  gap: 8px;
  margin-top: 8px;
}
.lp-buy__stars{ color:#F59E0B; letter-spacing:1px; font-size:14px; }
.lp-buy__rateTxt{ font-size:12.5px; color: rgba(17,24,39,.65); }

/* price */
.lp-buy__price{ margin-top: 10px; }
.lp-buy__priceTop{ display:flex; align-items:center; gap: 8px; }
.lp-buy__from{ font-size: 12px; color: rgba(17,24,39,.55); }
.lp-buy__off{
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: #EF4444;
  padding: 3px 8px;
  border-radius: 999px;
}
.lp-buy__now{
  display:block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #111827;
  margin-top: 3px;
}
.lp-buy__installment{
  font-size: 12.5px;
  color: rgba(17,24,39,.65);
  margin-top: 2px;
}

/* pix */
.lp-buy__pix{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(31,175,154,.08);
  border: 1px solid rgba(31,175,154,.18);
}
.lp-buy__pixIcon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(31,175,154,.18);
  position: relative;
}
.lp-buy__pixIcon::after{
  content:"";
  position:absolute;
  inset: 7px;
  border-radius: 6px;
  border: 2px solid rgba(31,175,154,.85);
  transform: rotate(45deg);
}
.lp-buy__pixTxt{ font-size: 13px; color: rgba(17,24,39,.80); }
.lp-buy__pixTxt small{ display:block; margin-top: 2px; color: rgba(17,24,39,.62); font-size: 12px; }
.lp-buy__pixTag{
  font-size: 11px;
  font-weight: 900;
  color: #0F766E;
  background: rgba(31,175,154,.18);
  padding: 3px 7px;
  border-radius: 999px;
  margin-left: 6px;
}

/* variants */
.lp-buy__variants{ margin-top: 12px; }
.lp-buy__variantsTop{ display:flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.lp-buy__label{ font-size: 12px; color: rgba(17,24,39,.60); }
.lp-buy__color{ font-size: 12.5px; color: #111827; }

.lp-buy__swatches{ display:flex; gap: 10px; }

.lp-swatch{
  width: 58px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  padding: 4px;
  display:grid;
  place-items:center;
  cursor:pointer;
  position: relative;
  overflow:hidden;
}
.lp-swatch img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-swatch.is-active{
  border-color: rgba(31,175,154,.55);
  box-shadow: 0 10px 22px rgba(31,175,154,.18);
}

.lp-swatch.is-oos{
  opacity: .55;
  filter: grayscale(1);
  cursor: not-allowed;
}

.lp-swatch__oos{
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: rgba(17,24,39,.78);
  color:#fff;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: .6px;
  padding: 5px 6px;
  border-radius: 10px;
  text-align:center;
}

/* CTA */
.lp-buy__cta{
  margin-top: 14px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight: 900;
  color:#fff;
  background: var(--nx-brand);
  box-shadow: 0 14px 28px rgba(31,175,154,.22);
  transition: transform .18s ease, filter .18s ease;
}
.lp-buy__cta:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.lp-buy__cta:active{ transform: translateY(0px); }

/* Toast premium */
.lp-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(17,24,39,.92);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 9999;
}
.lp-toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
/* ===== Swatches (1:1 sem cortar) ===== */
.lp-buy__swatches{
  display: flex;
  gap: 10px;
}

.lp-swatch{
  width: 52px;
  height: 52px;            /* QUADRADO */
  padding: 0;              /* sem padding pra não “cortar” */
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;        /* ok, porque a img vai ficar contain */
}

.lp-swatch img{
  width: 100%;
  height: 100%;
  padding: 6px;            /* respiro interno (opcional) */
  object-fit: contain;     /* NÃO CORTA */
  object-position: center;
  display: block;
}

/* ativo */
.lp-swatch.is-active{
  border-color: rgba(31,175,154,.55);
  box-shadow: 0 10px 22px rgba(31,175,154,.18);
}

/* esgotado (sem sumir) */
.lp-swatch.is-oos{
  opacity: .55;
  filter: grayscale(1);
  cursor: not-allowed;
}

.lp-swatch__oos{
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: rgba(17,24,39,.78);
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: .6px;
  padding: 5px 6px;
  border-radius: 10px;
  text-align: center;
}
.lp-buy__pixIcon{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(31,175,154,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}

.pixImg{
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.lp-buy__cta.is-disabled{
  background: rgba(17,24,39,.25);
  color: rgba(17,24,39,.75);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
/* ===============================
   NX SHIP (Correios) — Blindado
   =============================== */
.nxShip{
  width: min(560px, 100%);
  margin: 12px auto 0;
  padding: 0 12px; /* alinha com a seção de compra */
  font-family: var(--nx-font);
}

.nxShip__row{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 12px;
  border-radius: 16px;

  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 10px 22px rgba(17,24,39,.05);
}

/* Logo nunca estoura */
.nxShip__logo{
  height: 96px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

/* Texto */
.nxShip__txt{
  display: grid;
  gap: 2px;
  min-width: 0;
}

.nxShip__line1{
  font-size: 13px;
  color: rgba(17,24,39,.80);
  line-height: 1.2;
}

.nxShip__free{
  color: var(--nx-brand);
  font-weight: 900;
}

.nxShip__to{
  margin: 0 6px;
  color: rgba(17,24,39,.55);
}

.nxShip__city{
  font-weight: 900;
  color: #111827;
}

.nxShip__line2{
  font-size: 12.5px;
  color: rgba(17,24,39,.60);
}

/* Mobile pequeno */
@media (max-width: 380px){
  .nxShip__logo{ height: 22px; max-width: 92px; }
  .nxShip__line1{ font-size: 12.5px; }
}
:root{
  --checkout-green: #00B67A;
  --checkout-green-dark: #009a68;
}
.lp-buy__now{
  font-size: 28px;
  font-weight: 900;
  color: var(--checkout-green);
  letter-spacing: -0.5px;
}
.lp-buy__cta{
  position: relative;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--checkout-green);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 900;
  font-size: 16px;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(0,182,122,.35);
}

/* Hover */
.lp-buy__cta:hover{
  background: var(--checkout-green-dark);
  transform: translateY(-2px);
}

/* Pulsar elegante */
@keyframes ctaPulse{
  0%{ box-shadow: 0 0 0 0 rgba(0,182,122,.5); }
  70%{ box-shadow: 0 0 0 14px rgba(0,182,122,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,182,122,0); }
}

.lp-buy__cta{
  animation: ctaPulse 2.2s infinite;
}

/* Brilho animado */
.lp-buy__cta::before{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.4) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
}

@keyframes shine{
  0%{ left: -75%; }
  60%{ left: 130%; }
  100%{ left: 130%; }
}
:root{
  --reviews-text:#222;
  --reviews-muted:#777;
  --reviews-line:#e7e7e7;
  --reviews-soft:#f5f5f5;
  --reviews-card:#fff;
  --reviews-star:#f3c621;
  --reviews-green:#16a34a;
  --reviews-shadow:0 10px 30px rgba(0,0,0,.05);
}

.reviewsPremium{
  padding:28px 14px 40px;
  background:#fff;
  font-family:'Inter',sans-serif;
}

.reviewsPremium__wrap{
  max-width:1080px;
  margin:0 auto;
}

.reviewsPremium__head{
  margin-bottom:18px;
}

.reviewsPremium__title{
  margin:0;
  font-size:28px;
  line-height:1.08;
  font-weight:800;
  color:var(--reviews-text);
  letter-spacing:-0.03em;
}

.reviewsPremium__divider{
  height:1px;
  background:#dcdcdc;
  margin-top:14px;
}

.reviewsSummary{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:28px;
  align-items:start;
  padding:18px 0 10px;
}

.reviewsSummary__score{
  display:flex;
  align-items:flex-start;
  gap:2px;
  line-height:1;
}

.reviewsSummary__big{
  font-size:72px;
  font-weight:800;
  color:var(--reviews-star);
  letter-spacing:-0.05em;
}

.reviewsSummary__small{
  font-size:22px;
  margin-top:10px;
  font-weight:700;
  color:#444;
}

.reviewsSummary__stars{
  margin-top:8px;
  color:var(--reviews-star);
  font-size:22px;
  letter-spacing:2px;
}

.reviewsSummary__count{
  margin-top:8px;
  font-size:12px;
  color:#555;
  letter-spacing:.08em;
}

.reviewsBar{
  display:grid;
  grid-template-columns:36px 1fr 42px;
  gap:10px;
  align-items:center;
  margin-bottom:8px;
}

.reviewsBar__label{
  font-size:14px;
  font-weight:500;
  color:#222;
}

.reviewsBar__label span{
  color:var(--reviews-star);
}

.reviewsBar__track{
  width:100%;
  height:10px;
  background:#e9e9e9;
  border-radius:999px;
  overflow:hidden;
}

.reviewsBar__fill{
  height:100%;
  background:var(--reviews-star);
  border-radius:999px;
}

.reviewsBar__num{
  font-size:14px;
  color:#333;
}

.reviewsSummary__btn{
  margin-top:18px;
  border:none;
  background:#373737;
  color:#fff;
  border-radius:10px;
  height:44px;
  padding:0 22px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

.reviewWriteBox{
  margin-top:16px;
  margin-bottom:18px;
  border:1px solid var(--reviews-line);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--reviews-shadow);
}

.reviewWriteBox__inner{
  padding:16px;
}

.reviewWriteBox__grid{
  display:grid;
  grid-template-columns:1fr 180px;
  gap:12px;
}

.reviewField{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.reviewField label{
  font-size:13px;
  font-weight:600;
  color:#333;
}

.reviewField input,
.reviewField select,
.reviewField textarea{
  width:100%;
  border:1px solid #dddddd;
  border-radius:12px;
  background:#fff;
  padding:12px 14px;
  font:inherit;
  color:#222;
  outline:none;
}

.reviewField textarea{
  resize:vertical;
  min-height:120px;
}

.reviewField input:focus,
.reviewField select:focus,
.reviewField textarea:focus{
  border-color:#bfbfbf;
}

.reviewField--full{
  margin-top:12px;
}

.reviewWriteBox__actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:14px;
}

.reviewWriteBox__cancel,
.reviewWriteBox__submit{
  border:none;
  height:42px;
  padding:0 18px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

.reviewWriteBox__cancel{
  background:#efefef;
  color:#333;
}

.reviewWriteBox__submit{
  background:#373737;
  color:#fff;
}

.reviewWriteBox__msg{
  margin-top:12px;
  font-size:13px;
  color:#16a34a;
  font-weight:600;
}

.reviewsList{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.reviewCard{
  background:#fff;
  border:1px solid #e7e7e7;
  border-radius:16px;
  padding:16px;
  box-shadow:var(--reviews-shadow);
}

.reviewCard--textOnly{
  min-height:230px;
}

.reviewCard__top{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.reviewCard__avatar{
  width:42px;
  height:42px;
  border-radius:999px;
  object-fit:cover;
  display:block;
  flex:0 0 42px;
}

.reviewCard__avatarFallback{
  width:42px;
  height:42px;
  border-radius:999px;
  background:#4b5563;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  flex:0 0 42px;
}

.reviewCard__nameRow{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
}

.reviewCard__name{
  font-size:14px;
  font-weight:700;
  color:#222;
}

.reviewCard__verified{
  font-size:11px;
  color:#333;
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-weight:600;
}

.reviewCard__verifiedDot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--reviews-green);
  display:inline-block;
}

.reviewCard__stars{
  margin-top:6px;
  color:var(--reviews-star);
  font-size:15px;
  line-height:1;
  letter-spacing:1px;
}

.reviewCard__text{
  margin:12px 0 14px;
  font-size:14px;
  line-height:1.55;
  color:#333;
}

.reviewCard__photo{
  overflow:hidden;
  border-radius:12px;
  border:1px solid #ededed;
  background:#fafafa;
}

.reviewCard__photo img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
}

.reviewsPagination{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.reviewsPagination__arrow{
  border:none;
  background:transparent;
  color:#333;
  font-size:24px;
  padding:4px 8px;
  cursor:pointer;
}

.reviewsPagination__arrow[disabled]{
  opacity:.35;
  cursor:default;
}

.reviewsPagination__numbers{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.reviewsPagination__num{
  min-width:34px;
  height:34px;
  border:none;
  background:transparent;
  color:#333;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

.reviewsPagination__num.is-active{
  background:#dfe4e8;
  color:#222;
  border-radius:0;
}

@media (max-width: 920px){
  .reviewsSummary{
    grid-template-columns:1fr;
    gap:18px;
  }

  .reviewsList{
    grid-template-columns:1fr 1fr;
  }

  .reviewWriteBox__grid{
    grid-template-columns:1fr;
  }
}



  .reviewsSummary__big{
    font-size:58px;
  }

  .reviewsList{
    grid-template-columns:1fr;
    gap:14px;
  }

  .reviewCard__photo img{
    height:190px;
  }

  .reviewWriteBox__actions{
    justify-content:stretch;
    flex-direction:column;
  }

  .reviewWriteBox__cancel,
  .reviewWriteBox__submit{
    width:100%;
  }

  :root{
  --trust-bg: #efefef;
  --trust-title: #1FAF9A; /* laranja do título */
  --trust-text: #111111;
  --trust-muted: #1f1f1f;
  --trust-icon: #111111;
}

.beneficiosInfo{
  background: var(--trust-bg);
  padding: 26px 18px;
}

.beneficiosInfo__wrap{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.beneficiosInfo__item{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.beneficiosInfo__icon{
  color: var(--trust-icon);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.beneficiosInfo__icon svg{
  width: 38px;
  height: 38px;
  display: block;
}

.beneficiosInfo__content h3{
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--trust-title);
  letter-spacing: -.01em;
}

.beneficiosInfo__content p{
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--trust-text);
  max-width: 460px;
}



  .beneficiosInfo__wrap{
    gap: 20px;
  }

  .beneficiosInfo__item{
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .beneficiosInfo__icon{
    width: 34px;
    height: 34px;
  }

  .beneficiosInfo__icon svg{
    width: 34px;
    height: 34px;
  }

  .beneficiosInfo__content h3{
    font-size: 15px;
  }

  .beneficiosInfo__content p{
    font-size: 14px;
    line-height: 1.32;
  }
  /* ===============================
   SOCIAL PROOF POPUP
   =============================== */

.macena-social-proof{
  position: fixed;
  left: 14px;
  bottom: 18px;
  z-index: 9998;

  width: min(320px, calc(100vw - 28px));
  display: flex;
  align-items: flex-start;
  gap: 10px;

  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  padding: 12px 12px;

  box-shadow:
    0 14px 34px rgba(17,24,39,.10),
    0 2px 8px rgba(17,24,39,.05);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.98);
  pointer-events: none;

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}

.macena-social-proof.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sp-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  flex: 0 0 32px;

  display: grid;
  place-items: center;

  background: rgba(31,175,154,.12);
  color: var(--nx-brand);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.sp-text{
  min-width: 0;
}

.sp-text h4{
  margin: 0 0 3px;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 900;
  color: #111827;
}

.sp-text p{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(17,24,39,.72);
}

.sp-text b{
  color: #111827;
}

.sp-text .product{
  color: var(--nx-brand);
  font-weight: 800;
}

.sp-time{
  font-size: 11px !important;
  color: rgba(17,24,39,.45) !important;
  margin-top: 4px !important;
}

/* mobile */
@media (max-width: 520px){
  .macena-social-proof{
    left: 10px;
    right: 10px;
    bottom: 14px;
    width: auto;
    padding: 11px 11px;
    border-radius: 14px;
  }

  .sp-text h4{
    font-size: 13px;
  }

  .sp-text p{
    font-size: 12px;
  }
}.sp-iconWrap{
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.sp-liveDot{
  position: absolute;
  right: -2px;
  top: -1px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34,197,94,.45);
  animation: spPulse 1.8s infinite;
}

@keyframes spPulse{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  70%{ box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}/* ===============================
   STOCK / PROVA SOCIAL ESTOQUE
   =============================== */

.lp-stock{
  margin-top: 14px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}

.lp-stock__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lp-stock__left{
  min-width: 0;
}

.lp-stock__kicker{
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  color: rgba(17,24,39,.52);
  margin-bottom: 4px;
}

.lp-stock__value{
  display: block;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #111827;
}

#stockCount{
  color: var(--checkout-green, #00B67A);
}

.lp-stock__right{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.lp-stock__liveDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34,197,94,.35);
  animation: stockPulse 1.8s infinite;
}

@keyframes stockPulse{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,.35); }
  70%{ box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.lp-stock__liveText{
  font-size: 11px;
  color: rgba(17,24,39,.52);
  font-weight: 700;
}

.lp-stock__bar{
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.08);
  overflow: hidden;
}

.lp-stock__fill{
  position: relative;
  width: 67%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00B67A 0%, #20C997 100%);
  transition: width .7s ease;
}

.lp-stock__fill::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid #00B67A;
  transform: translate(35%, -50%);
  box-shadow: 0 4px 10px rgba(0,0,0,.10);
}

.lp-stock__note{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(17,24,39,.58);
}

.lp-stock__note b{
  color: #111827;
}

@media (max-width: 520px){
  .lp-stock{
    padding: 13px 13px 12px;
  }

  .lp-stock__top{
    flex-direction: column;
    gap: 6px;
  }

  .lp-stock__right{
    margin-top: 0;
  }

  .lp-stock__value{
    font-size: 14px;
  }
}/* ===============================
   STOCK / PROVA SOCIAL ESTOQUE
   PREMIUM REFINADO
   =============================== */

.lp-stock{
  margin-top: 14px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #ffffff;
  border: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
}

.lp-stock__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lp-stock__left{
  min-width: 0;
  width: 100%;
}

.lp-stock__value{
  display: block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.2px;
}

#stockCount{
  color: var(--checkout-green, #00B67A);
}

.lp-stock__right{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}

.lp-stock__liveDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34,197,94,.35);
  animation: stockPulse 1.8s infinite;
  flex: 0 0 8px;
}

@keyframes stockPulse{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,.35); }
  70%{ box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.lp-stock__liveText{
  font-size: 11.5px;
  color: rgba(17,24,39,.52);
  font-weight: 700;
  line-height: 1.2;
}

/* barra */
.lp-stock__bar{
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.04),
    rgba(0,0,0,0.06)
  );
  overflow: hidden;
}

.lp-stock__fill{
  position: relative;
  width: 67%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00B67A 0%, #20C997 100%);
  transition: width .7s ease;
}

.lp-stock__fill::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid #00B67A;
  transform: translate(35%, -50%);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* nota final */
.lp-stock__note{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(17,24,39,.58);
  font-weight: 700;
  letter-spacing: -0.1px;
}

/* mobile refinado */
@media (max-width: 520px){
  .lp-stock{
    padding: 13px 13px 12px;
    border-radius: 14px;
  }

  .lp-stock__top{
    flex-direction: column;
    gap: 4px;
  }

  .lp-stock__value{
    font-size: 14px;
    line-height: 1.35;
  }

  .lp-stock__right{
    margin-top: 6px;
  }

  .lp-stock__liveText{
    font-size: 11px;
  }

  .lp-stock__note{
    font-size: 11.5px;
  }
}/* trilho */
.lp-stock__bar{
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.10); /* parte “vazia” */
  overflow: hidden;
}

/* progresso verde */
.lp-stock__fill{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 67%; /* JS altera isso */
  border-radius: 999px;
  background: linear-gradient(90deg, #00B67A 0%, #20C997 100%);
  transition: width .7s ease;
}

/* bolinha no fim da parte verde */
.lp-stock__fill::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid #00B67A;
  transform: translate(35%, -50%);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}/* ===============================
   ESPECIFICAÇÕES DO PRODUTO
   =============================== */

.lp-specs{
  padding: 30px 0 40px;
  background: #fff;
}

.lp-specs__wrap{
  width: min(1100px, 92vw);
  margin: auto;
}

.lp-specs__title{
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 6px;
  color: #111827;
}

.lp-specs__sub{
  font-size: 14px;
  color: rgba(17,24,39,.6);
  margin: 0 0 16px;
  line-height: 1.55;
}

/* accordion */
.lp-acc{
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.08);
  margin-bottom: 12px;
  overflow: hidden;
}

.lp-acc__summary{
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-weight: 800;
  font-size: 16px;
  color: #111827;
  list-style: none;
}

.lp-acc__summary::-webkit-details-marker{
  display: none;
}

.lp-acc__icon{
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
}

.lp-acc__icon::before,
.lp-acc__icon::after{
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .2s ease;
}

.lp-acc__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.lp-acc[open] .lp-acc__icon::after{
  transform: translate(-50%, -50%) rotate(0deg);
}

.lp-acc__content{
  padding: 0 16px 16px;
}

/* tabela */
.lp-specTable__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,24,39,.06);
}

.lp-specTable__row:last-child{
  border-bottom: 0;
}

.lp-specTable__label{
  font-size: 13px;
  color: rgba(17,24,39,.55);
  line-height: 1.45;
}

.lp-specTable__value{
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.45;
}

/* galeria */
.lp-galleryCard{
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.08);
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.lp-galleryCard__cover{
  aspect-ratio: 1 / 1;
  background: #f6f7f8;
}

.lp-galleryCard__cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-galleryCard__toggle{
  width: 100%;
  height: 54px;
  border: 0;
  border-top: 1px solid rgba(17,24,39,.08);
  background: #fff;
  font-weight: 700;
  color: var(--nx-brand);
  cursor: pointer;
}

.lp-galleryCard__stack{
  padding: 12px;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(17,24,39,.08);
}

.lp-galleryCard__stack img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #f6f7f8;
  display: block;
}.reviewCard__photo{
  width:100%;
  aspect-ratio: 3 / 4;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #ededed;
  background:#fafafa;
}

.reviewCard__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}