/* ── LPB Hover Effects — vanilla CSS ── */

.lpb-he-overlay {
  position: absolute;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Caption — barra inferior */
.lpb-he-caption {
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(4px);
  transform: translateY(100%);
  opacity: 0;
}

/* Full overlay */
.lpb-he-full {
  inset: 0;
  background: rgba(15,23,42,.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Panel lateral */
.lpb-he-panel {
  top: 0; left: 0; bottom: 0;
  width: 55%;
  background: rgba(124,58,237,.92);
  backdrop-filter: blur(4px);
  transform: translateX(-100%);
  opacity: 0;
}

/* Slide desde arriba */
.lpb-he-slide {
  inset: 0;
  background: rgba(15,23,42,.75);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

/* Flip back */
.lpb-he-flip-back {
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

/* Shine */
.lpb-he-shine {
  position: absolute;
  top: 0; bottom: 0;
  left: -30%;
  width: 30%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-15deg);
  opacity: 0;
  transition: left 0.5s ease, opacity 0.3s ease;
  pointer-events: none;
}

/* Texto del overlay */
.lpb-he-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
  line-height: 1.4;
}
