/* ================= RESET & VARS ================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

:root{
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);
  --accent: #005DCB;
  --accent-light: rgba(0,93,203,.12);
  --accent-border: rgba(0,93,203,.25);
  --green: #16A34A;
  --green-hover: #15803D;
}

*{ box-sizing: border-box; margin:0; padding:0; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-anchor: none;
}

/* ================= HEADER ================= */
.hdr{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hdr__inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.hdr__left{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.hdr__menuBtn{
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 3px;
  cursor:pointer;
  padding: 0;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.hdr__menuBtn:hover{
  border-color: rgba(0,93,203,.40);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transform: translateY(-1px);
}

.hdr__menuBtn span{
  display:block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  margin: 0;
}

.hdr__logoLink{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.hdr__logo{
  display: block;
  height: 15px;
  width: auto;
  line-height: 1;
  transform: translateY(4px);
}

.hdr__right{
  display:flex;
  align-items:center;
}

.hdr__secure{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.hdr__divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0,93,203,.0), rgba(15,23,42,.10), rgba(0,93,203,.0));
}

@media (max-width: 520px){
  .hdr__secure{
    font-size: 10px;
    letter-spacing: .10em;
  }
}

/* ================= DRAWER MENU ================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.drawer.is-open{
  pointer-events: auto;
  opacity: 1;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.35);
  cursor: pointer;
}

.drawer__panel{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: #fff;
  border-right: 1px solid var(--line);
  transform: translateX(-102%);
  transition: transform .22s ease;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 8px 6px 12px;
  border-bottom: 1px solid var(--line);
}

.drawer__title{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.drawer__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
}

.drawer__link{
  display:block;
  padding: 14px 10px;
  margin-top: 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(15,23,42,.08);
}

.drawer__link:hover{
  border-color: rgba(0,93,203,.35);
}

.drawer__footer{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.drawer__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* ================= HERO ================= */
.hero{
  background: #fff;
  padding: 26px 0 10px;
}

.hero__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.hero__title{
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 700;
}

.hero__title .line1{
  display: block;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.hero__title .hero__accent{
  font-weight: 800;
  color: var(--accent);
}

.hero__media{
  margin: 0 auto 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f8fb;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  max-width: 860px;
}

.hero__img{
  width: 100%;
  height: auto;
  display: block;
}

.hero__sub{
  margin: 8px auto 14px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.hero__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn--primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,93,203,.18);
}

.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,93,203,.24);
}

@media (max-width: 720px){
  .hero__title{ font-size: 34px; }
  .hero__media{ border-radius: 18px; }
}

@media (max-width: 520px){
  .hero__title{ font-size: 30px; }
  .btn{ width: 100%; }
}

/* ================= CONTADOR CLIENTES ================= */
.heroCounter{
  background: linear-gradient(135deg, #005DCB 0%, #003d8a 100%);
  padding: 14px 0;
}

.heroCounter__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.heroCounter__icon{
  font-size: 20px;
  line-height: 1;
}

.heroCounter__text{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.heroCounter__num{
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

@media (max-width: 520px){
  .heroCounter__text{ font-size: 13px; }
  .heroCounter__num{ font-size: 18px; }
}

/* ================= BENEFÍCIOS (CARROSSEL) ================= */
.benefits{
  background: #fff;
  padding: 22px 0 10px;
}

.benefits__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.benefits__title{
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
  text-align: center;
}

.benefits__sub{
  margin: 0 0 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.benefits__carousel{
  position: relative;
}

.benefits__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.benefits__track::-webkit-scrollbar{ display:none; }

.benefitCard{
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  overflow: hidden;
}

.benefitCard__media{
  background: #f7f8fb;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.benefitCard__media img,
.benefitCard__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefitCard__h{
  font-size: 15px;
  margin: 12px 12px 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.benefitCard__p{
  margin: 0 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.benefits__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.dot.is-active{
  background: var(--accent);
  border-color: rgba(0,93,203,.35);
  transform: scale(1.15);
}

@media (min-width: 920px){
  .benefits__track{
    grid-auto-columns: 1fr;
    overflow: visible;
  }
  .benefits__dots{ display:none; }
}

/* ================= CHECKLIST ================= */
.checks{
  background: #fff;
  padding: 22px 0 6px;
}

.checks__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.checks__title{
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}

.checks__sub{
  text-align: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.checks__list{
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.checkItem{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
  opacity: 1;
  transform: none;
}

.checkIcon{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-weight: 900;
  line-height: 1;
  font-size: 12px;
}

.checkTxt strong{
  display: block;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.checkTxt span{
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

@media (min-width: 920px){
  .checks__list{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .checks__title{ font-size: 18px; }
}

/* ================= MATERIAL ================= */
.material{
  background: #fff;
  padding: 26px 0 12px;
}

.material__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.material__title{
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.material__media{
  width: 100%;
  max-width: 380px;
  margin: 0 auto 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f8fb;
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}

.material__media video{
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 16px;
}

.material__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.material__text{
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 520px){
  .material{ padding-top: 22px; }
  .material__title{ font-size: 18px; }
}

/* ================= ESPECIFICAÇÕES ================= */
.specs{
  background: #fff;
  padding: 20px 0 8px;
}

.specs__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.specs__title{
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px;
}

.specs__list{
  list-style: none;
  padding: 0;
  margin: 0 auto 14px;
  max-width: 820px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.specs__list li{
  padding: 14px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.specs__list strong{
  color: var(--text);
}

.specs__note{
  max-width: 820px;
  margin: 0 auto 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  border: 1px solid rgba(0,93,203,.22);
  background: rgba(0,93,203,.06);
  border-radius: 16px;
  padding: 12px 12px;
}

.specs__noteIcon{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.specs__noteTxt{
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.specs__accent{
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 520px){
  .specs__title{ font-size: 17px; }
}

/* ================= CTA PRODUTO ================= */
.cta{
  background:#fff;
  padding:26px 0 16px;
}

.cta__wrap{
  max-width:420px;
  margin:0 auto;
  padding:0 16px;
}

.cta__title{
  text-align:center;
  font-size:22px;
  letter-spacing:-.02em;
  margin-bottom:6px;
  font-weight:800;
}

.cta__subtitle{
  text-align:center;
  font-size:14px;
  color:#555;
  margin-bottom:14px;
}

/* Galeria */
.pg{
  margin: 10px auto 0;
  width: 100%;
  max-width: 420px;
}

.pg__main{
  width: 100%;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  display: block;
}

.pg__main img{
  width: 100%;
  height: auto;
  display: block;
}

.pg__thumbs{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pg__thumbs::-webkit-scrollbar{ display:none; }

.pg__thumb{
  flex: 0 0 auto;
  width: 62px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e9e9ee;
  background: #fff;
  padding: 0;
  overflow: hidden;
  opacity: .85;
  cursor: pointer;
}

.pg__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.pg__thumb.is-active{
  border-color: var(--accent);
  opacity: 1;
}

/* ================= NKIT (Escolha seu kit) ================= */
.nkit{
  width: 100%;
  padding: 18px 0 6px;
}

.nkit__head{
  margin-bottom: 12px;
}

.nkit__title{
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.nkit__sub{
  margin: 6px 0 0;
  font-size: 13px;
  opacity: .85;
}

.nkit__grid{
  display: grid;
  gap: 12px;
}

.nkitCard{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  text-align: left;
  color: #111;
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}

.nkitCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.nkitCard.is-selected{
  border: 2px solid var(--accent);
  background: rgba(0,93,203,.06);
  box-shadow: 0 12px 30px rgba(0,93,203,.10);
}

.nkitCard__left{
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: start;
}

.nkitCard__badge,
.nkitCard__badge--soft{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #fff;
  background: var(--accent);
}

.nkitCard__badge--soft{
  background: rgba(0,93,203,.12);
  color: var(--accent);
}

.nkitCard__badge--hot{
  background: #E85D04;
  color: #fff;
}

.nkitCard__thumb{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.nkitCard__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nkitCard__mid{
  padding-right: 0 !important;
}

.nkitCard__name{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 18px;
  color: #111 !important;
  -webkit-text-fill-color: #111;
}

.nkitCard__name span{
  color: rgba(17,17,17,.45) !important;
  -webkit-text-fill-color: rgba(17,17,17,.45);
  padding: 0 6px;
}

.nkitCard__name strong{
  font-weight: 800;
}

.nkitCard__savePill{
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.10);
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}

.nkitCard__right{
  text-align: right;
  white-space: nowrap;
}

.nkitCard__old{
  font-size: 12px;
  text-decoration: line-through;
  opacity: .65;
}

.nkitCard__now{
  margin-top: 2px;
  font-size: 16px;
  font-weight: 900;
  color: #16a34a;
}

@media (max-width: 520px){
  .nkitCard__badge,
  .nkitCard__badge--soft{
    top: 8px;
    right: 8px;
    font-size: 10px;
    padding: 5px 8px;
  }
  .nkitCard__name{ padding-top: 16px; }
}

@media (max-width: 420px){
  .nkitCard{
    grid-template-columns: 58px 1fr auto;
    padding: 10px;
    border-radius: 14px;
  }
  .nkitCard__now{ font-size: 15px; }
}

/* ================= WIDGET MACENA ================= */
#widget-macena{
  color:#111;
  box-sizing:border-box;
  margin: 14px auto 0;
  max-width: 560px;
  width: 100%;
}

#widget-macena .macena-container{
  background:#fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,.10);
  box-shadow: 0 10px 30px rgba(17,17,17,.06);
}

#widget-macena h2{
  text-align:center;
  margin: 2px 0 6px 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color:#111;
}

#widget-macena .subtitle{
  text-align:center;
  margin: 0 0 16px 0;
  font-size: .92rem;
  color: rgba(17,17,17,.62);
}

#widget-macena .form-group{
  margin-bottom: 12px;
}

#widget-macena .form-group label{
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 8px;
  display:block;
  color: rgba(17,17,17,.72);
  text-transform: uppercase;
  letter-spacing: .06em;
}

#widget-macena select{
  width:100%;
  height: 46px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17,17,17,.18);
  background:#fff;
  font-size: 1rem;
  color:#111;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

#widget-macena select:focus{
  border-color: rgba(0,93,203,.55);
  box-shadow: 0 0 0 4px rgba(0,93,203,.15);
}

#widget-macena select:disabled{
  background: rgba(17,17,17,.04);
  color: rgba(17,17,17,.45);
  cursor:not-allowed;
}

#widget-macena .color-selector-container{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content:center;
  padding: 6px 0 2px;
  transition: opacity .2s ease;
  margin-top: 12px;
}

#widget-macena .color-selector-container.disabled{
  opacity:.35;
  pointer-events:none;
}

#widget-macena .color-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(17,17,17,.14);
  position: relative;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 6px 16px rgba(17,17,17,.10);
}

#widget-macena .color-btn:hover{
  transform: translateY(-1px) scale(1.04);
}

#widget-macena .color-btn.selected{
  border-color: rgba(0,93,203,.90);
  box-shadow: 0 0 0 5px rgba(0,93,203,.18), 0 10px 22px rgba(17,17,17,.10);
  transform: scale(1.08);
}

#widget-macena .color-btn.selected::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.85);
  opacity: .9;
}

#widget-macena .color-label{
  text-align:center;
  font-size: .90rem;
  color: rgba(17,17,17,.70);
  margin-top: 6px;
  min-height: 1.2em;
  font-weight: 700;
}

#widget-macena .resultado-box{
  margin-top: 14px;
  display: none;
  animation: fadeInMacena .35s ease;
}

#widget-macena .success-box{
  background: rgba(0,93,203,.06);
  border: 1px solid rgba(0,93,203,.22);
  color: rgba(17,17,17,.90);
  padding: 14px;
  border-radius: 14px;
  text-align:center;
  box-shadow: 0 10px 22px rgba(17,17,17,.06);
}

#widget-macena .success-icon{
  font-size: 1.6rem;
  display:block;
  margin-bottom: 6px;
}

@keyframes fadeInMacena{
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform: translateY(0); }
}

@media (max-width: 420px){
  #widget-macena .macena-container{ padding: 14px; border-radius: 16px; }
  #widget-macena h2{ font-size: 1.05rem; }
  #widget-macena select{ height: 44px; border-radius: 12px; }
  #widget-macena .color-btn{ width: 42px; height: 42px; }
}

/* ================= PREÇO ================= */
.cta__price{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  text-align: center;
}

.cta__priceCompare{
  font-size: 12px;
  opacity: .7;
  font-weight: 700;
}

.cta__priceCompare span{
  text-decoration: line-through;
}

.cta__priceMain{
  font-size: 26px;
  font-weight: 950;
  margin-top: 6px;
  letter-spacing: -0.4px;
  color: var(--green);
}

.cta__priceSub{
  font-size: 12px;
  opacity: .75;
  margin-top: 4px;
  font-weight: 700;
}

/* ================= ENTREGA ================= */
.nxShip{
  margin-top: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.nxShip__row{ display:flex; gap:10px; align-items:center; }
.nxShip__logo{ width:34px; height:34px; object-fit:contain; flex:0 0 auto; }
.nxShip__txt{ line-height:1.15; }

.nxShip__line1{ font-size:13px; color: rgba(0,0,0,.78); }
.nxShip__free{ color:#16a34a; font-weight:900; }
.nxShip__to{ margin:0 4px; color: rgba(0,0,0,.55); }
.nxShip__city{ font-weight:900; color: rgba(0,0,0,.82); }

.nxShip__line2{ margin-top:4px; font-size:12.5px; color: rgba(0,0,0,.60); }

@media (max-width:360px){
  .nxShip__line1{ font-size:12.5px; }
  .nxShip__line2{ font-size:12px; }
}

/* ================= BOTÃO COMPRAR ================= */
.cta__buy{
  width:100%;
  margin-top:16px;
  height:52px;
  border-radius: 12px;
  border: none;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  box-shadow: 0 8px 20px rgba(22,163,74,.35);
  transition: all .25s ease;
  animation: pulseCTA 2.2s infinite;
  position: relative;
}

.cta__buy:hover{
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(22,163,74,.45);
}

.cta__buy:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(22,163,74,.35);
}

@keyframes pulseCTA {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,.45); }
  70% { box-shadow: 0 0 0 14px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.cta__buySub{
  display:block;
  font-size:12px;
  font-weight:400;
  opacity:.85;
}

.cta__social{
  margin-top:10px;
  font-size:13px;
  text-align:center;
  color:#444;
}

/* ================= SOCIAL PROOF POPUP ================= */
.macena-social-proof{
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9999;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  max-width: 320px;
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: .28s ease;
  border: 1px solid #eee;
}

.macena-social-proof.is-show{
  transform: translateY(0);
  opacity: 1;
}

.macena-social-proof .sp-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #68acff;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
}

.macena-social-proof .sp-text h4{
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
  color: #333;
}

.macena-social-proof .sp-text p{
  margin: 2px 0 0 0;
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

.macena-social-proof .product{
  font-weight: 800;
  color: #0056b3;
}

/* ================= REVIEWS ================= */
.reviews{
  padding:48px 0;
  background:#fafafa;
}

.reviews__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.reviews__title{
  font-size:20px;
  font-weight:900;
  line-height:1.15;
  margin:0;
  color:#0B0F14;
}

.reviews__sub{
  margin-top:6px;
  font-size:13px;
  color:rgba(11,15,20,.6);
}

.reviews__scoreBadge{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid rgba(0,93,203,.18);
  border-radius:14px;
  padding:8px 14px;
  box-shadow:0 4px 14px rgba(0,93,203,.08);
}

.reviews__scoreBadge__stars{
  color: var(--accent);
  font-size:13px;
  letter-spacing:1px;
}

.reviews__scoreBadge__num{
  font-size:18px;
  font-weight:900;
  color: var(--accent);
}

.reviews__scoreBadge__count{
  font-size:12px;
  color:rgba(11,15,20,.55);
  font-weight:600;
}

.reviews__carousel{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:4px 0 10px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.reviews__carousel::-webkit-scrollbar{
  display:none;
}

.review{
  flex:0 0 280px;
  background:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  scroll-snap-align:start;
  position:relative;
  border:1px solid rgba(0,0,0,.06);
  transition:box-shadow .2s ease, transform .2s ease;
}

.review:hover{
  box-shadow:0 8px 30px rgba(0,0,0,.10);
  transform:translateY(-2px);
}

.review__header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.review__avatar{
  width:36px;
  height:36px;
  border-radius:999px;
  background:linear-gradient(135deg, #005DCB, #3b82f6);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:14px;
  flex-shrink:0;
}

.review__info{
  display:flex;
  flex-direction:column;
  flex:1;
  min-width:0;
}

.review__name{
  font-size:13px;
  font-weight:800;
  color:#0B0F14;
  line-height:1.2;
}

.review__location{
  font-size:11px;
  color:rgba(11,15,20,.5);
  margin-top:1px;
}

.review__verified{
  font-size:10px;
  font-weight:700;
  color:#16a34a;
  background:rgba(22,163,74,.08);
  border:1px solid rgba(22,163,74,.20);
  border-radius:999px;
  padding:3px 8px;
  white-space:nowrap;
  flex-shrink:0;
}

.review__starsRow{
  color: var(--accent);
  font-size:14px;
  letter-spacing:1.5px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:6px;
}

.review__starsRow span{
  font-size:14px;
  font-weight:900;
  color:#0B0F14;
  letter-spacing:0;
}

.reviewVideo{
  position:relative;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  background:#000;
}

.reviewVideo__el{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.reviewVideo__play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.40);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  cursor:pointer;
  backdrop-filter: blur(8px);
  transition: opacity .2s, transform .2s;
}

.reviewVideo__play:hover{
  transform:translate(-50%,-50%) scale(1.08);
}

.review.is-playing .reviewVideo__play{ opacity: .2; }

.review__text{
  font-size:13px;
  color:#444;
  line-height:1.45;
  margin-top:12px;
  margin-bottom:0;
  font-style:italic;
}

.reviews__footerScore{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.reviews__stars{
  color: var(--accent);
  font-size:16px;
  letter-spacing:2px;
}

.reviews__scoreText{
  font-size:14px;
  color:rgba(11,15,20,.7);
}

.reviews__scoreText strong{
  font-weight:900;
  color: var(--accent);
  font-size:16px;
}

.reviews__confidence{
  font-size:12px;
  color:rgba(11,15,20,.55);
  margin-top:4px;
}

@media (max-width:520px){
  .reviews__head{ flex-direction:column; }
  .reviews__scoreBadge{ align-self:flex-start; }
  .review{ flex:0 0 260px; padding:14px; }
}

/* ================= SATISFAÇÃO GARANTIDA ================= */
.nxSat{
  padding: 48px 0;
  background: #fff;
  text-align: center;
}

.nxSat__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.nxSat__title{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.nxSat__carousel{
  overflow: hidden;
  border-radius: 18px;
}

.nxSat__track{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nxSat__track::-webkit-scrollbar{ display: none; }

.nxSat__img{
  flex: 0 0 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: start;
}

.counter{
  text-align:center;
  padding:30px 16px 0;
}

.counter__number{
  font-size:42px;
  font-weight:900;
  line-height:1;
  color: var(--accent);
}

.counter__text{
  margin-top:8px;
  font-size:14px;
  color:#555;
}

/* ================= FAQ ================= */
.faq{
  padding:48px 16px;
  background:#fff;
}

.faq__wrap{
  max-width:720px;
  margin:0 auto;
}

.faq__title{
  text-align:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:24px;
}

.faq__item{
  border-bottom:1px solid #eee;
}

.faq__question{
  width:100%;
  padding:14px 0;
  background:none;
  border:none;
  text-align:left;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  position:relative;
  font-family: inherit;
  color: var(--text);
  padding-right: 30px;
}

.faq__question::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color: var(--accent);
}

.faq__item.is-open .faq__question::after{
  content:"–";
}

.faq__answer{
  max-height:0;
  overflow:hidden;
  font-size:14px;
  color:#555;
  line-height:1.5;
  transition:max-height .3s ease;
}

.faq__item.is-open .faq__answer{
  max-height:200px;
  padding-bottom:14px;
}

/* ================= FOOTER ================= */
.footer{
  background:#f6f6f6;
  border-top:1px solid #e9e9e9;
  padding:34px 16px;
}

.footer__wrap{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}

.footer__brand{
  font-weight:900;
  letter-spacing:.08em;
  font-size:16px;
  color:#111;
}

.footer__rights{
  margin-top:6px;
  font-size:13px;
  color:#666;
}

.footer__line{
  width:56px;
  height:3px;
  background: var(--accent);
  margin:16px auto 14px;
  border-radius:999px;
  opacity:.95;
}

.footer__info p{
  margin:6px 0;
  font-size:13px;
  color:#333;
}

.footer__info strong{
  font-weight:800;
  color:#111;
}

.footer__info a{
  color:#333;
  text-decoration:none;
  border-bottom:1px dashed rgba(0,0,0,.25);
}

.footer__info a:hover{
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer__bottom{
  margin-top:16px;
  font-size:12px;
  color:#777;
}

/* ================= MODAL ================= */
.nmodal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.nmodal.is-open{ display: block; }

.nmodal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.46);
}

.nmodal__card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 28px));
  background: #fff;
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.08);
}

.nmodal__close{
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  opacity: .7;
}

.nmodal__title{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}

.nmodal__desc{
  margin: 6px 0 0;
  font-size: 12.5px;
  opacity: .75;
}

.nmodal__summary{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(0,0,0,.02);
}

.nrow{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}

.nrow:last-child{ border-bottom: 0; }

.nrow span{
  font-size: 12px;
  opacity: .7;
  font-weight: 700;
}

.nrow strong{
  font-size: 12.5px;
  font-weight: 900;
}

.nmodal__actions{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 12px;
}

.nbtn{
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.12);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}

.nbtn--ghost{
  background: #fff;
}

.nbtn--solid{
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.nmodal__fine{
  margin: 10px 0 0;
  font-size: 11px;
  opacity: .65;
  text-align: center;
}

@media (max-width: 380px){
  .cta__priceMain{ font-size: 24px; }
}

/* ================= STOCK BAR ================= */
.stock{
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: #f7f7f8;
  border-radius: 10px;
}

.stock__text{
  font-size: 13px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.stock__text strong{
  color: var(--accent);
  font-weight: 700;
}

.stock__bar{
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.stock__fill{
  display: block;
  height: 100%;
  width: 45%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .6s ease;
}
