/* ÁUREA Joalheria · Visuapp Studios */

:root {
  --ink: #0B0A12;
  --ink-2: #131020;
  --ink-3: #1D1732;
  --ink-4: #2A2145;
  --cream: #F6F1E8;
  --cream-2: #E9DECC;
  --gold: #D9A441;
  --gold-lt: #F2D79B;
  --gold-dp: #A9762A;
  --jade: #17A67F;
  --rose: #E8506E;
  --plum: #5B2A78;
  --txt: #17141F;
  --muted: #6E6779;
  --muted-l: rgba(246, 241, 232, .60);
  --line-d: rgba(246, 241, 232, .14);
  --line-l: rgba(23, 20, 31, .14);
  --hd-h: 62px;
  --strip-h: 34px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
}

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.lock { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap--narrow { max-width: 820px; }

section[id] { scroll-margin-top: calc(var(--hd-h) + var(--strip-h) + 8px); }

/* ---------- botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  text-align: center;
}

.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: scale(.98); }

.btn--gold {
  background: linear-gradient(100deg, var(--gold-lt), var(--gold) 45%, var(--gold-dp));
  color: #241703;
  box-shadow: 0 8px 26px rgba(217, 164, 65, .22);
}

.btn--ghost {
  border-color: rgba(246, 241, 232, .34);
  color: var(--cream);
}

.btn--outline {
  border-color: var(--line-d);
  color: var(--cream);
}

.btn--wa {
  width: 100%;
  background: linear-gradient(100deg, #17A67F, #0E7D5E);
  color: #fff;
  padding: 17px 20px;
  box-shadow: 0 10px 30px rgba(23, 166, 127, .26);
}

@media (hover: hover) {
  .btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(217, 164, 65, .34); }
  .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
  .btn--outline:hover { border-color: var(--gold); color: var(--gold); }
  .btn--wa:hover { transform: translateY(-2px); }
}

/* ---------- faixa de demonstração ---------- */

.demo-strip {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--strip-h);
  background: linear-gradient(90deg, var(--plum), var(--ink-3) 55%, var(--gold-dp));
  border-bottom: 1px solid rgba(0, 0, 0, .35);
}

.demo-strip__in {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-strip__dot {
  width: 7px; height: 7px; flex: none;
  background: var(--gold-lt);
  animation: pulse 2.4s infinite;
}

.demo-strip p {
  font-size: .66rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-strip strong { color: var(--gold-lt); font-weight: 600; }
.demo-strip__more { display: none; }

.demo-strip__btn {
  margin-left: auto;
  flex: none;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

/* ---------- header ---------- */

.hd {
  position: fixed;
  top: var(--strip-h);
  left: 0; right: 0;
  z-index: 80;
  height: var(--hd-h);
  background: linear-gradient(180deg, rgba(11, 10, 18, .88), rgba(11, 10, 18, .42));
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.hd.is-stuck {
  background: var(--ink);
  border-bottom-color: var(--line-d);
}

.hd__in {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--gold); }
.brand__mark { width: 26px; height: 26px; flex: none; }

.brand__txt {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--cream);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__txt em {
  font-family: var(--sans);
  font-size: .52rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .34em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav {
  position: fixed;
  inset: calc(var(--strip-h) + var(--hd-h)) 0 0 0;
  background: var(--ink);
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 32px 12vh;
  display: none;
}

.nav.is-open { display: flex; }

.nav a {
  font-family: var(--serif);
  font-size: 2rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-d);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}

.nav a:hover, .nav a:active { color: var(--gold); padding-left: 10px; }

.hd__acts { margin-left: auto; display: flex; align-items: center; gap: 6px; }

.ibtn {
  position: relative;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.ibtn svg { width: 21px; height: 21px; }
.ibtn:hover { border-color: var(--line-d); color: var(--gold); }

.ibtn--cart { border-color: var(--line-d); }

.ibtn__badge {
  position: absolute;
  top: 1px; right: 1px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--rose);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s var(--ease);
}

.ibtn__badge[data-empty="1"] { display: none; }
.ibtn__badge.bump { transform: scale(1.45); }

.ibtn--menu { align-content: center; gap: 5px; }
.ibtn--menu span {
  width: 20px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.ibtn--menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ibtn--menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ibtn--menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#searchJump { display: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--strip-h) + var(--hd-h) + 40px) 20px 122px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
  filter: saturate(.85) contrast(1.05);
}

.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 12% 100%, rgba(91, 42, 120, .60), transparent 62%),
    radial-gradient(90% 70% at 92% 4%, rgba(217, 164, 65, .30), transparent 58%),
    linear-gradient(180deg, rgba(11, 10, 18, .74) 0%, rgba(11, 10, 18, .55) 34%, rgba(11, 10, 18, .93) 82%, var(--ink) 100%);
}

.hero__in {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 22px;
}

.hero__eyebrow span {
  width: 30px; height: 1px;
  background: var(--gold);
  flex: none;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 13.5vw, 5.4rem);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(94deg, var(--gold-lt), var(--gold) 40%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .12em;
  margin-right: -.04em;
}

.hero__lead {
  font-size: 1rem;
  color: rgba(246, 241, 232, .78);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 38px; }

.hero__proof {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-d);
  padding-top: 20px;
}

.hero__proof li { display: flex; flex-direction: column; gap: 2px; }
.hero__proof strong { font-family: var(--serif); font-size: 1.34rem; color: var(--gold-lt); }
.hero__proof span { font-size: .66rem; letter-spacing: .06em; color: var(--muted-l); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-txt {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .72);
  white-space: nowrap;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 38px;
  background: var(--line-d);
  overflow: hidden;
}

.hero__scroll-line i {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: drop 1.9s var(--ease) infinite;
}

@keyframes drop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(250%); }
}

/* ---------- ticker ---------- */

.ticker {
  background: linear-gradient(90deg, var(--gold-dp), var(--gold) 30%, var(--gold-lt) 50%, var(--gold) 70%, var(--gold-dp));
  color: #241703;
  overflow: hidden;
  padding: 11px 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: slide 34s linear infinite;
}

.ticker__track span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__gem {
  width: 7px; height: 7px;
  background: #241703;
  transform: rotate(45deg);
  flex: none;
}

@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- seções ---------- */

.sec { padding: 76px 0; }
.sec--cream { background: var(--cream); color: var(--txt); }
.sec--ink { background: var(--ink); position: relative; }

.sec--ink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 100% 0%, rgba(91, 42, 120, .34), transparent 60%),
              radial-gradient(70% 40% at 0% 100%, rgba(23, 166, 127, .16), transparent 60%);
  pointer-events: none;
}

.sec--ink > .wrap { position: relative; z-index: 1; }

.shead { margin-bottom: 42px; max-width: 720px; }

.shead__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-dp);
  margin-bottom: 14px;
}

.shead__tag::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
}

.shead--light .shead__tag { color: var(--gold); }

.shead__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 8.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.02em;
}

.shead__title--sm { font-size: clamp(1.8rem, 7.4vw, 2.7rem); }

.shead__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dp);
  padding-right: .06em;
}

.shead--light .shead__title em {
  background: linear-gradient(94deg, var(--gold-lt), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .12em;
  margin-right: -.04em;
}

.shead__lead {
  margin-top: 16px;
  font-size: .96rem;
  color: var(--muted);
  max-width: 56ch;
}

.shead--light .shead__lead { color: var(--muted-l); }

/* ---------- categorias ---------- */

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

.cat {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  background: var(--ink-3);
  text-align: left;
  width: 100%;
}

.cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.cat::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 18, .10) 18%, rgba(11, 10, 18, .72) 62%, rgba(11, 10, 18, .95) 100%);
}

.cat__in {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 18px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cat__n {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.1;
}

.cat__d { display: block; font-size: .74rem; color: rgba(246, 241, 232, .72); margin-top: 4px; }

.cat__go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.cat__go::after { content: '→'; transition: transform .3s var(--ease); }

.cat__count {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  background: rgba(11, 10, 18, .7);
  border: 1px solid var(--line-d);
  color: var(--gold-lt);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 5px 9px;
}

@media (hover: hover) {
  .cat:hover img { transform: scale(1.08); }
  .cat:hover .cat__go::after { transform: translateX(5px); }
}

/* ---------- filtros ---------- */

.filters { margin-bottom: 30px; }

.filters__search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-d);
  background: rgba(246, 241, 232, .04);
  padding: 0 14px;
  margin-bottom: 16px;
}

.filters__search svg { width: 19px; height: 19px; color: var(--gold); flex: none; }

.filters__search input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  padding: 15px 0;
  font-size: .92rem;
}

.filters__search input::placeholder { color: rgba(246, 241, 232, .38); }

.filters__clear {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted-l);
  padding: 0 4px;
}

.filters__row { overflow-x: auto; scrollbar-width: none; margin: 0 -20px; padding: 0 20px; }
.filters__row::-webkit-scrollbar { display: none; }

.chips { display: flex; gap: 8px; width: max-content; }
.chips--sm { flex-wrap: wrap; width: 100%; }

.chip {
  padding: 10px 16px;
  border: 1px solid var(--line-d);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(246, 241, 232, .74);
  transition: all .22s var(--ease);
}

.chip:hover { border-color: var(--gold); color: var(--gold); }

.chip.on {
  background: linear-gradient(100deg, var(--gold-lt), var(--gold));
  border-color: transparent;
  color: #241703;
  font-weight: 600;
}

.chips--sm .chip { padding: 8px 13px; font-size: .68rem; }

.filters__adv {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.filters__toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--line-d);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .22s var(--ease), color .22s var(--ease);
}

.filters__toggle svg { width: 17px; height: 17px; }
.filters__toggle:hover { border-color: var(--gold); color: var(--gold); }
.filters__toggle[aria-expanded="true"] { border-color: var(--gold); color: var(--gold); }

.filters__count {
  background: var(--rose);
  color: #fff;
  font-size: .62rem;
  padding: 1px 6px;
  line-height: 1.5;
}

.sortbox {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-l);
}

.sortbox select {
  background: transparent;
  border: 1px solid var(--line-d);
  padding: 10px 12px;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--cream);
  outline: none;
}

.sortbox select option { background: var(--ink-2); color: var(--cream); }

.adv {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid var(--line-d);
  background: rgba(246, 241, 232, .03);
  display: grid;
  gap: 22px;
}

.adv__label {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 11px;
}

.adv__label strong { color: var(--cream); }

.adv input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--line-d);
  outline: none;
}

.adv input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: linear-gradient(100deg, var(--gold-lt), var(--gold));
  cursor: pointer;
  transform: rotate(45deg);
}

.adv input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border: 0;
  background: var(--gold);
  cursor: pointer;
}

.adv__scale {
  display: flex;
  justify-content: space-between;
  font-size: .64rem;
  color: var(--muted-l);
  margin-top: 8px;
}

.adv__reset {
  justify-self: start;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.filters__result {
  margin-top: 18px;
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--muted-l);
}

.filters__result strong { color: var(--gold-lt); }

/* ---------- grid de produtos ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-d);
  text-align: left;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  animation: rise .45s var(--ease) both;
}

@keyframes rise { from { opacity: 0; transform: translateY(14px); } }

.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-3);
}

.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.card__flags {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.flag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 8px;
  color: #fff;
  line-height: 1.5;
}

.flag--off { background: var(--rose); }
.flag--new { background: var(--jade); }
.flag--top { background: linear-gradient(100deg, var(--gold), var(--gold-dp)); color: #241703; }
.flag--exc { background: var(--plum); }

.card__eye {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: rgba(11, 10, 18, .74);
  border: 1px solid var(--line-d);
  color: var(--cream);
  transition: background .22s var(--ease), color .22s var(--ease);
}

.card__eye svg { width: 16px; height: 16px; }
.card__eye:hover { background: var(--gold); color: #241703; }

.card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.card__cat {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.card__name {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.22;
  color: var(--cream);
}

.card__mat { font-size: .68rem; color: var(--muted-l); }

.card__price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card__old { font-size: .72rem; color: rgba(246, 241, 232, .4); text-decoration: line-through; }
.card__new { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--gold-lt); }
.card__inst { font-size: .64rem; color: var(--muted-l); width: 100%; }

.card__add {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.card__add.in { background: var(--jade); border-color: var(--jade); color: #fff; }

@media (hover: hover) {
  .card:hover { border-color: rgba(217, 164, 65, .5); transform: translateY(-3px); }
  .card:hover .card__media img { transform: scale(1.07); }
  .card__add:hover { background: var(--gold); color: #241703; }
}

.more { display: flex; justify-content: center; margin-top: 34px; }
.more[hidden] { display: none; }

.empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line-d);
}

.empty svg { width: 54px; height: 54px; margin: 0 auto 18px; color: var(--gold); opacity: .6; }
.empty h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; }
.empty p { color: var(--muted-l); font-size: .9rem; max-width: 40ch; margin: 0 auto 22px; }

/* ---------- promoção ---------- */

.promo {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
}

.promo__bg { position: absolute; inset: 0; }
.promo__bg img { width: 100%; height: 100%; object-fit: cover; }

.promo__bg span {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 8% 20%, rgba(91, 42, 120, .82), transparent 64%),
    radial-gradient(80% 60% at 100% 90%, rgba(232, 80, 110, .40), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, rgba(11, 10, 18, .82) 30%, rgba(11, 10, 18, .90) 70%, var(--ink) 100%);
}

.promo__in { position: relative; z-index: 1; }

.promo__tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #241703;
  background: linear-gradient(100deg, var(--gold-lt), var(--gold));
  padding: 7px 13px;
  margin-bottom: 20px;
}

.promo__title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 11vw, 4.6rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.promo__title em {
  font-style: italic;
  background: linear-gradient(94deg, var(--rose), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .14em;
  margin-right: -.05em;
}

.promo__lead {
  font-size: 1rem;
  color: rgba(246, 241, 232, .8);
  max-width: 48ch;
  margin-bottom: 32px;
}

.clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 420px;
  margin-bottom: 26px;
}

.clock__cell {
  border: 1px solid var(--line-d);
  background: rgba(11, 10, 18, .55);
  padding: 14px 6px;
  text-align: center;
}

.clock__cell strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 7vw, 2.1rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.clock__cell span {
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-l);
}

.promo__bar { max-width: 420px; margin-bottom: 30px; }

.promo__bar-fill {
  height: 5px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin-bottom: 9px;
}

.promo__bar { position: relative; }
.promo__bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: rgba(246, 241, 232, .12);
}

.promo__bar-fill { position: relative; z-index: 1; }
.promo__bar p { font-size: .74rem; color: var(--muted-l); }
.promo__bar strong { color: var(--gold-lt); }

/* ---------- depoimentos ---------- */

.voices { overflow: hidden; }

.voices__track {
  display: flex;
  gap: 14px;
  transition: transform .6s var(--ease);
}

.voice {
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid var(--line-l);
  border-top: 3px solid var(--gold);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice__stars { display: flex; gap: 3px; color: var(--gold); }
.voice__stars svg { width: 15px; height: 15px; }

.voice__txt {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--txt);
  flex: 1;
}

.voice__who { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line-l); }

.voice__who img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--cream-2);
}

.voice__who > div { min-width: 0; }
.voice__n { font-weight: 600; font-size: .88rem; color: var(--txt); }
.voice__l { font-size: .7rem; color: var(--muted); }

.voice__badge {
  margin-left: auto;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--jade);
  border: 1px solid rgba(23, 166, 127, .4);
  padding: 4px 7px;
  white-space: nowrap;
}

.voices__nav { display: flex; align-items: center; gap: 14px; margin-top: 22px; }

.vnav {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-l);
  color: var(--txt);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.vnav svg { width: 20px; height: 20px; }
.vnav:hover { background: var(--txt); color: var(--cream); border-color: var(--txt); }

.voices__dots { display: flex; gap: 6px; margin-left: auto; }

.vdot {
  width: 22px; height: 2px;
  background: rgba(23, 20, 31, .18);
  transition: background .25s var(--ease);
}

.vdot.on { background: var(--gold-dp); }

/* ---------- ateliê ---------- */

.atelie {
  background: linear-gradient(180deg, var(--ink), var(--ink-2) 50%, var(--ink));
  padding: 76px 0;
  position: relative;
}

.atelie__in { display: grid; gap: 34px; }

.atelie__media { position: relative; }

.atelie__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-d);
}

.atelie__stamp {
  position: absolute;
  right: 14px;
  bottom: -20px;
  background: linear-gradient(140deg, var(--gold-lt), var(--gold) 55%, var(--gold-dp));
  color: #241703;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .45);
}

.atelie__stamp strong { display: block; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.atelie__stamp span { font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.atelie__copy p { color: rgba(246, 241, 232, .74); margin-top: 16px; font-size: .96rem; }
.atelie__copy .shead__tag { color: var(--gold); }

.atelie__list { list-style: none; margin-top: 26px; display: grid; gap: 11px; }

.atelie__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: rgba(246, 241, 232, .84);
}

.atelie__list span {
  width: 8px; height: 8px;
  margin-top: 7px;
  flex: none;
  background: var(--gold);
  transform: rotate(45deg);
}

.atelie__nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-d);
}

.atelie__nums strong { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--gold-lt); line-height: 1.1; }
.atelie__nums span { font-size: .66rem; letter-spacing: .06em; color: var(--muted-l); }

/* ---------- faq ---------- */

.faq { display: grid; gap: 0; border-top: 1px solid var(--line-d); }

.fitem { border-bottom: 1px solid var(--line-d); }

.fitem__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--cream);
  transition: color .22s var(--ease);
}

.fitem__q:hover { color: var(--gold); }

.fitem__ico {
  position: relative;
  width: 18px; height: 18px;
  flex: none;
}

.fitem__ico::before, .fitem__ico::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--gold);
  transition: transform .3s var(--ease);
}

.fitem__ico::after { transform: rotate(90deg); }
.fitem.on .fitem__ico::after { transform: rotate(0); }

.fitem__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease);
}

.fitem__a p {
  padding: 0 0 22px;
  font-size: .92rem;
  color: rgba(246, 241, 232, .68);
  max-width: 62ch;
}

.faq__after {
  margin-top: 40px;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--line-d);
  background: rgba(246, 241, 232, .03);
}

.faq__after p { color: var(--muted-l); margin-bottom: 18px; font-size: .94rem; }

/* ---------- cta final ---------- */

.final {
  padding: 84px 0;
  background:
    radial-gradient(80% 90% at 50% 0%, rgba(91, 42, 120, .5), transparent 62%),
    linear-gradient(180deg, var(--ink), #07060C);
  text-align: center;
}

.final h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 9.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.final p {
  color: var(--muted-l);
  max-width: 46ch;
  margin: 0 auto 30px;
  font-size: .98rem;
}

.final__cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

/* ---------- footer ---------- */

.ft {
  position: relative;
  background: #07060C;
  padding-top: 64px;
  overflow: hidden;
}

.ft::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dp) 18%, var(--gold-lt) 42%, var(--rose) 58%, var(--gold) 80%, transparent);
  z-index: 2;
}

.ft__glow {
  position: absolute;
  inset: -260px 0 auto 0;
  height: 560px;
  background:
    radial-gradient(46% 62% at 50% 100%, rgba(217, 164, 65, .30), transparent 70%),
    radial-gradient(38% 52% at 18% 96%, rgba(91, 42, 120, .55), transparent 70%),
    radial-gradient(34% 48% at 84% 96%, rgba(232, 80, 110, .26), transparent 70%);
  pointer-events: none;
}

.ft__word {
  position: relative;
  z-index: 0;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.9rem, 18vw, 12.6rem);
  line-height: .8;
  letter-spacing: .06em;
  text-align: center;
  color: rgba(217, 164, 65, .09);
  user-select: none;
  margin-top: 34px;
  padding: 0 12px;
}

@supports (-webkit-text-stroke: 1px black) {
  .ft__word {
    color: transparent;
    -webkit-text-stroke: 1px rgba(217, 164, 65, .22);
  }
}

.ft__top { position: relative; z-index: 1; display: grid; gap: 40px; }

.brand--ft { margin-bottom: 18px; }

.ft__pitch {
  color: var(--muted-l);
  font-size: .9rem;
  max-width: 42ch;
  margin-bottom: 26px;
}

.ft__news label {
  display: block;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ft__news-row { display: flex; border: 1px solid var(--line-d); }

.ft__news-row input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  padding: 14px 15px;
  font-size: .88rem;
}

.ft__news-row input::placeholder { color: rgba(246, 241, 232, .34); }

.ft__news-row button {
  width: 54px;
  display: grid;
  place-items: center;
  background: linear-gradient(100deg, var(--gold-lt), var(--gold));
  color: #241703;
  transition: filter .22s var(--ease);
}

.ft__news-row button svg { width: 20px; height: 20px; }
.ft__news-row button:hover { filter: brightness(1.1); }

.ft__news-msg { font-size: .74rem; color: var(--jade); margin-top: 9px; min-height: 1.2em; }
.ft__news-msg.err { color: var(--rose); }

.ft__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }

.ft__col { display: flex; flex-direction: column; gap: 9px; }

.ft__col h3 {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 5px;
}

.ft__col a, .ft__col span {
  font-size: .84rem;
  color: var(--muted-l);
  transition: color .2s var(--ease);
}

.ft__col a:hover { color: var(--gold); }

.ft__mid {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  padding: 24px 20px;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ft__badges { display: flex; flex-wrap: wrap; gap: 8px; }

.ft__badge {
  font-size: .66rem;
  letter-spacing: .04em;
  color: var(--muted-l);
  border: 1px solid var(--line-d);
  padding: 7px 11px;
}

.ft__badge b { color: var(--gold-lt); font-weight: 600; }

.ft__social { display: flex; gap: 8px; }

.ft__social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-d);
  color: var(--muted-l);
  transition: all .22s var(--ease);
}

.ft__social svg { width: 20px; height: 20px; }
.ft__social a[aria-label="WhatsApp"] svg { width: 17px; height: 17px; }
.ft__social a:hover { color: #241703; background: var(--gold); border-color: var(--gold); }

.ft__bot { position: relative; z-index: 1; padding: 22px 0 34px; }

.ft__bot-in {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .7rem;
  color: rgba(246, 241, 232, .42);
}

.ft__credit a { color: var(--gold); font-weight: 600; }
.ft__credit a:hover { text-decoration: underline; }

.totop {
  position: fixed;
  right: 16px;
  bottom: 82px;
  z-index: 60;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(11, 10, 18, .86);
  border: 1px solid var(--line-d);
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.totop svg { width: 20px; height: 20px; }
.totop.on { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- whatsapp flutuante ---------- */

.wafloat {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 60;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #25D366, #0E7D5E);
  color: #fff;
  box-shadow: 0 10px 28px rgba(14, 125, 94, .42);
  transition: transform .25s var(--ease);
}

.wafloat svg { width: 27px; height: 27px; }
.wafloat:hover { transform: scale(1.08); }

/* ---------- scrim ---------- */

.scrim {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(4, 3, 8, .88);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.scrim.on { opacity: 1; }

/* ---------- carrinho ---------- */

.cart {
  position: fixed;
  top: 0; right: 0;
  z-index: 100;
  width: 100%;
  max-width: 430px;
  height: 100svh;
  background: var(--ink-2);
  border-left: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
  transform: translateX(101%);
  transition: transform .42s var(--ease);
  visibility: hidden;
}

.cart.on { transform: none; visibility: visible; }

.cart__hd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line-d);
  flex: none;
}

.cart__hd h2 { font-family: var(--serif); font-size: 1.4rem; }
.cart__hd p { font-size: .72rem; color: var(--muted-l); margin-top: 2px; }

.cart__x { margin-left: auto; font-size: 2rem; line-height: .7; color: var(--muted-l); padding: 0 4px; }
.cart__x:hover { color: var(--rose); }

.ship { padding: 14px 20px; border-bottom: 1px solid var(--line-d); flex: none; background: rgba(217, 164, 65, .05); }
.ship__bar { height: 3px; background: rgba(246, 241, 232, .14); margin-bottom: 8px; }
.ship__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--jade)); transition: width .45s var(--ease); }
.ship p { font-size: .72rem; color: var(--muted-l); }
.ship strong { color: var(--gold-lt); }
.ship.free p { color: var(--jade); }
.ship.free strong { color: var(--jade); }

.cart__body { flex: 1; overflow-y: auto; padding: 6px 20px; }

.ci {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-d);
}

.ci__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.ci__media img { width: 100%; height: 100%; object-fit: cover; }

.ci__n { font-family: var(--serif); font-size: .98rem; line-height: 1.2; }
.ci__m { font-size: .66rem; color: var(--muted-l); margin-top: 2px; }
.ci__p { font-size: .82rem; color: var(--gold-lt); margin-top: 6px; font-weight: 600; }
.ci__p s { color: rgba(246, 241, 232, .34); font-weight: 400; font-size: .74rem; margin-right: 6px; }

.ci__row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }

.qty { display: flex; align-items: center; border: 1px solid var(--line-d); }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 1rem; color: var(--gold); }
.qty button:hover { background: rgba(217, 164, 65, .12); }
.qty span { min-width: 28px; text-align: center; font-size: .82rem; font-variant-numeric: tabular-nums; }

.ci__del { margin-left: auto; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-l); }
.ci__del:hover { color: var(--rose); }

.cart__void { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 26px; gap: 8px; }
.cart.empty .cart__void { display: flex; }
.cart.empty .ship { display: none; }
.cart__void svg { width: 62px; height: 62px; color: var(--gold); opacity: .45; margin-bottom: 8px; }
.cart__void h3 { font-family: var(--serif); font-size: 1.3rem; }
.cart__void p { font-size: .86rem; color: var(--muted-l); max-width: 30ch; margin-bottom: 16px; }

.cart__ft { flex: none; border-top: 1px solid var(--line-d); padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); background: var(--ink); }

.cart__form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.cart__field { display: grid; gap: 5px; min-width: 0; }

.cart__form label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-l);
}

.cart__form input {
  width: 100%;
  min-width: 0;
  background: rgba(246, 241, 232, .05);
  border: 1px solid var(--line-d);
  padding: 10px 11px;
  font-size: .82rem;
  outline: none;
}

.cart__form input:focus { border-color: var(--gold); }
.cart__form input::placeholder { color: rgba(246, 241, 232, .3); }

.tot { display: grid; gap: 5px; margin-bottom: 4px; }
.tot > div { display: flex; justify-content: space-between; align-items: baseline; font-size: .82rem; color: var(--muted-l); }
.tot dd { font-variant-numeric: tabular-nums; color: var(--cream); }
.tot--save dd { color: var(--jade); }
.tot--big { padding-top: 9px; border-top: 1px solid var(--line-d); margin-top: 5px; }
.tot--big dt { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); }
.tot--big dd { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--gold-lt); }

.tot__pix { font-size: .68rem; color: var(--muted-l); margin: 5px 0 12px; }
.tot__pix strong { color: var(--jade); }

.cart__clear { display: block; margin: 10px auto 0; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-l); }
.cart__clear:hover { color: var(--rose); }

/* ---------- modais ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(5, 4, 10, .78);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 0;
}

.modal.on { opacity: 1; visibility: visible; }

.modal__box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92svh;
  overflow-y: auto;
  background: var(--ink-2);
  border-top: 3px solid var(--gold);
  transform: translateY(24px);
  transition: transform .38s var(--ease);
}

.modal.on .modal__box { transform: none; }

.modal__x {
  position: absolute;
  top: 8px; right: 10px;
  z-index: 3;
  width: 36px; height: 36px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cream);
  background: rgba(11, 10, 18, .6);
}

.modal__x:hover { color: var(--rose); }

.modal__box--demo { padding: 34px 24px 30px; text-align: left; }

.modal__ribbon {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #241703;
  background: linear-gradient(100deg, var(--gold-lt), var(--gold));
  padding: 6px 12px;
  margin-bottom: 18px;
}

.modal__box--demo h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.modal__box--demo p { font-size: .9rem; color: rgba(246, 241, 232, .74); margin-bottom: 14px; }
.modal__box--demo strong { color: var(--gold-lt); font-weight: 600; }

.modal__sign {
  padding-top: 14px;
  border-top: 1px solid var(--line-d);
  font-size: .82rem !important;
}

.modal__sign a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.modal__box--demo .btn { width: 100%; margin-top: 10px; }

.pm { display: grid; }
.pm__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink-3); }
.pm__media img { width: 100%; height: 100%; object-fit: cover; }
.pm__copy { padding: 22px 20px 26px; }

.pm__cat { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.pm__copy h3 { font-family: var(--serif); font-size: 1.7rem; line-height: 1.12; margin: 6px 0 12px; }
.pm__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pm__desc { font-size: .92rem; color: rgba(246, 241, 232, .74); margin-bottom: 18px; }

.pm__specs { list-style: none; display: grid; gap: 8px; margin-bottom: 20px; }

.pm__specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(246, 241, 232, .8);
}

.pm__specs li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

.pm__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; padding-top: 16px; border-top: 1px solid var(--line-d); }
.pm__old { text-decoration: line-through; color: rgba(246, 241, 232, .4); font-size: .86rem; }
.pm__price strong { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-lt); }
.pm__inst { width: 100%; font-size: .74rem; color: var(--muted-l); }
.pm .btn { width: 100%; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 88px;
  z-index: 99;
  background: var(--ink-3);
  border-left: 3px solid var(--jade);
  padding: 14px 16px;
  font-size: .84rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform .38s var(--ease), opacity .3s var(--ease), visibility .38s;
}

.toast.on { transform: none; opacity: 1; visibility: visible; }
.toast strong { color: var(--gold-lt); }

/* ---------- reveal ---------- */

.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
}

/* ---------- 480 ---------- */

@media (min-width: 480px) {
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { flex: 1; }
  .final__cta { flex-direction: row; justify-content: center; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .cat { height: 220px; }
}

/* ---------- 720 ---------- */

@media (min-width: 720px) {
  :root { --hd-h: 72px; }

  .wrap { padding: 0 32px; }
  .sec { padding: 100px 0; }
  .demo-strip p { font-size: .72rem; }

  .grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .card__body { padding: 18px; }
  .card__name { font-size: 1.1rem; }

  .voice { flex: 0 0 calc(50% - 7px); }

  .atelie__in { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 46px; }
  .atelie__media img { aspect-ratio: 3 / 4; }

  .ft__top { grid-template-columns: 1.1fr 1.4fr; gap: 50px; }
  .ft__cols { grid-template-columns: repeat(3, 1fr); }
  .ft__mid { flex-direction: row; align-items: center; justify-content: space-between; }
  .ft__bot-in { flex-direction: row; justify-content: space-between; align-items: center; }

  .modal { align-items: center; padding: 24px; }
  .modal__box--demo { padding: 44px 40px 38px; }

  .pm { grid-template-columns: 1fr 1fr; }
  .pm__media { aspect-ratio: auto; height: 100%; }
  .modal__box--p { max-width: 860px; }
  .pm__copy { padding: 34px 32px; }

  .hero { padding-bottom: 120px; }
  .hero__proof { max-width: 520px; }
  .totop { right: 24px; bottom: 96px; }
  .wafloat { right: 24px; bottom: 24px; width: 58px; height: 58px; }
  .toast { left: 24px; right: auto; bottom: 24px; max-width: 380px; }
  .demo-strip__more { display: inline; }
  .ft__word { margin-top: 46px; }
}

/* ---------- 1024 ---------- */

@media (min-width: 1024px) {
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    inset: auto;
    background: none;
    padding: 0;
    gap: 26px;
    margin-left: 30px;
  }

  .nav a {
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    color: rgba(246, 241, 232, .78);
  }

  .nav a:hover { color: var(--gold); padding-left: 0; border-bottom-color: var(--gold); }

  .ibtn--menu { display: none; }
  #searchJump { display: grid; }

  .cats { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .cat { height: 340px; }
  .cat__d { font-size: .7rem; }

  .grid { grid-template-columns: repeat(4, 1fr); }
  .voice { flex: 0 0 calc(33.333% - 10px); }

  .sec { padding: 118px 0; }
  .hero__lead { font-size: 1.08rem; }
  .promo__lead { font-size: 1.06rem; }

  .filters__search { max-width: 520px; }
}

/* ---------- correções de exibição ---------- */

.grid[hidden], .adv[hidden], .tot > div[hidden] { display: none; }

@media (min-width: 720px) {
  .filters__row { margin: 0; padding: 0; }
}
