@charset "UTF-8";
/* CSS Document */

	   /* ===== POPUP 2026 ===== */
.pdf-popup {
  position: fixed;
  bottom: 30px;
  right: 28px;
  width: 340px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(245,248,255,0.96)
  );
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 22px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);
  font-family: 'Poppins', Arial, sans-serif;
  z-index: 99999;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: popupEnter 0.7s cubic-bezier(.22,.61,.36,1) forwards;
}

/* Entrada */
@keyframes popupEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.pdf-popup h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1b1f2a;
}

.pdf-popup p {
  font-size: 14px;
  line-height: 1.5;
  color: #4a4f5e;
  margin-bottom: 14px;
}

/* Imagen */
.popup-image {
  position: relative;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
}

.popup-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0)
  );
}

.popup-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.pdf-popup:hover .popup-image img {
  transform: scale(1.05);
}

/* CTA */
.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1677ff, #0f5fe0);
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 25px rgba(22,119,255,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22,119,255,0.6);
}

/* Meta info */
.popup-meta {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}

/* Cerrar */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #555;
  transition: background 0.25s ease;
}

.popup-close:hover {
  background: rgba(0,0,0,0.12);
}
	   