/* ==========================================================================
   BYKAMEN — Carrusel de reseñas (.bk-rev). Reutiliza el estilo .quote del diseño.
   ========================================================================== */
.bk-rev{ position:relative; overflow:hidden; }
.bk-rev-track{ display:flex; align-items:center; transition:transform .55s cubic-bezier(.22,.8,.28,1); }
.bk-rev-slide{ flex:0 0 100%; box-sizing:border-box; padding:0 clamp(.5rem,4vw,3rem); }
.bk-rev-slide .quote{ text-align:center; max-width:900px; margin-inline:auto; }
.bk-rev-dots{ display:flex; gap:.6rem; justify-content:center; margin-top:clamp(1.4rem,3vw,2.4rem); }
.bk-rev-dots button{
  width:9px; height:9px; border-radius:50%; border:0; padding:0; cursor:pointer;
  background:rgba(255,255,255,.25); transition:background .2s ease, transform .2s ease;
}
.bk-rev-dots button:hover{ background:rgba(255,255,255,.5); }
.bk-rev-dots button.is-active{ background:#E58500; transform:scale(1.3); }
