/* ─── TOKENS ───────────────────────────────────────────── */
:root {
  --bg:        #0A0908;
  --bg-soft:   #100E0C;
  --panel:     #16130F;
  --panel-2:   #1C1814;
  --line:      #2A2520;
  --line-soft: #211D18;
  --cream:     #F3ECDD;
  --text:      #B4ADA1;
  --text-dim:  #7E776C;
  --gold:      #C8A24C;
  --gold-soft: #A98B45;
  --gold-deep: #7C6531;
  --display:   'Anton', 'Arial Narrow', sans-serif;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Hanken Grotesk', system-ui, sans-serif;
  --maxw:      1240px;
  --gutter:    clamp(20px, 5vw, 96px);
  --section-y: clamp(80px, 10vh, 160px);
  /* legacy aliases for JS-generated component classes */
  --ink:        var(--cream);
  --ink-2:      var(--text);
  --ink-3:      var(--text-dim);
  --ink-4:      #3a3730;
  --bg-card:    var(--panel);
  --bg-elev:    var(--bg-soft);
  --gold-2:     var(--gold-soft);
  --gold-shadow:rgba(200,162,76,.35);
}

/* ─── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(200,162,76,.06), transparent 60%),
    radial-gradient(100% 60% at 50% 110%, rgba(0,0,0,.6), transparent 50%);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ─── LAYOUT ───────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.section {
  padding-block: var(--section-y);
  position: relative;
  z-index: 1;
}
.section:first-of-type { border-top: 0; }

/* mobile: single column, text above media */
.split { display: grid; grid-template-columns: 1fr; gap: 36px; }
.split .col-text  { order: 0; min-width: 0; }
.split .col-media { order: 1; min-width: 0; }
.split.reverse .col-text  { order: 0; }
.split.reverse .col-media { order: 1; }

/* ─── TYPOGRAPHY ───────────────────────────────────────── */
.eyebrow, .tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before, .tag::before {
  content: ""; width: 28px; height: 1.5px;
  background: var(--gold); flex: none;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(42px, 11vw, 80px);
}
h1.display { font-size: clamp(44px, 13vw, 84px); }
.display .gold { color: var(--gold); }

.italic-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 20px;
}
.lead {
  font-family: var(--serif);
  font-style: italic; font-weight: 500;
  color: var(--cream);
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.32;
  margin: 22px 0 0;
}
.body {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.72;
  color: var(--text);
  margin: 26px 0 0;
}
.body strong { color: var(--cream); font-weight: 700; }
.body em { color: var(--gold); font-style: italic; font-family: var(--serif); font-size: 1.1em; }
.closer {
  font-family: var(--sans); font-weight: 700;
  text-transform: uppercase; font-size: 13px;
  color: var(--text-dim); margin-top: 20px; letter-spacing: .04em;
}
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .eyebrow { display: inline-flex; }
.section-head.center .body { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ─── HEADER ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(10,9,8,.92), rgba(10,9,8,.55));
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: center;
  padding-block: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand img { height: 28px; width: auto; display: block; }

/* ─── HERO SPLIT SCREEN ────────────────────────────────── */
.hero {
  padding: 0;
  border-top: 0;
  display: block;
}

.hero-container {
  display: flex;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8% clamp(32px, 8%, 12px);
  position: relative;
  z-index: 2;
  max-width: 47%;
}

.hero-content {
  max-width: 520px;
  width: 100%;
}

.logo-sala { margin-bottom: 28px; }
.logo-sala img { height: 44px; width: auto; opacity: .9; }

.hero .display { font-size: clamp(40px, 5vw, 80px); margin-bottom: 24px; }
.hero .italic-sub { margin-top: 20px; max-width: 36ch; }
.hero .hawk { width: 64px; margin: 0 0 24px; opacity: .85; display: block; }

.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

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

/* Softens left edge (blends into text panel) + vignette on all sides */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(10,9,8,.55) 22%, transparent 45%),
    radial-gradient(ellipse at center, transparent 42%, rgba(10,9,8,.65) 100%);
}

/* Mobile: stack vertically, text above image */
@media (max-width: 880px) {
  .hero-container {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .hero-left {
    flex: none;
    width: 100%;
    max-width: none;
    padding: clamp(44px, 8vw, 64px) var(--gutter) clamp(36px, 6vw, 52px);
    justify-content: flex-start;
  }
  .hero-content { max-width: none; }
  .hero-right {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .hero-right img { object-fit: contain; height: auto; }
  /* On mobile: subtle vignette only */
  .hero-right::after {
    background: radial-gradient(ellipse at center, transparent 55%, rgba(10,9,8,.4) 100%);
  }
}

@media (max-width: 600px) {
  .hero .display { font-size: clamp(36px, 11vw, 58px); }
}

/* ─── IMAGE SLOT ───────────────────────────────────────── */
.img-slot {
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,162,76,.04);
  border: 1px solid var(--line);
  color: rgba(200,162,76,.5);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: 16px;
}
.img-slot svg { width: 28px; height: 28px; opacity: .4; margin: 0 auto 10px; }

/* ─── HISTÓRIA GIF / REEL ──────────────────────────────── */
.historia-gif {
  display: block;
  width: calc(100% + 2 * var(--gutter));
  margin: 28px calc(-1 * var(--gutter)) 0;
  max-width: none; height: auto;
}

/* ─── CONQUISTA PHOTO ──────────────────────────────────── */
.conquista-photo { width: 100%; min-height: 320px; overflow: hidden; }
.conquista-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── PRATELEIRA CAROUSEL ──────────────────────────────── */
.prateleira-photo { position: relative; margin: 28px calc(-1 * var(--gutter)) 0; }
.prateleira-rail {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 0 var(--gutter); scroll-padding-left: var(--gutter);
  cursor: grab; user-select: none;
}
.prateleira-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.prateleira-rail::-webkit-scrollbar { display: none; }
.prateleira-slide {
  flex: 0 0 calc(100% + 2px); scroll-snap-align: start;
  position: relative; pointer-events: none;
}
.prateleira-slide .img-slot { width: 100%; height: 700px; border: none; }
.prateleira-slide img { width: 100%; height: 700px; object-fit: cover; display: block; }
.prateleira-dots {
  display: flex; justify-content: center; gap: 7px;
  padding: 12px 0; background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.prateleira-dots span {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(200,162,76,.25);
  transition: background .25s ease, width .25s ease;
}
.prateleira-dots span.active { background: var(--gold); width: 18px; }

/* ─── VIDEO FRAME (unboxing) ───────────────────────────── */
.video-frame {
  aspect-ratio: 9 / 16; background: var(--panel);
  border: 1px solid var(--line); overflow: hidden;
  position: relative; display: block; cursor: pointer;
}
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame .v-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.55) 100%);
  transition: opacity .3s ease; pointer-events: none;
}
.video-frame.playing .v-overlay { opacity: 0; }
.video-frame .v-sound-hint { font-family: var(--serif); font-style: italic; font-size: 13px; color: rgba(255,255,255,.52); pointer-events: none; transition: opacity .3s ease; }
.video-frame.unmuted .v-sound-hint { opacity: 0; }
.video-frame .v-play { width: 78px; height: 78px; border-radius: 999px; background: rgba(20,18,14,.78); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px); display: grid; place-items: center; color: var(--cream); }
.video-frame .v-play svg { margin-left: 4px; }
.video-frame .v-timeline { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; height: 28px; display: flex; align-items: flex-end; cursor: pointer; }
.video-frame .v-timeline-track { width: 100%; height: 3px; background: rgba(255,255,255,.22); position: relative; transition: height .15s ease; }
.video-frame .v-timeline:hover .v-timeline-track, .video-frame .v-timeline:active .v-timeline-track { height: 5px; }
.video-frame .v-timeline-buf { position: absolute; left: 0; top: 0; height: 100%; background: rgba(255,255,255,.3); width: 0; pointer-events: none; }
.video-frame .v-timeline-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); width: 0; pointer-events: none; transition: width .1s linear; }
.video-frame .v-timeline-thumb { position: absolute; top: 50%; right: -6px; width: 12px; height: 12px; border-radius: 999px; background: var(--gold); transform: translateY(-50%) scale(0); transition: transform .15s ease; pointer-events: none; }
.video-frame .v-timeline:hover .v-timeline-thumb { transform: translateY(-50%) scale(1); }
.video-frame .v-time { position: absolute; bottom: 36px; left: 14px; z-index: 4; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .08em; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.7); pointer-events: none; opacity: 0; transition: opacity .2s ease; }
.video-frame:hover .v-time, .video-frame.scrubbing .v-time { opacity: 1; }
.video-frame .v-audio { position: absolute; bottom: 42px; right: 14px; z-index: 3; width: 36px; height: 36px; border-radius: 999px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); display: grid; place-items: center; cursor: pointer; color: #fff; transition: background .2s ease, transform .1s ease; }
.video-frame .v-audio:hover { background: rgba(0,0,0,.75); }
.video-frame .v-audio:active { transform: scale(.92); }
.video-frame .v-audio .icon-muted { display: block; }
.video-frame .v-audio .icon-sound { display: none; }
.video-frame.unmuted .v-audio .icon-muted { display: none; }
.video-frame.unmuted .v-audio .icon-sound { display: block; }

/* ─── STORIES CAROUSEL (testi + craft) ─────────────────── */
.carousel-wrap {
  position: relative;
  margin: 28px calc(-1 * var(--gutter)) 0;
}
.dots {
  display: flex; justify-content: center; gap: 7px;
  padding: 10px 0;
}
.dots span { width: 6px; height: 6px; border-radius: 999px; background: rgba(200,162,76,.25); transition: background .25s ease, width .25s ease; }
.dots span.active { background: var(--gold); width: 18px; }
.rail {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 0 var(--gutter); scroll-padding-left: var(--gutter);
  cursor: grab; user-select: none;
}
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 calc(100% + 2px); scroll-snap-align: start;
  position: relative; aspect-ratio: 9 / 16;
  overflow: hidden; border: 1px solid var(--line);
  background: var(--panel); border-radius: 2px;
  cursor: pointer; transition: opacity .3s ease;
}
/* peek do próximo card no testi (mobile + desktop via col-media) */
.testi .testi-card { flex: 0 0 88%; }
.testi-card.out-of-focus { opacity: .55; }
.testi-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-card .tc-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 45%); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; pointer-events: none; }
.testi-card .tc-name { font-family: var(--sans); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .04em; margin-bottom: 2px; }
.testi-card .tc-cert { font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.testi-card .tc-stars { display: flex; gap: 3px; margin-bottom: 8px; color: var(--gold); }
.testi-card .tc-stars svg { width: 13px; height: 13px; }
.testi-card .tc-audio { position: absolute; top: 12px; right: 12px; z-index: 5; width: 32px; height: 32px; border-radius: 999px; background: rgba(0,0,0,.52); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px); display: grid; place-items: center; cursor: pointer; color: #fff; transition: background .2s, transform .1s; }
.testi-card .tc-audio:hover  { background: rgba(0,0,0,.75); }
.testi-card .tc-audio:active { transform: scale(.9); }
.testi-card .tc-audio .icon-muted { display: block; }
.testi-card .tc-audio .icon-sound { display: none; }
.testi-card.unmuted .tc-audio .icon-muted { display: none; }
.testi-card.unmuted .tc-audio .icon-sound { display: block; }
.testi-card .tc-play-wrap { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; transition: opacity .25s ease; pointer-events: none; }
.testi-card.playing .tc-play-wrap { opacity: 0; }
.testi-card .tc-play-btn { width: 64px; height: 64px; border-radius: 999px; background: rgba(10,8,5,.72); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px); display: grid; place-items: center; color: #fff; }
.testi-card .tc-play-btn svg { margin-left: 3px; }
.testi-card .tc-timeline { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; height: 24px; display: flex; align-items: flex-end; cursor: pointer; }
.testi-card .tc-track { width: 100%; height: 3px; background: rgba(255,255,255,.2); position: relative; transition: height .15s ease; }
.testi-card .tc-timeline:hover .tc-track { height: 5px; }
.testi-card .tc-buf { position: absolute; left: 0; top: 0; height: 100%; background: rgba(255,255,255,.3); width: 0; pointer-events: none; }
.testi-card .tc-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); width: 0; pointer-events: none; transition: width .1s linear; }

/* ─── ANATOMIA ─────────────────────────────────────────── */
.anatomia-intro { font-family: var(--sans); font-size: 14px; line-height: 1.65; color: var(--text-dim); margin-top: 18px; }
.anatomia-rail {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  margin: 28px calc(-1 * var(--gutter)) 0;
  padding: 0 var(--gutter) 4px; scroll-padding-left: var(--gutter);
  cursor: grab; user-select: none;
}
.anatomia-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.anatomia-rail::-webkit-scrollbar { display: none; }
.anatomia-dots {
  display: flex; justify-content: center; gap: 7px;
  padding: 12px 0; background: var(--bg);
  border-bottom: 1px solid var(--line);
  margin: 0 calc(-1 * var(--gutter));
}
.anatomia-dots span { width: 6px; height: 6px; border-radius: 999px; background: rgba(200,162,76,.25); transition: background .25s ease, width .25s ease; }
.anatomia-dots span.active { background: var(--gold); width: 18px; }
.anatomia-card { flex: 0 0 calc(100% + 2px); scroll-snap-align: start; background: var(--panel); overflow: hidden; display: flex; flex-direction: column; }
.anatomia-card .anat-img { width: 100%; height: 300px; overflow: hidden; background: var(--panel); }
.anatomia-card .anat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anatomia-card .anat-img .img-slot { height: 300px; border: none; }
.anatomia-card .anat-body { padding: 20px; }
.anatomia-card .anat-num { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.anatomia-card .anat-name { font-family: var(--display); font-size: 20px; font-weight: 400; text-transform: uppercase; letter-spacing: -.005em; color: var(--cream); margin-bottom: 10px; line-height: 1; }
.anatomia-card .anat-desc { font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--text-dim); }

/* ─── CERT PHOTO ───────────────────────────────────────── */
.cert-photo-slot { width: 100%; height: 300px; border: 1px solid var(--line); background: rgba(200,162,76,.03); }

/* ─── PRICE CARD ───────────────────────────────────────── */
.price-card { border: 1px solid var(--line); background: linear-gradient(160deg, var(--panel-2), var(--panel)); border-radius: 6px; padding: clamp(24px, 4vw, 44px); }
.price-pix { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-pix .now { font-family: var(--display); font-size: clamp(36px, 8vw, 60px); color: var(--cream); line-height: .9; }
.price-pix .now small { font-family: var(--sans); font-size: 14px; color: var(--gold); font-weight: 700; letter-spacing: .04em; }
.price-was { margin-top: 10px; color: var(--text-dim); }
.price-was .strike { text-decoration: line-through; }
.price-installments { margin-top: 4px; color: var(--text); font-size: 15px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 17px 22px; border-radius: 4px;
  font-family: var(--sans); font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; font-size: 13px; text-decoration: none;
  cursor: pointer; border: 1px solid transparent;
}
.btn + .btn { margin-top: 12px; }
.btn-primary { background: var(--gold); color: #14110B; border-color: var(--gold); margin-top: 28px; }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-ghost svg { width: 18px; height: 18px; flex: none; }
.price-trust { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; color: var(--text-dim); font-size: 11px; }
.price-trust .sep { color: var(--gold-deep); }

/* ─── FAQ ──────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; color: var(--cream); font-family: var(--sans); font-weight: 700; font-size: clamp(15px, 1.3vw, 20px); }
.faq-q .ico { flex: none; width: 22px; height: 22px; color: var(--gold); transition: transform .25s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--text); transition: max-height .35s ease, padding .35s ease; font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 360px; padding-bottom: 24px; }
.faq-a p { margin: 0; }
.faq-a p strong { color: var(--cream); }

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); padding-block: 60px 44px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-about p { color: var(--text-dim); font-size: 15px; line-height: 1.65; max-width: 38ch; margin: 14px 0 0; }
.footer-col h5 { color: var(--cream); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col a, .footer-col span { display: block; color: var(--text); font-size: 15px; text-decoration: none; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 8px; color: var(--text-dim); font-size: 13px; }

/* ─── DESKTOP (≥ 880px) ─────────────────────────────────── */
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 110px);
    align-items: center;
  }
  .split .col-media { order: 0; }
  .split.reverse .col-media { order: -1; }
  .split.reverse .col-text  { order: 0; }

  /* historia gif: remove bleed */
  .historia-gif { width: 100%; margin-left: 0; margin-right: 0; max-height: 420px; object-fit: cover; }

  /* prateleira: remove bleed */
  .prateleira-photo { margin-left: 0; margin-right: 0; margin-top: 0; }
  .prateleira-rail { padding: 0; scroll-padding-left: 0; }
  .prateleira-slide { flex: 0 0 82%; }

  /* stories carousels: remove bleed */
  .carousel-wrap { margin-left: 0; margin-right: 0; margin-top: 0; }
  .rail { padding: 0; scroll-padding-left: 0; }

  /* testi: 1 card per snap + peek do próximo, altura fixa */
  .testi .testi-card { aspect-ratio: unset; height: 700px; flex: 0 0 88%; }

  /* craft: 1 card per snap, fixed height inside split column */
  .craft .testi-card { aspect-ratio: unset; height: 700px; flex: 0 0 88%; }

  /* anatomia: remove bleed, show 4 cards at a time */
  .anatomia-rail { margin-left: 0; margin-right: 0; padding: 0; scroll-padding-left: 0; margin-top: 56px; }
  .anatomia-dots { margin-left: 0; margin-right: 0; }
  /* 3 cards visíveis + pedaço do 4º */
  .anatomia-card { flex: 0 0 calc(32% - 7px); height: calc(100svh - 320px); min-height: 440px; }
  .anatomia-card .anat-img { flex: 1; height: auto; min-height: 0; }
  .anatomia-card .anat-img .img-slot { height: 100%; }

  /* unboxing video */
  .video-frame { aspect-ratio: unset; height: 700px; }

  /* cert photo: fill column */
  .cert-photo-slot { height: 420px; }

  /* conquista photo: portrait proportion */
  .conquista-photo { aspect-ratio: 4 / 5; min-height: unset; }

  /* footer */
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
}

/* ─── PHONE (≤ 600px) ───────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-y: clamp(56px, 9vh, 88px); --gutter: 20px; }
  .display { font-size: clamp(38px, 12vw, 58px); }
  h1.display { font-size: clamp(40px, 14vw, 64px); }
  .lead { font-size: clamp(18px, 5vw, 26px); }
  .section-head.center .body { max-width: none; }
}

/* ─── SMALL PHONE (≤ 400px) ────────────────────────────── */
@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .display { font-size: clamp(32px, 10vw, 44px); }
  .btn { font-size: 12px; padding: 15px 18px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING PRICE BAR
═══════════════════════════════════════════════════════════════════ */
.float-bar {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 900;
  width: min(calc(100% - 32px), 720px);
  transform: translateX(-50%) translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform .5s cubic-bezier(.32, 0, .67, 0), opacity .4s ease;
}
.float-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
}
.float-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(18, 16, 13, .97);
  border: 1px solid rgba(200, 162, 76, .2);
  border-radius: 999px;
  padding: 13px 13px 13px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,.72), 0 2px 8px rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.float-bar-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.float-scarcity {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: float-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes float-dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,162,76,.5); }
  50%       { opacity: .6; box-shadow: 0 0 0 5px rgba(200,162,76,0); }
}
.float-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.float-price {
  font-family: var(--ff-sans);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
}
.float-cur { font-size: 12px; margin-right: 1px; }
#float-price-int { font-size: 28px; }
.float-price-dec { font-size: 14px; }
.float-parc {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(245, 237, 217, .5);
  white-space: nowrap;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--gold);
  color: #0a0908;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  transition: opacity .2s;
}
.float-btn:hover { opacity: .82; }
@media (max-width: 480px) {
  .float-bar {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 20px);
  }
  .float-bar-inner { padding: 10px 10px 10px 18px; gap: 10px; }
  #float-price-int { font-size: 24px; }
  .float-btn { padding: 12px 16px; font-size: 12px; gap: 6px; }
  .float-btn svg { display: none; }
}
