/* Carrusel / grilla Tools — Actualización Web */
.pf-promo-tools {
  max-width: 1120px;
  margin: 28px auto 48px;
  padding: 0 16px;
}
.pf-promo-heading {
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 28px 0 18px;
  color: #0E667E;
  font-weight: 700;
}
.pf-web-media[data-layout="grid"] {
  background: transparent;
  overflow: visible;
}
.pf-web-media[data-layout="grid"] .pf-wm-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.pf-web-media[data-layout="grid"] .pf-wm-slide {
  display: block;
}
.pf-web-media[data-layout="grid"] img {
  max-height: none;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
.pf-web-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eef4f6;
  border-radius: 0;
}
.pf-web-media .pf-wm-slide {
  display: none;
  width: 100%;
}
.pf-web-media .pf-wm-slide.is-active {
  display: block;
}
.pf-web-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  object-fit: cover;
}
.pf-wm-prev,
.pf-wm-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(14, 102, 126, 0.85);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.pf-wm-prev { left: 10px; }
.pf-wm-next { right: 10px; }
.pf-wm-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.pf-wm-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}
.pf-wm-dots button.is-active {
  background: #0e667e;
  width: 18px;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .pf-web-media img { max-height: 42vh; }
  .pf-wm-prev, .pf-wm-next { width: 34px; height: 34px; }
}
