/* ============================================================
   CLÍNICA REYES DENTAL — Showcase de sala de espera
   Paleta tomada del sistema :3005  ·  diseño original
   ============================================================ */
:root {
  --magenta: #c9006b;
  --magenta-soft: #c96b82;
  --gold: #bf9036;
  --gold-soft: #e7c977;
  --pink-bg: #fdf2f8;
  --pink-border: #f9d0e3;
  --ink: #1e293b;
  --slate: #475569;
  --mute: #94a3b8;
  --white: #ffffff;
  --slide-secs: 11s;
}

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

html, body { height: 100%; min-height: 100dvh; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--ink);
  overflow: hidden;            /* es un display, no scroll */
  -webkit-font-smoothing: antialiased;
}

/* ===== Capa de fondo animado (aurora) ===== */
.aurora {
  position: fixed; inset: 0; z-index: 0;
  background: var(--pink-bg);
  overflow: hidden;
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .55; will-change: transform;
}
.aurora::before {
  width: 60vw; height: 60vw; left: -10vw; top: -15vw;
  background: radial-gradient(circle at center, var(--magenta), transparent 70%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora::after {
  width: 55vw; height: 55vw; right: -12vw; bottom: -18vw;
  background: radial-gradient(circle at center, var(--gold), transparent 70%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.aurora .blob {
  position: absolute; width: 40vw; height: 40vw; border-radius: 50%;
  filter: blur(80px); opacity: .35;
  background: radial-gradient(circle, var(--magenta-soft), transparent 70%);
  left: 30vw; top: 30vh;
  animation: drift3 22s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(18vw, 12vh) scale(1.2); } }
@keyframes drift2 { to { transform: translate(-16vw, -10vh) scale(1.15); } }
@keyframes drift3 { to { transform: translate(-20vw, 14vh) scale(1.3); } }

/* partículas (canvas) */
#fx { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* ===== Marco / HUD permanente ===== */
.hud {
  position: fixed; inset: 0; z-index: 5; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(18px, 3vw, 42px);
}
.hud-top, .hud-bottom { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: .02em; }
.logo .dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  display: grid; place-items: center; color: #fff; font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(201,0,107,.35);
}
.logo b { color: var(--magenta); }
.logo span.r { color: var(--ink); font-weight: 600; }
.clock { font-variant-numeric: tabular-nums; color: var(--slate); font-weight: 500; letter-spacing: .04em; }
.hud-bottom { font-size: .85rem; color: var(--mute); }
.hud-bottom .ig { color: var(--magenta); font-weight: 600; }

/* barra de progreso superior */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; z-index: 6;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  width: 0; box-shadow: 0 0 12px rgba(201,0,107,.5);
}

/* dots de navegación */
.dots {
  position: fixed; bottom: clamp(18px,3vw,42px); left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; gap: 10px; pointer-events: auto;
}
.dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--pink-border); transition: all .3s ease; padding: 0;
}
.dots button.on { background: var(--magenta); width: 30px; border-radius: 6px; }

/* ===== Deck de slides ===== */
.deck { position: relative; z-index: 4; height: 100vh; height: 100dvh; width: 100%; }
.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(40px, 6vw, 90px);
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity 1.1s ease, transform 1.1s ease, visibility 1.1s;
}
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }

/* animaciones de entrada (sólo cuando .active) */
.reveal { opacity: 0; transform: translateY(34px); }
.slide.active .reveal {
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.slide.active .reveal:nth-child(1) { animation-delay: .15s; }
.slide.active .reveal:nth-child(2) { animation-delay: .30s; }
.slide.active .reveal:nth-child(3) { animation-delay: .45s; }
.slide.active .reveal:nth-child(4) { animation-delay: .60s; }
.slide.active .reveal:nth-child(5) { animation-delay: .75s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.eyebrow {
  text-transform: uppercase; letter-spacing: .32em; font-size: clamp(.7rem,1.1vw,.9rem);
  font-weight: 600; color: var(--gold); margin-bottom: 1.1rem;
}
h1.brand-title {
  font-size: clamp(3rem, 11vw, 9rem); line-height: .92; font-weight: 700;
  letter-spacing: -.02em;
}
h1.brand-title .reyes {
  background: linear-gradient(120deg, var(--magenta), var(--magenta-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h1.brand-title .dental {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tagline { font-size: clamp(1.1rem, 2.4vw, 2rem); color: var(--slate); font-weight: 400; margin-top: 1.4rem; }
h2.head { font-size: clamp(2rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
h2.head em { font-style: normal; color: var(--magenta); }
.sub { font-size: clamp(1rem, 1.8vw, 1.4rem); color: var(--slate); max-width: 38ch; margin: 1.2rem auto 0; line-height: 1.6; }

/* tipografía cinética por palabras */
.kinetic span { display: inline-block; opacity: 0; transform: translateY(40px) rotate(4deg); }
.slide.active .kinetic span { animation: word .7s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes word { to { opacity: 1; transform: none; } }

/* sparkle decorativo */
.spark { font-size: 2rem; display: inline-block; animation: twinkle 2.4s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{opacity:.4; transform:scale(.9) rotate(0)} 50%{opacity:1; transform:scale(1.2) rotate(15deg)} }

/* ===== Slide bienvenida (retrato) ===== */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,6rem); align-items: center; width: 100%; max-width: 1200px; text-align: left; }
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden;
  background: linear-gradient(160deg, var(--magenta-soft), var(--gold-soft));
  box-shadow: 0 30px 70px rgba(201,0,107,.28);
  display: grid; place-items: center;
}
.portrait::after { /* aro brillante */
  content: ""; position: absolute; inset: 0; border-radius: 28px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.portrait .ken {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: ken 18s ease-in-out infinite alternate;
}
.portrait .ph { font-size: 7rem; opacity: .85; }
.portrait .ph small { display:block; font-size:.9rem; font-weight:600; color:#fff; opacity:.9; margin-top:.5rem; letter-spacing:.05em; }
@keyframes ken { from { transform: scale(1) translate(0,0);} to { transform: scale(1.12) translate(-2%, -2%);} }
.two h2 { font-size: clamp(1.8rem,4vw,3.4rem); }
.signature { margin-top: 1.6rem; font-weight: 600; color: var(--magenta); font-size: 1.2rem; }
.signature small { display:block; color: var(--mute); font-weight:500; font-size:.85rem; letter-spacing:.04em; }

/* ===== Marquee de servicios ===== */
.marquee { width: 100vw; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.track { display: flex; gap: 1.1rem; width: max-content; padding: .6rem 0; }
.track.rev { animation: scrollL 38s linear infinite; }
.track.fwd { animation: scrollR 34s linear infinite; }
@keyframes scrollL { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollR { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.pill {
  flex: 0 0 auto; display: flex; align-items: center; gap: .7rem;
  padding: 1rem 1.6rem; border-radius: 999px; font-size: clamp(1rem,1.6vw,1.4rem); font-weight: 600;
  background: #fff; border: 1.5px solid var(--pink-border); color: var(--ink);
  box-shadow: 0 8px 24px rgba(201,0,107,.07);
}
.pill .ic { font-size: 1.3rem; }
.pill.gold { border-color: var(--gold-soft); }
.pill.solid { background: linear-gradient(120deg, var(--magenta), var(--magenta-soft)); color: #fff; border: none; }

/* ===== Stats / por qué ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,3vw,2.5rem); width: 100%; max-width: 1100px; margin-top: 2.5rem; }
.stat { text-align: center; }
.stat .num { font-size: clamp(2.4rem,6vw,4.5rem); font-weight: 700; line-height: 1;
  background: linear-gradient(120deg, var(--magenta), var(--gold)); -webkit-background-clip: text; background-clip:text; color: transparent; }
.stat .lab { color: var(--slate); margin-top: .5rem; font-weight: 500; font-size: clamp(.85rem,1.3vw,1.05rem); }
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; max-width: 1000px; margin-top: 2rem; }
.feature { background: rgba(255,255,255,.7); backdrop-filter: blur(8px); border: 1px solid var(--pink-border);
  border-radius: 20px; padding: 1.8rem; text-align: left; }
.feature .ic { font-size: 2rem; display:block; margin-bottom:.6rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.feature p { color: var(--slate); font-size: .98rem; line-height: 1.5; }

/* ===== Galería Ken Burns ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 1.2rem; width: 100%; max-width: 1150px; height: 60vh; height: 60dvh; }
.gtile { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 20px 50px rgba(30,41,59,.15);
  background: linear-gradient(160deg, var(--pink-border), var(--gold-soft)); display:grid; place-items:center; color:#fff; }
.gtile:nth-child(1) { grid-row: span 2; }
.gtile .ken { position:absolute; inset:0; background-size:cover; background-position:center; animation: ken 20s ease-in-out infinite alternate; }
.gtile .tag { position: relative; z-index:2; font-weight:600; opacity:.9; font-size:.95rem; padding:.4rem .9rem; background:rgba(0,0,0,.18); border-radius:999px; }

/* ===== Cierre ===== */
.cta-card {
  background: rgba(255,255,255,.75); backdrop-filter: blur(10px);
  border: 1px solid var(--pink-border); border-radius: 28px;
  padding: clamp(2rem,5vw,4rem); box-shadow: 0 30px 80px rgba(201,0,107,.18);
  max-width: 760px;
}
.social-row { display: flex; gap: 1.4rem; justify-content: center; margin-top: 1.8rem; flex-wrap: wrap; }
.chip { display: flex; align-items: center; gap: .55rem; padding: .8rem 1.4rem; border-radius: 999px;
  background: var(--pink-bg); color: var(--magenta); font-weight: 600; border: 1px solid var(--pink-border); }
.chip .ic { font-size: 1.2rem; }
.place { margin-top: 1.6rem; color: var(--slate); font-size: 1.05rem; }
.heartbeat { display:inline-block; animation: beat 1.4s ease-in-out infinite; }
@keyframes beat { 0%,100%{transform:scale(1)} 25%{transform:scale(1.25)} 40%{transform:scale(1)} }

/* ===== Responsivo (por si se ve en tablet/cel) ===== */
@media (max-width: 820px) {
  .two { grid-template-columns: 1fr; text-align: center; }
  .portrait { max-width: 320px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .features, .gallery { grid-template-columns: 1fr; }
  .gallery { height: auto; }
  .gtile { min-height: 180px; }
  .gtile:nth-child(1){ grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   Componentes añadidos: video, antes/después, reseñas,
   formulario de comentarios, QR, modo híbrido
   ============================================================ */

/* video de fondo del hero */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.ready { opacity: .9; }
.hero-veil { position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at center, rgba(253,242,248,.35), rgba(253,242,248,.8)); }
.hero-content { position: relative; z-index: 2; }

/* indicador de pausa — "isla dinámica" (arriba, discreta, se quita rápido) */
.paused-tag {
  position: fixed; top: 10px; left: 50%; transform: translate(-50%,-18px);
  z-index: 30; background: rgba(15,23,42,.9); color: #fff; padding: .4rem 1rem;
  border-radius: 999px; font-size: .78rem; font-weight: 500; pointer-events: none;
  white-space: nowrap; box-shadow: 0 8px 22px rgba(0,0,0,.28); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .35s ease, transform .35s ease;
}
.paused-tag.show { opacity: 1; transform: translate(-50%,0); }

/* ===== Antes / Después ===== */
.ba {
  position: relative; width: min(720px, 86vw); aspect-ratio: 16/10;
  border-radius: 24px; overflow: hidden; cursor: ew-resize; user-select: none;
  box-shadow: 0 30px 70px rgba(30,41,59,.22); touch-action: none;
}
.ba-img { position: absolute; inset: 0; background-size: cover; background-position: center; display: grid; }
.ba-after  { background: linear-gradient(135deg, var(--magenta), var(--magenta-soft)); }
.ba-before { background: linear-gradient(135deg, #64748b, #94a3b8); clip-path: inset(0 50% 0 0); }
.ba-lbl { position: absolute; bottom: 14px; padding: .35rem .9rem; border-radius: 999px;
  background: rgba(0,0,0,.35); color: #fff; font-weight: 600; font-size: .85rem; letter-spacing: .05em; }
.ba-lbl.l { left: 14px; } .ba-lbl.r { right: 14px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; transform: translateX(-50%);
  background: #fff; z-index: 4; box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--magenta);
  display: grid; place-items: center; font-size: 1.2rem; box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* ===== Reseñas rotando ===== */
.review-stage { position: relative; width: min(760px, 88vw); min-height: 230px; }
.review {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--pink-border); border-radius: 24px; padding: 2.4rem;
}
.review.on { opacity: 1; transform: translateY(0); }
.review .rstars { color: var(--gold); font-size: 1.5rem; letter-spacing: .15em; margin-bottom: 1rem; }
.review p { font-size: clamp(1.1rem, 2.2vw, 1.7rem); color: var(--ink); line-height: 1.5; max-width: 40ch; }
.review footer { margin-top: 1.2rem; color: var(--magenta); font-weight: 600; }

/* ===== Comparte / comenta + QR ===== */
.share-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem,4vw,3.5rem);
  width: 100%; max-width: 1100px; align-items: center; }
.comment-box { background: rgba(255,255,255,.8); backdrop-filter: blur(10px);
  border: 1px solid var(--pink-border); border-radius: 26px; padding: clamp(1.5rem,3vw,2.5rem);
  box-shadow: 0 24px 60px rgba(201,0,107,.14); text-align: left; }
#commentForm input, #commentForm textarea {
  width: 100%; border: 1px solid var(--pink-border); border-radius: 12px; padding: .8rem 1rem;
  font: inherit; background: #fff; margin-bottom: .7rem; color: var(--ink); }
#commentForm input:focus, #commentForm textarea:focus { outline: 2px solid var(--magenta); }
#commentForm .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.stars-pick { font-size: 1.8rem; color: var(--pink-border); margin-bottom: .8rem; cursor: pointer; width: max-content; }
.stars-pick span { transition: color .15s ease; }
.stars-pick span.on { color: var(--gold); }
.btn-send { width: 100%; background: linear-gradient(120deg, var(--magenta), var(--magenta-soft));
  color: #fff; border: none; padding: .9rem; border-radius: 999px; font-weight: 600; font-size: 1.05rem;
  cursor: pointer; transition: filter .15s ease, transform .15s ease; }
.btn-send:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-send:disabled { opacity: .6; cursor: default; }
.form-msg { margin-top: .7rem; font-size: .92rem; min-height: 1.2em; text-align: center; }
.form-msg.ok { color: #166534; } .form-msg.err { color: #b91c1c; }

.qr-box { text-align: center; }
.qr-box h3 { font-size: 1.3rem; margin-bottom: 1.1rem; color: var(--ink); }
.qr-row { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; }
.qr-item { background: #fff; border: 1px solid var(--pink-border); border-radius: 20px; padding: 1rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; box-shadow: 0 10px 28px rgba(201,0,107,.1); }
.qr-item img { width: 120px; height: 120px; }
.qr-item span { font-size: .82rem; color: var(--slate); line-height: 1.3; }
.qr-item b { color: var(--magenta); }
.qr-box .place { margin-top: 1.4rem; color: var(--slate); font-size: .98rem; }

/* responsivo de los nuevos bloques */
@media (max-width: 820px) {
  .share-grid { grid-template-columns: 1fr; }
  #commentForm .row2 { grid-template-columns: 1fr; }
  .ba { width: 92vw; }
}

/* ===== Casos reales (antes/después rotando) ===== */
.cases { position: relative; height: 56dvh; aspect-ratio: 3/4; max-width: 86vw;
  border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(30,41,59,.25);
  background: #0b1220; }
.case-img { position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; }
.case-img.on { opacity: 1; animation: ken 14s ease-in-out infinite alternate; }
.case-badge { position: absolute; top: 14px; left: 14px; z-index: 3; background: var(--magenta);
  color: #fff; font-weight: 600; font-size: .8rem; padding: .35rem .9rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(201,0,107,.4); }

/* ===== Slide "En acción" (videos verticales en marco) ===== */
.vid-wall { display: flex; gap: clamp(1rem,3vw,2.2rem); justify-content: center; align-items: center; }
.vframe { width: clamp(180px, 22vw, 300px); aspect-ratio: 9/16; border-radius: 26px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(201,0,107,.25); border: 4px solid #fff; background: #0b1220; }
.vframe video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* galería: cross-fade al cambiar */
.gtile .ken { transition: opacity .6s ease; }

/* QR como enlaces (clickeables) */
a.qr-item { text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
a.qr-item:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(201,0,107,.2); }
.qr-item img { width: 108px; height: 108px; }

/* CTA de reseña destacado */
.qr-review-cta { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; text-decoration: none;
  background: linear-gradient(120deg, var(--magenta), var(--magenta-soft)); color: #fff;
  border-radius: 18px; padding: .9rem 1.1rem; box-shadow: 0 14px 34px rgba(201,0,107,.3);
  transition: transform .15s ease; }
.qr-review-cta:hover { transform: translateY(-3px); }
.qr-review-cta img { width: 70px; height: 70px; background: #fff; border-radius: 10px; padding: 4px; }
.qr-review-cta span { font-size: .95rem; line-height: 1.35; text-align: left; }
.qr-review-cta b { font-size: 1.1rem; }

@media (max-width: 820px) {
  .vid-wall { gap: 1rem; }
  .vframe { width: 42vw; }
  .qr-row { gap: .8rem; }
  .qr-item img { width: 88px; height: 88px; }
}

/* ============================================================
   Corrección para CELULAR (vertical): evitar encimados y cortes
   ============================================================ */
@media (max-width: 820px) {
  /* cada slide se puede desplazar y despeja el encabezado/los puntos */
  .slide {
    justify-content: flex-start;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 88px 20px 100px;
  }
  /* HUD más compacto y sin la línea inferior (se encimaba con el contenido) */
  .hud { padding: 12px 16px; }
  .hud .logo { font-size: 1rem; }
  .hud .logo .dot { width: 30px; height: 30px; font-size: .95rem; }
  .clock { font-size: .85rem; }
  .hud-bottom { display: none; }

  /* tipografía más compacta */
  h1.brand-title { font-size: clamp(2.6rem, 15vw, 4rem); }
  h2.head { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .stat .num { font-size: clamp(2rem, 11vw, 3rem); }
  .sub { font-size: 1rem; }
  .eyebrow { margin-bottom: .7rem; }

  /* stats y features compactos */
  .stats { gap: 1rem 1.1rem; margin-top: 1.3rem; }
  .features { gap: .8rem; margin-top: 1.3rem; }
  .feature { padding: 1.1rem 1.2rem; }
  .feature p { font-size: .92rem; }

  /* galería 2 columnas con alturas razonables */
  .gallery { grid-template-columns: 1fr 1fr; gap: .7rem; height: auto; }
  .gtile { min-height: 32vw; }
  .gtile:nth-child(1) { grid-column: span 2; grid-row: auto; min-height: 48vw; }

  /* casos, retrato y videos acotados a la pantalla */
  .cases { height: auto; width: 78vw; max-height: 56dvh; }
  .portrait { max-width: 58vw; }
  .vframe { width: 40vw; }

  /* puntos de navegación un poco más arriba */
  .dots { bottom: 14px; }

  /* comentarios y QR */
  .comment-box { padding: 1.2rem; }
  .qr-review-cta img { width: 60px; height: 60px; }
}
