/* ==========================================================
   FONDO DEL MODAL
========================================================== */
.modal-libros {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
}

/* ==========================================================
   CONTENIDO DEL MODAL
========================================================== */
.modal-libros-content {
  background: #ffffff;
  width: 360px;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  animation: fadeInModal 0.28s ease-out;
  position: relative; /* NECESARIO para que la X no desaparezca */
}

/* Animación */
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.90); }
  to   { opacity: 1; transform: scale(1); }
}

/* ==========================================================
   BOTÓN “X” CERRAR
========================================================== */
.modal-libros-close {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 26px;
  cursor: pointer;
  font-weight: 700;
  color: #333;
  padding: 4px 10px;

  /* Para evitar que desaparezca sobre fondos claros */
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.modal-libros-close:hover {
  color: #00c2c2;
  background: rgba(0,194,194,0.12);
}

/* ==========================================================
   TÍTULO
========================================================== */
.modal-libros-content h2 {
  margin: 0 0 15px 0;
  font-weight: 700;
  font-size: 22px;
  color: #00c2c2;
}

/* ==========================================================
   SELECTOR DE MÉTODO
========================================================== */
#pagoLibroMetodo {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0d0d0;
  background: #fafafa;
  font-size: 16px;
  margin-top: 10px;
  outline: none;
  transition: 0.25s ease;
}

#pagoLibroMetodo:focus {
  border-color: #00c2c2;
  box-shadow: 0 0 0 2px rgba(0,194,194,0.22);
}

/* ==========================================================
   TEXTO PARA QR
========================================================== */
#pagoLibroTexto {
  display: none;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
}

/* ==========================================================
   VISTA DEL QR
========================================================== */
#pagoLibroQR img {
  width: 240px;               /* Tamaño recomendado */
  max-width: 85%;
  border-radius: 14px;
  margin-top: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* ==========================================================
   BOTÓN WHATSAPP
========================================================== */
#pagoLibroWhatsApp {
  width: 100%;
  background: #25d366;
  color: white;
  padding: 14px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 22px;
  transition: 0.25s ease;
}

#pagoLibroWhatsApp:hover {
  background: #1cb858;
}

#pagoLibroWhatsApp:disabled {
  background: #9edfb9;
  cursor: not-allowed;
  opacity: 0.7;
}
