.qr-sub-footer {
  display: flex;
  justify-content: flex-end; /* Alinea el QR al final del contenedor (derecha) */
}

.qr-sub-footer img {
  max-width: 220px;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* En móviles, es mejor que todo regrese al centro para que no se vea cortado */
@media (max-width: 768px) {
  .row.justify-content-end {
    justify-content: center !important;
  }
  .text-right {
    text-align: center !important;
  }
  .qr-sub-footer {
    justify-content: center;
  }
}
