/* === Slider automático Promoción — agregado 2026-06-22 === */
#inicio-promocion .father-day-banner,
#dia-padre-banner-page .father-day-banner{
  position:relative!important;
  overflow:hidden!important;
  border-radius:34px!important;
  background:#eaf2ff!important;
}
.father-day-slider{
  position:relative;
  width:100%;
  aspect-ratio:1942/809;
  overflow:hidden;
  border-radius:inherit;
  background:#eaf2ff;
}
.father-day-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.012);
  transition:opacity .75s ease, transform 1.2s ease;
  pointer-events:none;
}
.father-day-slide.is-active{
  opacity:1;
  transform:scale(1);
  z-index:2;
  pointer-events:auto;
}
.father-day-slide img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}
.father-slider-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  z-index:5;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  box-shadow:0 8px 20px rgba(16,42,99,.12);
  backdrop-filter:blur(8px);
}
.father-slider-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:#b9cff2;
  box-shadow:inset 0 0 0 1px rgba(32,72,160,.18);
  transition:width .25s ease, background .25s ease;
}
.father-slider-dot.is-active{
  width:25px;
  background:#2048A0;
}
@media(max-width:760px){
  #inicio-promocion .father-day-banner,
  #dia-padre-banner-page .father-day-banner{border-radius:20px!important;}
  .father-slider-dots{bottom:9px;padding:5px 8px;gap:6px;}
  .father-slider-dot{width:7px;height:7px;}
  .father-slider-dot.is-active{width:18px;}
}
