/* =========================================================
   📄 Comprobantes — Fondo azul moderno + glass
========================================================= */
.redir-section {
  min-height: 100vh;
  padding: clamp(10px, 3vh, 40px) 20px 40px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(1000px 600px at 15% -10%, rgba(6,182,212,0.16), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(31,45,84,0.22), transparent 60%),
    linear-gradient(180deg, #0b1430 0%, #14234f 100%);
  position: relative;
  overflow: hidden;
}

.redir-section::before,
.redir-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
  transition: transform .6s ease;
}
.redir-section::before { background: #06B6D4; top: -140px; left: -160px; }
.redir-section::after { background: #3b5eff; bottom: -160px; right: -180px; }
.redir-section:hover::before { transform: translate3d(0,6px,0); }
.redir-section:hover::after { transform: translate3d(0,-6px,0); }

.redir-grid {
  display: grid;
  grid-template-columns: auto minmax(380px, 520px);
  align-items: center;
  column-gap: clamp(10px, 2vw, 20px);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .redir-grid { grid-template-columns: 1fr; row-gap: 24px; text-align: center; }
}

.redir-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.redir-mascota {
  width: clamp(200px, 34vw, 320px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
  animation: floaty 4.8s ease-in-out infinite;
}
@keyframes floaty { 
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.redir-card {
  background: #162145;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: clamp(22px, 3.2vw, 36px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  text-align: center;
  position: relative;
}
.redir-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 35%);
  pointer-events: none;
}

#redir-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  text-transform: none;
}
#redir-title strong { font-weight: inherit; }

.redir-card .lead {
  color: var(--text-subtle, rgba(255,255,255,0.85));
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 20px;
}

.redir-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.btn-primary {
  display: block;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #FCA503, #D27F03);
  color: #141e3d;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 22px rgba(252,165,3,.35), inset 0 2px 0 rgba(255,255,255,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(252,165,3,.42);
}

.mini {
  font-size: .9rem;
  color: #a8b7e6;
  margin-top: 10px;
}
.mini .count { font-weight: 800; color: #fff; }
.mini-cancel {
  margin-left: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  transition: background .15s ease;
}
.mini-cancel:hover { background: rgba(255,255,255,.08); }

@media (max-width: 768px) {
  .redir-card { padding: 24px; }
  .redir-mascota { width: clamp(150px, 58vw, 250px); }
  .redir-actions .btn { width: 100%; }
  
  .redir-section {
    align-items: flex-start;
    padding-top: clamp(40px, 1vh, 10px) !important;
    min-height: auto;
  }
  .redir-left { gap: 6px; }
  #redir-title { margin-top: 4px; }
}
