/* ===================================================
   CARPETCAR LP — PALETA & ESTILO: LP2 (Dark + Laranja)
   Oswald (headings) + Barlow (corpo)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700&display=swap');

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

:root {
  --bg:            #1a1a1a;
  --bg-darker:     #111111;
  --bg-card:       rgba(255,255,255,.04);
  --bg-card-solid: #2a2a2a;
  --text:          #ffffff;
  --muted:         #aaaaaa;
  --line:          rgba(255,255,255,.10);
  --accent:        #E8590A;
  --accent-dark:   #c94a08;
  --accent-soft:   rgba(232,89,10,.12);
  --accent-border: rgba(232,89,10,.30);
  --accent-light:  rgba(232,89,10,.08);
  --accent-medium: rgba(232,89,10,.40);
  --accent-strong: rgba(232,89,10,.60);
  --glow:          0 0 16px rgba(232,89,10,.40);
  --glow-strong:   0 0 24px rgba(232,89,10,.55);
  --green:         #16A34A;
  --green-dark:    #15803D;
}

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

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .02em;
}

/* HEADER */
.hdr { background: var(--bg-darker); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--line); }
.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: var(--bg-card); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; padding: 0; transition: border-color .15s, transform .15s, box-shadow .15s; }
.hdr__menuBtn:hover { border-color: var(--accent-medium); box-shadow: var(--glow); 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 { height: 38px; width: auto; display: block; transform: translateY(0); }
.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, transparent, var(--accent-medium), transparent); }
@media (max-width: 520px) { .hdr__secure { font-size: 10px; } .hdr__logo { height: 30px; } }

/* DRAWER */
.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,.60); cursor: pointer; }
.drawer__panel { position: absolute; top: 0; left: 0; height: 100%; width: min(340px, 86vw); background: var(--bg-darker); 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-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: .12em; font-size: 14px; color: var(--muted); text-transform: uppercase; }
.drawer__close { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-card); color: var(--text); cursor: pointer; font-size: 18px; }
.drawer__link { display: block; padding: 14px 10px; margin-top: 10px; border-radius: 10px; text-decoration: none; color: var(--text); font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 15px; border: 1px solid var(--line); text-transform: uppercase; letter-spacing: .04em; transition: border-color .15s, color .15s; }
.drawer__link:hover { border-color: var(--accent-medium); color: var(--accent); }
.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: 8px; background: var(--accent); color: #fff; text-decoration: none; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; transition: background .2s; }
.drawer__cta:hover { background: var(--accent-dark); }

/* HERO */
.hero { background: var(--bg); padding: 32px 0 16px; }
.hero__wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; text-align: center; }
.hero__title { margin: 0 0 16px; font-size: 48px; line-height: 1.02; letter-spacing: .02em; color: var(--text); font-family: 'Oswald', sans-serif; text-transform: uppercase; font-weight: 700; }
.hero__title span.line1 { display: block; font-size: 20px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 6px; }
.hero__media { margin: 0 auto 14px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card-solid); box-shadow: 0 24px 60px rgba(0,0,0,.50), var(--glow); max-width: 860px; }
.hero__img { width: 100%; height: auto; display: block; }
.hero__sub { margin: 10px auto 16px; max-width: 720px; font-size: 16px; line-height: 1.55; color: var(--muted); font-family: 'Barlow', sans-serif; }
.hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; padding-bottom: 10px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 50px; padding: 0 24px; border-radius: 6px; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; border: 1px solid transparent; transition: transform .15s, box-shadow .15s, background .15s; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(232,89,10,.30); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(232,89,10,.40); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent-medium); color: var(--accent); transform: translateY(-1px); }
@media (max-width: 720px) { .hero__title { font-size: 36px; } }
@media (max-width: 520px) { .hero__title { font-size: 30px; } .btn { width: 100%; } }

/* BENEFÍCIOS */
.benefits { background: var(--bg); padding: 28px 0 14px; }
.benefits__wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; }
.benefits__title { font-size: 22px; color: var(--text); margin: 0 0 6px; text-align: center; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.benefits__sub { margin: 0 0 14px; text-align: center; color: var(--muted); font-size: 14px; }
.benefits__carousel { position: relative; }
.benefits__track { display: grid; grid-auto-flow: column; grid-auto-columns: 86%; gap: 14px; overflow-x: auto; padding: 6px 2px 12px; scroll-snap-type: x mandatory; -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: 14px; background: var(--bg-card); box-shadow: 0 14px 40px rgba(0,0,0,.30); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.benefitCard:hover { border-color: var(--accent-border); box-shadow: 0 14px 40px rgba(0,0,0,.30), var(--glow); }
.benefitCard__media { background: var(--bg-card-solid); border-bottom: 1px solid var(--line); aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden; position: relative; }
.benefitCard__media img, .benefitCard__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.benefitCard__h { font-family: 'Oswald', sans-serif; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; margin: 12px 14px 6px; color: var(--text); }
.benefitCard__p { margin: 0 14px 16px; font-size: 14px; 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: var(--bg-card); padding: 0; cursor: pointer; transition: transform .15s, background .15s, border-color .15s; }
.dot.is-active { background: var(--accent); border-color: var(--accent-medium); transform: scale(1.15); }
@media (min-width: 920px) { .benefits__track { grid-auto-columns: 1fr; overflow: visible; } .benefits__dots { display: none; } }

/* CHECKLIST */
.checks { background: var(--bg); padding: 28px 0 10px; }
.checks__wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; }
.checks__title { text-align: center; font-size: 22px; color: var(--text); margin: 0 0 6px; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.checks__sub { text-align: center; margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.checks__list { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.checkItem { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 10px; background: var(--bg-card); box-shadow: 0 8px 24px rgba(0,0,0,.20); opacity: 1; transform: none; transition: border-color .2s, box-shadow .2s; }
.checkItem:hover { border-color: var(--accent-border); box-shadow: 0 8px 24px rgba(0,0,0,.20), var(--glow); }
.checkItem.is-show { opacity: 1; transform: translateY(0); }
.checkIcon { width: 28px; height: 28px; border-radius: 6px; display: grid; place-items: center; flex: 0 0 auto; background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent); font-weight: 900; line-height: 1; font-size: 14px; }
.checkTxt strong { display: block; font-size: 13px; color: var(--text); font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.checkTxt span { display: block; margin-top: 3px; font-size: 13px; line-height: 1.4; color: var(--muted); }
@media (min-width: 920px) { .checks__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .checks__title { font-size: 18px; } }

/* TRUST BAR */
.trustbar { background: var(--bg-darker); padding: 18px 0 10px; overflow-anchor: none; }
.trustbar__wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; }
.trustbar__track { display: grid; grid-auto-flow: column; grid-auto-columns: 92%; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 10px; }
.trustbar__track::-webkit-scrollbar { display: none; }
.trustPill { scroll-snap-align: start; display: flex; align-items: center; gap: 12px; background: var(--accent); color: #fff; border-radius: 10px; padding: 12px 16px; box-shadow: 0 14px 30px rgba(232,89,10,.25); border: 1px solid rgba(255,255,255,.15); transition: transform .2s, box-shadow .2s; }
.trustPill:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(232,89,10,.35); }
.trustPill__icon { width: 28px; height: 28px; object-fit: contain; flex: 0 0 auto;  opacity: .95; }
.trustPill__h { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; line-height: 1.1; }
.trustPill__p { margin-top: 2px; font-size: 12px; opacity: .85; line-height: 1.15; }
.trustbar__dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
.trustbar .dot { background: var(--bg-card); border: 1px solid var(--line); }
.trustbar .dot.is-active { background: var(--accent); border-color: var(--accent-medium); }
@media (min-width: 920px) { .trustbar__track { grid-auto-columns: 1fr; overflow: visible; } .trustbar__dots { display: none; } .trustPill { justify-content: flex-start; } }

/* MATERIAL */
.material { background: var(--bg); padding: 30px 0 16px; }
.material__wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; text-align: center; }
.material__title { font-size: 22px; color: var(--text); margin: 0 0 14px; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.material__media { margin: 0 auto 14px; max-width: 380px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card-solid); box-shadow: 0 20px 50px rgba(0,0,0,.40), var(--glow); width: 100%; }
.material__media img { width: 100%; height: auto; display: block; }
.material__media video { width: 100%; height: auto; aspect-ratio: 9 / 16; display: block; object-fit: contain; }
.material__text { max-width: 720px; margin: 0 auto; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* SPECS */
.specs { background: var(--bg-darker); padding: 24px 0 10px; }
.specs__wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; text-align: center; }
.specs__title { font-size: 20px; color: var(--text); margin: 0 0 12px; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.specs__list { list-style: none; padding: 0; margin: 0 auto 16px; max-width: 820px; text-align: left; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 10px; background: var(--bg-card); box-shadow: 0 12px 30px rgba(0,0,0,.20); }
.specs__list li { padding: 14px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.specs__list strong { color: var(--text); font-family: 'Oswald', sans-serif; font-size: 15px; }
.specs__note { max-width: 820px; margin: 0 auto 14px; display: flex; align-items: flex-start; gap: 10px; text-align: left; border: 1px solid var(--accent-border); background: var(--accent-light); border-radius: 10px; padding: 14px; }
.specs__noteIcon { width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; flex: 0 0 auto; background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent); font-weight: 900; font-size: 13px; }
.specs__noteTxt { font-size: 13px; line-height: 1.45; color: var(--text); }
.specs__accent { color: var(--accent); font-weight: 700; }
.specs__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
@media (max-width: 520px) { .specs__title { font-size: 17px; } .specs__actions .btn { width: 100%; } }

/* CTA */
.cta { background: var(--bg); padding: 30px 0 20px; }
.cta__wrap { max-width: 420px; margin: 0 auto; padding: 0 16px; }
.cta__title { text-align: center; font-size: 24px; margin-bottom: 8px; font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--text); }
.cta__subtitle { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 16px; }

/* Gallery */
.pg { margin: 10px auto 0; width: 100%; max-width: 420px; }
.pg__main { width: 100%; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 12px; overflow: hidden; background: var(--bg-card-solid); padding: 0; display: block; box-shadow: 0 20px 50px rgba(0,0,0,.40), var(--glow); }
.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: 8px; border: 1px solid var(--line); background: var(--bg-card-solid); padding: 0; overflow: hidden; opacity: .60; cursor: pointer; transition: opacity .15s, border-color .15s; }
.pg__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg__thumb.is-active { border-color: var(--accent); opacity: 1; box-shadow: var(--glow); }

/* Price */
.cta__price { margin-top: 16px; padding: 16px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--line); border-top: 3px solid var(--accent); box-shadow: 0 10px 26px rgba(0,0,0,.20); text-align: center; position: relative; overflow: hidden; }
.cta__price::after { content: ""; position: absolute; top: -50%; left: -150%; width: 200%; height: 200%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.05), transparent); animation: shine 6s infinite; }
@keyframes shine { 0% { left: -150%; } 100% { left: 150%; } }
.cta__priceCompare { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.cta__priceCompare span { text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: var(--accent-medium); }
.cta__priceMain { font-size: 42px; font-weight: 900; letter-spacing: -.02em; line-height: 1; color: var(--green) !important; margin: 6px 0 8px; animation: pricePulse 2.5s ease-in-out infinite; }
@keyframes pricePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.cta__priceSub { font-size: 14px; color: var(--text); opacity: .80; }
.cta__priceDaily { display: inline-block; margin-top: 10px; padding: 7px 14px; border-radius: 999px; background: rgba(22,163,74,.12); color: #4ade80; font-weight: 700; font-size: 13px; border: 1px solid rgba(22,163,74,.25); }
.cta__priceNote { margin-top: 8px; font-size: 13px; color: var(--muted); }

/* Selectors */
.cta__selectors { display: grid; gap: 10px; }
.cta__selectors label { display: grid; gap: 4px; }
.cta__selectors span { font-size: 12px; font-weight: 700; color: var(--muted); }
.cta__selectors select { height: 44px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg-card); color: var(--text); padding: 0 12px; font-weight: 600; }
.cta__colors { margin-top: 16px; }
.cta__colorsLabel { font-size: 13px; margin-bottom: 8px; color: var(--muted); }
.cta__colorsGrid { display: flex; gap: 8px; flex-wrap: wrap; }
.color { padding: 8px 14px; border-radius: 8px; border: 1.5px solid var(--line); background: var(--bg-card); color: var(--text); font-size: 13px; cursor: pointer; transition: border-color .15s, color .15s; font-weight: 500; }
.color.is-active { border-color: var(--accent); color: var(--accent); font-weight: 700; }
.cta__colorsHint { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Buy button */
.cta__buy { width: 100%; margin-top: 16px; height: 54px; border-radius: 8px; border: 0; background: var(--green); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; box-shadow: 0 14px 30px rgba(22,163,74,.30); display: flex; flex-direction: column; align-items: center; justify-content: center; animation: pulseCTA 2.2s infinite; transition: background .2s, box-shadow .2s; position: relative; }
.cta__buy:hover { background: var(--green-dark); box-shadow: 0 18px 36px rgba(22,163,74,.45); }
.cta__buy:active { transform: scale(.98); }
.cta__buySub { display: block; font-size: 11px; font-weight: 400; opacity: .80; font-family: 'Barlow', sans-serif; text-transform: none; letter-spacing: 0; }
@keyframes pulseCTA { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.45); } 70% { box-shadow: 0 0 0 16px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }

/* NKIT */
.nkit { width: 100%; padding: 18px 0 6px; }
.nkit__head { margin-bottom: 12px; }
.nkit__title { margin: 0; font-size: 22px; font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--text); }
.nkit__sub { margin: 6px 0 0; font-size: 13px; opacity: .75; color: var(--muted); }
.nkit__grid { display: grid; gap: 12px; margin-top: 12px; }
.nkitCard { width: 100%; display: grid; grid-template-columns: 62px 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--line); background: var(--bg-card); border-radius: 12px; padding: 12px; cursor: pointer; text-align: left; color: var(--text); position: relative; transition: transform .12s, border-color .12s, background .12s, box-shadow .12s; }
.nkitCard:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.30); }
.nkitCard.is-selected { border: 2px solid var(--accent); background: var(--accent-light); box-shadow: 0 12px 30px rgba(232,89,10,.15), var(--glow); }
.nkitCard__left { display: grid; gap: 8px; align-content: start; justify-items: start; }
.nkitCard__badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 10px; border-radius: 4px; font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--accent); position: absolute; top: 10px; right: 10px; z-index: 5; white-space: nowrap; }
.nkitCard__badge--soft { background: var(--accent-soft); color: var(--accent); }
.nkitCard__thumb { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card-solid); }
.nkitCard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nkitCard__mid { min-width: 0; }
.nkitCard__name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; color: var(--text) !important; -webkit-text-fill-color: var(--text); padding-top: 18px; }
.nkitCard__name * { color: var(--text) !important; -webkit-text-fill-color: var(--text); }
.nkitCard__name span { color: rgba(255,255,255,.45) !important; -webkit-text-fill-color: rgba(255,255,255,.45); }
.nkitCard__name strong { font-weight: 700; }
.nkitCard__savePill { display: inline-flex; margin-top: 8px; font-size: 11px; padding: 5px 10px; border-radius: 6px; background: rgba(22,163,74,.12); border: 1px solid rgba(22,163,74,.25); color: #4ade80; font-weight: 600; }
.nkitCard__right { text-align: right; padding-left: 6px; white-space: nowrap; }
.nkitCard__old { font-size: 11px; opacity: .50; text-decoration: line-through; font-weight: 600; }
.nkitCard__now { font-size: 15px; font-weight: 900; color: var(--green) !important; margin-top: 2px; }
@media (max-width: 420px) { .nkitCard { grid-template-columns: 58px 1fr auto; padding: 10px; } .nkitCard__now { font-size: 14px; } }
@media (max-width: 380px) { .nkitCard { grid-template-columns: 70px 1fr auto; } }

/* WIDGET MACENA */
#widget-macena { color: var(--text); box-sizing: border-box; margin: 14px auto 0; max-width: 560px; width: 100%; }
#widget-macena * { box-sizing: border-box; }
#widget-macena .macena-container { background: var(--bg-card); padding: 18px; border-radius: 12px; border: 1px solid var(--line); border-top: 3px solid var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
#widget-macena h2 { text-align: center; margin: 2px 0 6px; font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text); }
#widget-macena .subtitle { text-align: center; margin: 0 0 16px; font-size: .92rem; color: var(--muted); }
#widget-macena .form-group { margin-bottom: 12px; }
#widget-macena .form-group label { font-family: 'Oswald', sans-serif; font-size: .78rem; font-weight: 600; margin-bottom: 8px; display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
#widget-macena select { width: 100%; height: 46px; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg); font-size: 1rem; color: var(--text); outline: none; transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; appearance: none; }
#widget-macena select:focus { border-color: var(--accent-strong); box-shadow: 0 0 0 4px var(--accent-soft); }
#widget-macena select:disabled { background: rgba(255,255,255,.04); color: rgba(255,255,255,.30); cursor: not-allowed; }
#widget-macena .color-selector-container { display: flex; gap: 14px; justify-content: center; padding: 6px 0 2px; transition: opacity .2s ease; }
#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 var(--line); position: relative; cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s; box-shadow: 0 6px 16px rgba(0,0,0,.20); }
#widget-macena .color-btn:hover { transform: translateY(-1px) scale(1.04); }
#widget-macena .bg-preto { background: #111111; }
#widget-macena .bg-cinza { background: #5a5a5a; }
#widget-macena .bg-bege  { background: #C8AD7F; }
#widget-macena .color-btn.selected { border-color: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); 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,.80); }
#widget-macena .color-label { text-align: center; font-size: .90rem; color: var(--muted); margin-top: 6px; min-height: 1.2em; font-weight: 600; }
#widget-macena .resultado-box { margin-top: 14px; display: none; animation: fadeInMacena .35s ease; }
#widget-macena .success-box { background: var(--accent-light); border: 1px solid var(--accent-border); color: var(--text); padding: 14px; border-radius: 10px; text-align: center; }
#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: 12px; } }

.panelTitle span { font-size: 1em; font-weight: 700; color: var(--accent); font-family: 'Oswald', sans-serif; }

/* STOCK */
.stock { margin: 14px 0 18px; padding: 12px 14px; background: var(--bg-card); border-radius: 10px; border: 1px solid var(--line); }
.stock__text { font-size: 13px; color: var(--text); display: block; margin-bottom: 8px; }
.stock__text strong { color: var(--accent); font-weight: 700; }
.stock__bar { width: 100%; height: 6px; background: rgba(255,255,255,.10); border-radius: 999px; overflow: hidden; }
.stock__fill { display: block; height: 100%; width: 45%; background: var(--accent); border-radius: 999px; transition: width .6s ease; }

/* ENTREGA */
.nxShip { margin-top: 12px; margin-bottom: 18px; border: 1px solid var(--line); background: var(--bg-card); border-radius: 12px; padding: 12px 14px; box-shadow: 0 8px 22px rgba(0,0,0,.20); }
.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(255,255,255,.78); }
.nxShip__free { color: #4ade80; font-weight: 700; }
.nxShip__to { margin: 0 4px; color: var(--muted); }
.nxShip__city { font-weight: 700; color: var(--text); }
.nxShip__line2 { margin-top: 4px; font-size: 12.5px; color: var(--muted); }

/* COUNTER */
.counter { text-align: center; padding: 48px 16px; background: var(--bg-darker); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.counter__number { font-size: 48px; font-weight: 900; line-height: 1; color: var(--text); font-family: 'Oswald', sans-serif; }
.counter__plus { color: var(--accent); font-weight: 900; margin-left: 2px; }
.counter__text { margin-top: 10px; font-size: 15px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* REVIEWS */
.reviews { padding: 48px 0; background: var(--bg); }
.reviews__head { text-align: left; margin-bottom: 16px; padding: 0 16px; }
.reviews__title { font-size: 22px; font-family: 'Oswald', sans-serif; text-transform: uppercase; line-height: 1.15; margin: 0; color: var(--text); }
.reviews__sub { margin-top: 6px; font-size: 13px; color: var(--muted); }
.reviews__carousel { display: flex; gap: 16px; overflow-x: auto; padding: 0 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.reviews__carousel::-webkit-scrollbar { display: none; }
.review { flex: 0 0 280px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.25); scroll-snap-align: start; position: relative; transition: border-color .2s, box-shadow .2s; }
.review:hover { border-color: var(--accent-border); box-shadow: 0 10px 30px rgba(0,0,0,.25), var(--glow); }
.review__header { display: flex; align-items: center; gap: 10px; }
.review__header img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.review__header strong { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .02em; }
.verified { font-size: 12px; color: var(--accent); }
.review__stars { margin: 8px 0; color: var(--accent); font-size: 14px; font-weight: 700; }
.review__stars span { color: var(--muted); margin-left: 4px; }
.review__text { font-size: 13px; color: var(--muted); margin-bottom: 10px; line-height: 1.45; }
.reviewVideo { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 12px; background: #000; border: 1px solid var(--line); }
.reviewVideo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.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,.20); background: rgba(0,0,0,.50); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; backdrop-filter: blur(6px); transition: background .15s; }
.reviewVideo__play:hover { background: var(--accent); }
.reviewVideo__sound { position: absolute; right: 10px; bottom: 10px; width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,.20); background: rgba(0,0,0,.50); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(6px); }
.reviewVideo.is-playing .reviewVideo__play { opacity: 0; pointer-events: none; transition: opacity .18s ease; }
.reviews__footerScore { margin-top: 20px; padding: 16px 16px 0; border-top: 1px solid var(--line); 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: 13px; color: var(--muted); }
.reviews__scoreText strong { font-weight: 900; color: var(--text); }
.reviews__confidence { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* NX SAT */
.nxSat { width: 100%; padding: 36px 16px 56px; background: var(--bg-darker); }
.nxSat__head { display: flex; justify-content: center; text-align: center; margin-bottom: 14px; }
.nxSat__title { margin: 0; font-size: 24px; line-height: 1.06; font-weight: 700; letter-spacing: .6px; color: var(--text); font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.nxSat__wrap { position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,.30), var(--glow); padding: 10px; overflow: visible; }
.nxSat__viewport { overflow: hidden; border-radius: 12px; }
.nxSat__track { display: flex; gap: 10px; will-change: transform; }
.nxSat__item { flex: 0 0 auto; width: 148px; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card-solid); }
.nxSat__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nxSat__badge { position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%); z-index: 5; background: var(--bg-card-solid); border: 1px solid var(--accent-border); box-shadow: var(--glow-strong), 0 10px 24px rgba(0,0,0,.30); border-radius: 12px; padding: 10px 16px; min-width: 210px; text-align: center; pointer-events: none; }
.nxSat__badgeTop { display: block; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .4px; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.nxSat__badgeSub { display: block; font-size: 12px; line-height: 1.15; color: var(--muted); }
@media (min-width: 480px) { .nxSat__item { width: 124px; } }

/* FAQ */
.faq { padding: 48px 16px; background: var(--bg); }
.faq__wrap { max-width: 720px; margin: 0 auto; }
.faq__title { text-align: center; font-size: 24px; font-family: 'Oswald', sans-serif; text-transform: uppercase; margin-bottom: 28px; color: var(--text); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question { width: 100%; padding: 16px 0; background: none; border: none; text-align: left; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; position: relative; color: var(--text); }
.faq__question::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--accent); }
.faq__item.is-open .faq__question::after { content: "–"; color: var(--accent); }
.faq__answer { max-height: 0; overflow: hidden; font-size: 14px; color: var(--muted); line-height: 1.55; transition: max-height .3s ease; }
.faq__item.is-open .faq__answer { max-height: 300px; padding-bottom: 16px; }

/* FOOTER */
.footer { background: var(--bg-darker); border-top: 1px solid var(--line); padding: 36px 16px; }
.footer__wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.footer__brand { font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: .10em; font-size: 14px; color: var(--text); text-transform: uppercase; }
.footer__rights { margin-top: 6px; font-size: 13px; color: var(--muted); }
.footer__line { width: 56px; height: 3px; background: var(--accent); margin: 18px auto 16px; border-radius: 999px; box-shadow: var(--glow); }
.footer__info p { margin: 6px 0; font-size: 13px; color: var(--muted); }
.footer__info strong { font-weight: 700; color: var(--text); }
.footer__info a { color: var(--muted); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.20); }
.footer__info a:hover { color: var(--accent); border-bottom-color: var(--accent-border); }
.footer__bottom { margin-top: 18px; font-size: 12px; color: var(--muted); }

/* MODAL */
.modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 18px; }
.modal[aria-hidden="true"] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.70); backdrop-filter: blur(4px); }
.modal__box { position: relative; width: min(420px, 92vw); max-height: 86vh; overflow: hidden; display: flex; flex-direction: column; border-radius: 16px; background: var(--bg-darker); border: 1px solid var(--line); border-top: 3px solid var(--accent); box-shadow: 0 24px 60px rgba(0,0,0,.50), var(--glow); animation: confirmPop .22s ease; }
@keyframes confirmPop { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal__close { position: absolute; top: 10px; right: 10px; left: auto !important; z-index: 5; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-card); font-size: 22px; line-height: 1; cursor: pointer; color: var(--text); }
.modal__content { flex: 1; overflow: auto; -webkit-overflow-scrolling: touch; padding: 48px 16px 16px; }
.modal__title { margin: 4px 0 6px; font-size: 20px; font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--text); }
.modal__subtitle { margin: 0 0 12px; font-size: 13px; line-height: 1.35; color: var(--muted); }
.modal__summary { border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: grid; gap: 10px; font-size: 13px; background: var(--bg-card); }
.modal__row { padding: 10px 0; display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
.modal__row:last-child { border-bottom: none; }
.modal__label { color: var(--muted); font-weight: 600; }
.modal__value { font-weight: 800; color: var(--text); text-align: right; }
.modal__actions { position: sticky; bottom: 0; background: var(--bg-darker); padding: 14px 16px 16px; box-shadow: 0 -10px 24px rgba(0,0,0,.30); display: grid; gap: 10px; }
.modal__scrollHint { display: none; text-align: center; font-size: 12px; color: var(--muted); padding-bottom: 8px; }
.modal__secure { margin-top: 10px; font-size: 12px; text-align: center; color: var(--muted); padding: 0 16px 16px; }
.colorDot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.20); display: inline-block; background: #111; }
.btnPrimary, #goToPayment { height: 48px; background: var(--green); color: #fff; border: none; border-radius: 8px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; box-shadow: 0 6px 16px rgba(22,163,74,.30); transition: background .2s; }
.btnPrimary:hover, #goToPayment:hover { background: var(--green-dark); }
.btnPrimary:active, #goToPayment:active { transform: scale(.98); }
.btnGhost { height: 48px; background: transparent; border: 1px solid var(--line); border-radius: 8px; font-weight: 600; cursor: pointer; color: var(--text); transition: border-color .15s; }
.btnGhost:hover { border-color: var(--accent-medium); color: var(--accent); }

/* TXMINI */
.txMini { margin-top: 12px; padding: 14px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--line); }
.txMini__title { font-size: 14px; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.txMini__sub { font-size: 12px; color: var(--muted); line-height: 1.35; margin-bottom: 10px; }
.txMini__row { display: flex; gap: 10px; }
.txMini__opt { flex: 1 1 calc((100% - 20px) / 3); min-width: 0; border: 1px solid var(--line); border-radius: 12px; padding: 10px; background: var(--bg); cursor: pointer; user-select: none; transition: border-color .15s, box-shadow .15s; }
.txMini__opt:hover { border-color: var(--accent-medium); }
.txMini__opt[aria-pressed="true"] { border-color: var(--accent-strong); box-shadow: 0 0 0 3px var(--accent-soft); }
.txMini__media { position: relative; border-radius: 10px; overflow: hidden; background: var(--bg-card-solid); aspect-ratio: 1 / 1; }
.txMini__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.txMini__check { position: absolute; right: 8px; top: 8px; width: 24px; height: 24px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 900; display: grid; place-items: center; opacity: 0; transform: scale(.92); transition: .15s ease; }
.txMini__opt[aria-pressed="true"] .txMini__check { opacity: 1; transform: scale(1); }
.txMini__opt.is-active { border-color: var(--accent-strong); box-shadow: 0 0 0 3px var(--accent-soft); }
.txMini__opt.is-active .txMini__check { opacity: 1; transform: scale(1); }
.txMini__zoom { margin-top: 8px; width: 100%; height: 30px; border-radius: 8px; border: 1px solid var(--accent-border); background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 12px; cursor: pointer; transition: background .15s; }
.txMini__zoom:hover { background: var(--accent-light); }
.txMini__name { display: block; margin-top: 8px; font-weight: 700; text-align: center; font-size: 12px; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
@media (max-width: 340px) { .txMini__row { flex-wrap: wrap; } .txMini__opt { flex: 1 1 calc((100% - 10px) / 2); } }

/* TXZOOM */
.txZoom { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 18px; }
.txZoom[aria-hidden="true"] { display: none; }
.txZoom__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.75); z-index: 0; }
.txZoom__card { position: relative; z-index: 2; width: min(92vw, 420px); max-height: 82vh; background: var(--bg-darker); border-radius: 16px; padding: 12px; border: 1px solid var(--accent-border); box-shadow: var(--glow-strong), 0 18px 60px rgba(0,0,0,.50); overflow: hidden; }
.txZoom__card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--accent); }
.txZoom__x { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-card); font-size: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; color: var(--text); }
.txZoom__img { width: 100%; max-height: 62vh; object-fit: contain; display: block; border-radius: 12px; background: var(--bg-card-solid); }
.txZoom__cap { padding: 10px 4px 2px; font-weight: 700; text-align: center; color: var(--text); font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 15px; }

/* SOCIAL PROOF */
.macena-social-proof { position: fixed; left: 14px; bottom: 14px; z-index: 9999; display: flex; gap: 10px; align-items: center; background: var(--bg-darker); border: 1px solid var(--line); color: var(--text); border-radius: 12px; padding: 12px 14px; box-shadow: 0 14px 30px rgba(0,0,0,.40), var(--glow); transform: translateY(14px); opacity: 0; pointer-events: none; transition: .28s ease; }
.macena-social-proof.is-show, .macena-social-proof.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sp-icon { width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; background: var(--accent); font-weight: 800; color: #fff; flex-shrink: 0; }
.sp-text h4 { margin: 0; font-size: 12px; line-height: 1.1; color: var(--text); font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; }
.sp-text p { margin: 2px 0 0; font-size: 12px; color: var(--muted); }
.sp-text span.product { font-weight: 700; color: var(--accent); }

/* LEGACY KIT */
.kit-card.selected { border: 2px solid var(--accent); background: var(--accent-light); }
.kit-badge { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 6px; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.kit-price { color: var(--green); font-weight: 800; }
.nkit__cta { margin-top: 10px; display: grid; place-items: center; text-align: center; background: var(--green); color: #fff; border-radius: 10px; padding: 14px 12px; font-family: 'Oswald', sans-serif; font-weight: 700; text-decoration: none; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 14px 26px rgba(22,163,74,.20); }
.nkit__cta small { display: block; margin-top: 4px; font-size: 11px; opacity: .9; font-weight: 600; font-family: 'Barlow', sans-serif; text-transform: none; }

/* WHATSAPP */
.whatsapp-float { position: fixed; width: 56px; height: 56px; bottom: 24px; right: 24px; background-color: #25d366; color: #fff; border-radius: 50px; text-align: center; box-shadow: 0 10px 25px rgba(37,211,102,.40); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: all .3s ease; text-decoration: none; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px rgba(37,211,102,.55); background-color: #20ba5a; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 768px) { .whatsapp-float { width: 48px; height: 48px; bottom: 18px; right: 18px; } .whatsapp-float svg { width: 24px; height: 24px; } }

/* FIXES */
body { overflow-anchor: none; }
.trustbar { overflow-anchor: none; }

/* Hero / benefits accent color override for inline styles */
.hero__title [style*="color"],
.benefits__title [style*="color"] {
  color: var(--accent) !important;
}

/* NX ship legacy aliases */
.nx-ship__free { color: #4ade80; font-weight: 700; }
.nx-ship { margin-top: 12px; border: 1px solid var(--line); background: var(--bg-card); border-radius: 12px; padding: 10px 12px; }

/* cta__trust */
.cta__trust { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; font-size: 13px; color: var(--muted); }
.cta__trustItem { display: flex; align-items: center; gap: 6px; }
.cta__trustItem img { height: 16px; }
.cta__social { margin-top: 10px; font-size: 13px; text-align: center; color: var(--muted); }

/* =================== CORES DO BANCO (5 opções) =================== */
#widget-macena .bg-preto    { background: #111111; }
#widget-macena .bg-cinza    { background: #5a5a5a; }
#widget-macena .bg-creme    { background: #f5f0e0; border: 2px solid rgba(255,255,255,.25); }
#widget-macena .bg-caramelo { background: #C8813A; }
#widget-macena .bg-branco   { background: #f8f8f8; border: 2px solid rgba(255,255,255,.25); }

/* =================== CORES DA COSTURA (6 opções) =================== */
#widget-macena .bg-stitch-preto    { background: #111111; }
#widget-macena .bg-stitch-branco   { background: #f8f8f8; border: 2px solid rgba(255,255,255,.25); }
#widget-macena .bg-stitch-laranja  { background: #E8590A; }
#widget-macena .bg-stitch-caramelo { background: #C8813A; }
#widget-macena .bg-stitch-cinza    { background: #8a8a8a; }
#widget-macena .bg-stitch-vermelho { background: #C0392B; }

/* Seletor de costura - mesmo estilo do banco com anel duplo para distinguir */
#widget-macena .stitch-btn {
  width: 38px;
  height: 38px;
  position: relative;
}
#widget-macena .stitch-btn::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 2px dashed rgba(255,255,255,.50);
  pointer-events: none;
}
#widget-macena .stitch-btn.selected::after {
  border-color: rgba(255,255,255,.90);
}

/* =================== FIX LAYOUT PREÇO NOS CARDS =================== */
.nkitCard {
  align-items: stretch;
}
.nkitCard__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  min-width: 80px;
}
.nkitCard__old {
  font-size: 11px;
  opacity: .55;
  text-decoration: line-through;
  font-weight: 600;
  white-space: nowrap;
  color: var(--muted);
}
.nkitCard__now {
  font-size: 17px;
  font-weight: 900;
  color: var(--green) !important;
  white-space: nowrap;
  line-height: 1;
}

/* Stitch selector label */
#stitchSelectedText {
  text-align: center;
  font-size: .90rem;
  color: var(--muted);
  margin-top: 6px;
  min-height: 1.2em;
  font-weight: 600;
}

/* Liberar seletor de costura quando cor do banco for selecionada */
#stitchButtons.disabled {
  opacity: .35;
  pointer-events: none;
}

/* =================== FIX FINAL LAYOUT CARD KIT =================== */
/* Remove o padding-top do nome que causava desalinhamento */
.nkitCard__name {
  padding-top: 0 !important;
}

/* Badge posicionado no topo esquerdo do card */
.nkitCard__badge {
  position: static !important;
  margin-bottom: 6px;
}

/* Coluna esquerda: badge em cima, thumb embaixo */
.nkitCard__left {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  justify-content: flex-start;
  width: 62px;
}

/* Coluna do meio: nome + save pill alinhados ao centro vertical */
.nkitCard__mid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

/* Coluna direita: preço riscado em cima, preço atual embaixo */
.nkitCard__right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 2px !important;
  min-width: 86px !important;
  padding-left: 6px;
}

.nkitCard__old {
  font-size: 11px !important;
  opacity: .55 !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.nkitCard__now {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: var(--green) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* Card grid ajustado */
.nkitCard {
  grid-template-columns: 62px 1fr auto !important;
  align-items: center !important;
}

/* =================== FIX BADGE POSITION (canto superior direito) =================== */

/* Card precisa de position relative para o badge absolute funcionar */
.nkitCard {
  position: relative !important;
  overflow: visible !important;
}

/* Badge volta a ser absolute no canto superior direito */
.nkitCard__badge {
  position: absolute !important;
  top: -12px !important;
  right: 10px !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  font-family: 'Oswald', sans-serif;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: var(--accent) !important;
  white-space: nowrap !important;
  z-index: 10 !important;
  box-shadow: 0 4px 12px rgba(232,89,10,.40) !important;
}

.nkitCard__badge--soft {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Coluna esquerda volta ao normal (sem badge embutido) */
.nkitCard__left {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  width: 62px !important;
}

/* Coluna direita: badge em cima → preço riscado → preço atual */
.nkitCard__right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: 2px !important;
  min-width: 90px !important;
  padding-top: 18px !important;  /* espaço pro badge flutuar acima */
  padding-left: 6px !important;
}

.nkitCard__old {
  font-size: 11px !important;
  opacity: .55 !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
  margin-top: 0 !important;
}

.nkitCard__now {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: var(--green) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* Nome do kit e savePill centralizados verticalmente */
.nkitCard__mid {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: 1 !important;
  padding-top: 6px !important;
}

.nkitCard__name {
  padding-top: 0 !important;
}

/* =================== NXSAT ITEMS ESPECIAIS =================== */

/* Item before/after (vertical) e GIF — altura maior */
.nxSat__item--gif {
  width: 200px !important;
  aspect-ratio: auto !important;
  height: 148px;
}

.nxSat__item--gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Before/after tem proporção retrato — deixa mais alto */
.nxSat__item:first-child {
  width: 110px !important;
  height: 148px !important;
  aspect-ratio: auto !important;
}

.nxSat__item:first-child img {
  object-fit: cover;
  object-position: top;
}

/* =================== REVIEW IMAGE FEEDBACK =================== */
.review__img-feedback {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card-solid);
}

.review__img-feedback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
