/* ═══════════════ PixSell — La Vitrina Invisible ═══════════════ */
:root {
  --naranja: #EB5304;
  --tinta: #1C120C;
  --crema: #F7EBDF;
  --gris: #8a8078;
  --azul-tg: #0088cc;
  --check-azul: #34B7F1;
  --fuente-display: "Instrument Serif", Georgia, serif;
  --fuente-body: "Plus Jakarta Sans", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { height: 100%; }

body {
  font-family: var(--fuente-body);
  background: var(--tinta);
  color: var(--tinta);
  -webkit-font-smoothing: antialiased;
}

button { font-family: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Marco de teléfono ── */
.stage { min-height: 100dvh; display: grid; place-items: center; background: radial-gradient(120% 120% at 50% 0%, #2a1d13 0%, var(--tinta) 60%); }
.phone {
  position: relative; width: min(430px, 100vw); height: 100dvh;
  background: #fff; overflow: hidden; display: flex; flex-direction: column;
}
@media (min-width: 500px) {
  .phone { height: min(100dvh, 932px); border-radius: 28px; box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 10px #0d0805; }
}

/* ── Barra de navegador in-app ── */
.browser-bar {
  flex: 0 0 44px; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #fafafa; border-bottom: 1px solid #e8e2db;
  font-size: 13px; font-weight: 600; color: #555; z-index: 40;
}

/* ── Scroller con snap ── */
.scroller {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  scroll-snap-type: y proximity; scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.scene { min-height: 100%; scroll-snap-align: start; position: relative; }

/* ── Utilidades ── */
.btn-primary {
  display: block; width: calc(100% - 32px); margin: 14px 16px;
  padding: 15px 20px; border-radius: 14px;
  background: var(--naranja); color: #fff; font-weight: 800; font-size: 16px;
  text-align: center; text-decoration: none;
  box-shadow: 0 8px 22px rgba(235, 83, 4, .35);
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.btn-primary:active { transform: scale(.97); }
.btn-ghost {
  padding: 13px 26px; border: 1.5px solid rgba(247,235,223,.6); border-radius: 999px;
  color: var(--crema); font-weight: 700; font-size: 15px;
}
.link-btn { color: var(--gris); font-size: 13px; text-decoration: underline; margin-top: 18px; }

.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--naranja), #f9a066);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1.5px var(--naranja);
}
.avatar.sm { width: 30px; height: 30px; }
.av-user { background: linear-gradient(135deg, #9aa7b5, #5d6b7a); box-shadow: none; }
.av-bot {
  background: var(--naranja) url("./assets/isotipo.png") center / 62% no-repeat;
  box-shadow: none;
}

/* ═══════════════ ESCENA 1 · Instagram feed ═══════════════ */
.s1 { background: #fff; display: flex; flex-direction: column; justify-content: center; }
.ig-head { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.ig-head-names { display: flex; flex-direction: column; line-height: 1.2; }
.ig-head-names strong { font-size: 13.5px; }
.ig-head-names span { font-size: 11.5px; color: var(--gris); }
.ig-more { margin-left: auto; letter-spacing: 2px; color: #333; font-weight: 700; }

.ig-photo {
  position: relative; aspect-ratio: 1; user-select: none; -webkit-user-select: none;
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(255,255,255,.35) 0%, transparent 60%),
    linear-gradient(160deg, var(--naranja) 0%, #f07a35 45%, var(--crema) 130%);
  display: grid; place-items: center; touch-action: manipulation; overflow: hidden;
}
.ig-photo .sneaker { width: 72%; filter: drop-shadow(0 18px 22px rgba(28,18,12,.35)); }
.big-heart {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transform: scale(.3); pointer-events: none;
}
.big-heart svg { width: 96px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.3)); }
.big-heart.burst { animation: heart-burst .9s ease-out; }
@keyframes heart-burst {
  0% { opacity: 0; transform: scale(.3); }
  25% { opacity: 1; transform: scale(1.15); }
  45% { transform: scale(.95); }
  60% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05) translateY(-14px); }
}

.ig-actions { display: flex; gap: 14px; padding: 10px 14px 4px; }
.ig-act svg { width: 24px; height: 24px; fill: none; stroke: var(--tinta); stroke-width: 1.8; }
.ig-act.right { margin-left: auto; }
.ig-act.liked svg { fill: #ff2d55; stroke: #ff2d55; animation: like-pop .35s ease-out; }
@keyframes like-pop { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

.ig-likes { padding: 2px 14px; font-size: 13.5px; }
.ig-caption { padding: 4px 14px; font-size: 13.5px; line-height: 1.45; }
.ig-comment {
  display: flex; gap: 10px; margin: 12px 14px 0; padding: 11px 12px;
  background: #fdf4ec; border: 1px solid #f3ddc9; border-radius: 14px;
  font-size: 13.5px; line-height: 1.45; align-items: flex-start;
}
.ig-comment .avatar { margin-top: 2px; }

.scroll-hint {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-size: 22px; color: var(--gris); animation: hint-bob 1.6s ease-in-out infinite;
  transition: opacity .4s;
}
.scroll-hint.hide { opacity: 0; }
@keyframes hint-bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ═══════════════ ESCENA 2 · DMs + notas de voz ═══════════════ */
.s2 { background: #fff; display: flex; flex-direction: column; }
.dm-head {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee7df;
}
.dm-back { font-size: 26px; line-height: 1; color: var(--tinta); margin-right: 2px; }
.dm-head-names { display: flex; flex-direction: column; line-height: 1.25; }
.dm-head-names strong { font-size: 14px; }
.dm-status { font-size: 11.5px; color: var(--gris); }
.dm-status.recording { color: var(--naranja); font-weight: 700; animation: pulse-txt 1s ease-in-out infinite; }
@keyframes pulse-txt { 50% { opacity: .45; } }

.dm-chat { flex: 1; padding: 18px 14px 8px; display: flex; flex-direction: column; gap: 8px; }

.bubble {
  max-width: 78%; padding: 10px 14px; border-radius: 18px;
  font-size: 14.5px; line-height: 1.45;
  animation: bubble-in .25s ease-out both;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(14px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble.me { align-self: flex-end; background: #efefef; border-bottom-right-radius: 6px; }
.bubble.them { align-self: flex-start; background: #fff; border: 1px solid #e9e2da; border-bottom-left-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,.05); }

.recording-bubble {
  align-self: flex-start; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; color: var(--gris); font-size: 13px;
  animation: bubble-in .25s ease-out both;
}
.recording-bubble .mic { animation: pulse-txt 1s ease-in-out infinite; }
.recording-bubble .dots-anim i {
  display: inline-block; width: 5px; height: 5px; margin-right: 3px;
  border-radius: 50%; background: var(--gris);
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.recording-bubble .dots-anim i:nth-child(2) { animation-delay: .15s; }
.recording-bubble .dots-anim i:nth-child(3) { animation-delay: .3s; }
@keyframes dot-bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

/* — Nota de voz — */
.vn {
  align-self: flex-start; display: flex; gap: 10px; align-items: flex-start;
  max-width: 88%; animation: bubble-in .3s ease-out both;
}
.vn-card {
  background: #fff; border: 1px solid #e9e2da; border-radius: 18px; border-bottom-left-radius: 6px;
  padding: 10px 14px; box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.vn-row { display: flex; align-items: center; gap: 10px; }
.vn-play {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  background: var(--naranja); color: #fff; font-size: 14px;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(235,83,4,.35);
  transition: transform .15s;
}
.vn-play:active { transform: scale(.92); }
.vn-play.attn { animation: play-glow 1.4s ease-in-out infinite; }
@keyframes play-glow {
  0%,100% { box-shadow: 0 4px 12px rgba(235,83,4,.35); }
  50% { box-shadow: 0 4px 22px rgba(235,83,4,.75); transform: scale(1.07); }
}
.wave { display: flex; align-items: center; gap: 2px; height: 30px; }
.wave i { width: 3px; border-radius: 2px; background: #d3ccc4; height: var(--h); transition: background .12s; }
.wave i.on { background: var(--naranja); }
.vn-meta { display: flex; align-items: center; gap: 8px; margin-top: 5px; font-size: 11.5px; color: var(--gris); }
.vn-check { color: #c9c2ba; font-weight: 800; letter-spacing: -2px; }
.vn-check.seen { color: var(--check-azul); }
.vn-fallback { margin-top: 8px; font-size: 12px; line-height: 1.5; color: var(--gris); font-style: italic; max-width: 240px; }
.vn-fallback[hidden] { display: none; }

/* — Imagen preview del vendedor — */
.dm-img {
  align-self: flex-start; width: 74%; border-radius: 18px; border-bottom-left-radius: 6px;
  overflow: hidden; border: 1px solid #e9e2da; cursor: pointer;
  animation: bubble-in .3s ease-out both;
}
.dm-img .dm-img-halves { display: grid; grid-template-columns: 1fr 1fr; height: 130px; }
.dm-img .half-b { background: linear-gradient(150deg, #b8ab9d, #8f8375); display: grid; place-items: center; font-size: 34px; filter: saturate(.6); }
.dm-img .half-a { background: #fff; display: grid; place-items: center; font-size: 34px; box-shadow: inset 0 0 24px rgba(0,0,0,.06); }
.dm-img figcaption { padding: 9px 12px; font-size: 13px; background: #fff; }

.dm-chips { display: flex; gap: 10px; padding: 10px 14px 18px; }
.chip {
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--naranja);
  color: var(--naranja); font-weight: 700; font-size: 14px;
  animation: bubble-in .3s ease-out both;
}
.chip:active { background: var(--naranja); color: #fff; }

/* ═══════════════ ESCENA 3 · Galería ═══════════════ */
.s3 { background: #000; color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 24px 0; }
.gal-title { text-align: center; font-size: 13px; color: #b5aca3; padding: 10px 0 16px; }
.gal-title span { color: #fff; font-weight: 700; }

.carousel {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; padding: 0 18px; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ph {
  height: 46vh; max-height: 380px; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  font-size: 54px; cursor: pointer; position: relative;
}
.ph small { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ph.before {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 2px, transparent 2px 5px),
    linear-gradient(155deg, #b8ab9d, #8f8375);
  color: #4d453c; border-radius: 14px 18px 12px 16px; filter: saturate(.65);
}
.ph.before small { color: #5d554b; }
.ph.after {
  background: radial-gradient(85% 70% at 50% 28%, #ffffff 0%, #f2ece4 100%);
  color: var(--tinta); box-shadow: 0 14px 34px rgba(255,255,255,.12), inset 0 0 0 1px #eee;
}
.ph.after small { color: var(--naranja); }
.ph.after::after {
  content: ""; position: absolute; bottom: 14%; width: 46%; height: 10px;
  border-radius: 50%; background: rgba(28,18,12,.14); filter: blur(4px);
}

.stat {
  text-align: center; margin-top: 18px; padding: 0 20px;
  font-family: var(--fuente-display); font-size: 21px; line-height: 1.3; color: var(--crema);
  opacity: 0; transform: translateY(12px); transition: opacity .5s ease-out .15s, transform .5s ease-out .15s;
}
.slide.is-active .stat { opacity: 1; transform: translateY(0); }
.stat strong { color: var(--naranja); font-style: italic; }

.dots { display: flex; justify-content: center; gap: 8px; padding: 20px 0 6px; }
.dots button { width: 7px; height: 7px; border-radius: 50%; background: #4a443e; padding: 0; transition: all .25s; }
.dots button.on { background: var(--naranja); width: 20px; border-radius: 4px; }

.gal-final {
  text-align: center; font-family: var(--fuente-display); font-size: 30px; line-height: 1.25;
  padding: 18px 20px 0; opacity: 0; transform: translateY(10px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.gal-final.show { opacity: 1; transform: none; }
.gal-final em { color: var(--naranja); }
.s3 .btn-primary { animation: bubble-in .4s ease-out both; }

/* ═══════════════ ESCENA 4 · Telegram demo ═══════════════ */
.s4 { background: #e7ebf0; display: flex; flex-direction: column; }
.tg-head {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--azul-tg); color: #fff;
}
.tg-head-names { display: flex; flex-direction: column; line-height: 1.25; }
.tg-head-names strong { font-size: 14.5px; }
.tg-head .online { font-size: 11.5px; color: #cfeaf7; }
.tg-timer {
  margin-left: auto; font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.18); padding: 4px 9px; border-radius: 999px;
  animation: bubble-in .3s ease-out both;
}

.tg-chat {
  flex: 1; padding: 18px 14px; display: flex; flex-direction: column; gap: 8px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,136,204,.05) 0 40%, transparent 41%),
    #e7ebf0;
}
.demo-play {
  margin: auto; display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-weight: 800; font-size: 16px; color: var(--tinta);
}
.demo-play-icon {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: var(--azul-tg); color: #fff; font-size: 26px; padding-left: 6px;
  box-shadow: 0 10px 30px rgba(0,136,204,.4); animation: play-glow-tg 1.6s ease-in-out infinite;
}
@keyframes play-glow-tg {
  0%,100% { box-shadow: 0 10px 30px rgba(0,136,204,.4); }
  50% { box-shadow: 0 10px 44px rgba(0,136,204,.75); transform: scale(1.05); }
}

.tg-bubble {
  max-width: 80%; padding: 10px 14px; border-radius: 16px; font-size: 14.5px; line-height: 1.45;
  animation: bubble-in .25s ease-out both; background: #fff; align-self: flex-start;
  border-bottom-left-radius: 5px; box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.tg-bubble.me { align-self: flex-end; background: #d9f4c7; border-bottom-left-radius: 16px; border-bottom-right-radius: 5px; }
.tg-photo {
  width: 62%; aspect-ratio: 1; border-radius: 16px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 44px;
  animation: bubble-in .3s ease-out both;
}
.tg-photo small { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.tg-photo.raw {
  align-self: flex-end;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 2px, transparent 2px 5px), linear-gradient(155deg, #b8ab9d, #8f8375);
  color: #4d453c; filter: saturate(.65); border-bottom-right-radius: 5px;
}
.tg-photo.pro {
  align-self: flex-start;
  background: radial-gradient(85% 70% at 50% 30%, #fff 0%, #f0eae2 100%);
  color: var(--tinta); border-bottom-left-radius: 5px;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}
.tg-photo.pro small { color: var(--naranja); }

.tg-progress { align-self: flex-start; width: 78%; background: #fff; border-radius: 16px; border-bottom-left-radius: 5px; padding: 12px 14px; box-shadow: 0 1px 2px rgba(0,0,0,.08); animation: bubble-in .25s ease-out both; }
.tg-progress .prog-track { margin-top: 8px; }
.tg-progress .stage-label { font-size: 13px; color: var(--gris); }

.prog-track { height: 6px; border-radius: 4px; background: #eee5db; overflow: hidden; }
.prog-bar { height: 100%; width: 0%; border-radius: 4px; background: linear-gradient(90deg, var(--naranja), #ff8c4a); transition: width .45s ease-out; }

.kinetic {
  position: absolute; inset: 0; z-index: 20; display: grid; place-items: center;
  background: rgba(28,18,12,.88); backdrop-filter: blur(6px); text-align: center; padding: 30px;
}
.kinetic p {
  font-family: var(--fuente-display); font-size: 44px; line-height: 1.1; color: var(--crema);
  animation: kinetic-in .5s cubic-bezier(.2,.9,.3,1.2) both;
}
.kinetic p.hot { color: var(--naranja); }
@keyframes kinetic-in {
  from { opacity: 0; transform: scale(.7) translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.s4-fade {
  position: absolute; inset: 0; z-index: 25; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px; text-align: center;
  background: #0b0705; padding: 30px; animation: fade-in .8s ease-out both;
}
.s4-fade p { font-family: var(--fuente-display); font-size: 36px; line-height: 1.2; color: var(--crema); }
.s4-fade em { color: var(--naranja); font-style: italic; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════ ESCENA 5 · Cámara ═══════════════ */
.s5 { background: #000; color: #fff; overflow: hidden; }
.s5-step {
  position: absolute; inset: 0; display: none; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 30px;
}
.s5-step.is-active { display: flex; animation: fade-in .5s ease-out both; }

.s5-invite h2 { font-family: var(--fuente-display); font-weight: 400; font-size: 36px; line-height: 1.2; max-width: 300px; }
.s5-invite em { color: var(--naranja); font-style: italic; }
.cam-btn {
  margin-top: 38px; width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2c1c10, #140b05);
  border: 2px solid var(--naranja); font-size: 38px; display: grid; place-items: center;
  animation: cam-pulse 1.8s ease-in-out infinite;
}
@keyframes cam-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(235,83,4,.5); }
  55% { box-shadow: 0 0 0 22px rgba(235,83,4,0); }
}
.cam-cta-label { margin-top: 14px; font-weight: 700; font-size: 15px; }

.s5-camera { padding: 0; justify-content: flex-end; }
#camFeed { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thirds { position: absolute; inset: 0; pointer-events: none; }
.thirds i { position: absolute; background: rgba(255,255,255,.28); }
.thirds i:nth-child(1) { left: 33.3%; top: 0; bottom: 0; width: 1px; }
.thirds i:nth-child(2) { left: 66.6%; top: 0; bottom: 0; width: 1px; }
.thirds i:nth-child(3) { top: 33.3%; left: 0; right: 0; height: 1px; }
.thirds i:nth-child(4) { top: 66.6%; left: 0; right: 0; height: 1px; }
.cam-hint {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  font-size: 13px; font-weight: 700; background: rgba(0,0,0,.45); backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 999px; white-space: nowrap;
}
.shutter {
  position: relative; z-index: 2; margin-bottom: 34px;
  width: 74px; height: 74px; border-radius: 50%;
  background: #fff; border: 5px solid rgba(255,255,255,.35); background-clip: content-box;
  transition: transform .12s;
}
.shutter:active { transform: scale(.9); }

.flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; z-index: 30; }
.flash.go { animation: flash-anim .25s ease-out; }
@keyframes flash-anim { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }

.mini-tg { width: min(300px, 84%); background: #fff; color: var(--tinta); border-radius: 18px; padding: 14px; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.mini-tg-head { display: flex; gap: 8px; align-items: center; font-weight: 800; font-size: 14px; margin-bottom: 10px; }
.mini-thumb { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; margin-bottom: 12px; animation: send-up .5s ease-out both; }
@keyframes send-up { from { transform: translateY(26px) scale(.85); opacity: 0; } to { transform: none; opacity: 1; } }
.prog-label { margin-top: 8px; font-size: 13px; color: var(--gris); }

.result-frame {
  position: relative; width: min(320px, 86%); border-radius: 18px; overflow: hidden;
  background: #fff; padding: 14px; box-shadow: 0 24px 60px rgba(255,255,255,.14);
  animation: bubble-in .5s ease-out both;
}
#resultImg {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px;
  filter: brightness(1.3) contrast(1.15) saturate(1.1);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.result-badge {
  position: absolute; top: 22px; right: 22px; background: var(--naranja); color: #fff;
  font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 999px;
}
.sim-note { margin-top: 16px; font-size: 12.5px; color: #b5aca3; max-width: 290px; }

.impact-1, .impact-2 { font-family: var(--fuente-display); font-size: 33px; line-height: 1.25; max-width: 320px; }
.impact-2 { margin-top: 18px; }
.impact-2 strong { color: var(--naranja); }
.s5-impact .btn-primary { width: auto; padding: 15px 40px; margin-top: 34px; }

/* ═══════════════ ESCENA 6 · Oferta + CTA ═══════════════ */
.s6 {
  background: var(--crema); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 40px 22px;
}
.your-pair { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-size: 22px; color: var(--naranja); font-weight: 800; }
.your-pair img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 20px rgba(28,18,12,.18); }
.your-pair img:last-child { filter: brightness(1.3) contrast(1.15) saturate(1.1); }

.logo { line-height: 1; }
.logo img { width: 230px; margin: 0 auto; }
.tagline { margin-top: 8px; font-size: 14px; color: var(--gris); font-weight: 600; }

.anchor { margin-top: 34px; width: 100%; max-width: 330px; }
.anchor > * { opacity: 0; transform: translateY(10px); transition: opacity .5s ease-out, transform .5s ease-out; }
.anchor.in > * { opacity: 1; transform: none; }
.anchor.in .anchor-old { transition-delay: .1s; }
.anchor.in .anchor-new { transition-delay: .9s; }
.anchor.in .anchor-sub { transition-delay: 1.5s; }
.anchor-old { font-size: 15px; color: var(--gris); display: flex; flex-direction: column; align-items: center; gap: 2px; }
.price-old { position: relative; font-size: 22px; font-weight: 700; color: var(--tinta); display: inline-block; }
.price-old::after {
  content: ""; position: absolute; left: 8%; right: 8%; top: 52%; height: 3px;
  background: #d21f1f; border-radius: 2px; transform: rotate(-6deg) scaleX(0); transform-origin: left center;
  transition: transform .45s ease-out .55s;
}
.anchor.in .price-old::after { transform: rotate(-6deg) scaleX(1); }
.anchor-new { margin-top: 18px; font-size: 15px; color: var(--tinta); font-weight: 700; display: flex; flex-direction: column; gap: 2px; }
.price-new { font-size: 40px; font-weight: 800; color: var(--naranja); letter-spacing: -1px; }
.anchor.in .price-new { animation: scale-in .5s cubic-bezier(.2,.9,.3,1.3) .95s both; }
@keyframes scale-in { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.anchor-sub { margin-top: 10px; font-size: 13.5px; color: var(--gris); }

.trial {
  margin-top: 28px; width: 100%; max-width: 330px;
  background: #fff; border: 1.5px solid #f0ddc9; border-radius: 18px; padding: 18px;
  font-size: 14px; line-height: 1.5;
}
.trial-head { font-size: 16px; margin-bottom: 6px; }
.trial-note { margin-top: 8px; font-size: 12.5px; color: var(--gris); }
.trial-note strong { color: var(--naranja); }

.switch-zone { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pix-switch {
  width: 150px; height: 58px; border-radius: 999px; background: #d8cec3;
  position: relative; transition: background .35s; touch-action: none;
}
.pix-switch .knob {
  position: absolute; top: 5px; left: 5px; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; display: grid; place-items: center; font-size: 21px;
  filter: grayscale(1) opacity(.6);
  box-shadow: 0 3px 8px rgba(0,0,0,.22);
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2), filter .35s;
}
.pix-switch.on { background: var(--naranja); box-shadow: 0 0 34px rgba(235,83,4,.45); }
.pix-switch.on .knob { transform: translateX(92px); filter: none; }
.switch-label { font-size: 14px; font-weight: 700; color: var(--gris); }
.switch-label.on { color: var(--naranja); }

.btn-primary.big { width: 100%; max-width: 330px; margin: 22px 0 0; font-size: 17px; padding: 17px; animation: scale-in .45s cubic-bezier(.2,.9,.3,1.3) both; }

.plans { margin-top: 30px; font-size: 12.5px; color: var(--gris); font-weight: 600; }
.plans span { color: var(--naranja); }
.legal { margin-top: 6px; font-size: 11.5px; color: #b3a99e; }

/* ── Zoom overlay ── */
.zoom-overlay {
  position: absolute; inset: 0; z-index: 60; background: rgba(0,0,0,.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  animation: fade-in .25s ease-out both; cursor: pointer;
}
.zoom-content { width: 88%; }
.zoom-content .ph, .zoom-content .tg-photo { width: 100%; height: auto; aspect-ratio: 1; max-height: none; font-size: 90px; cursor: default; }
.zoom-content img { width: 100%; border-radius: 16px; }
.zoom-close { color: #999; font-size: 13px; }

/* ── Accesibilidad: reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .scroller { scroll-behavior: auto; }
}
