:root {
  --boleto-bg: url("../assets/images/Boleto.png");
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

.card-usu {
  min-height: 100vh;
  display: flex;              
  justify-content: center;
  align-items: center;
}

.medium {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ticket {
  position: relative;
  background: center / cover no-repeat var(--boleto-bg);
  width: min(92vw, 500px);
  aspect-ratio: 672 / 929;
  margin: auto;
}

.name {
  position: absolute;
  left: 50%;
  top: 10%;             
  width: 86%;
  height: 7.2%;           
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  color: #000;
  font-family: "Bebas Neue", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  font-size: clamp(20px, 7vw, 50px);
  -webkit-text-stroke: 1px rgba(0,0,0,.4);
  text-shadow: 0 1px 2px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.25);
}

.qr{
  position: absolute;
  left: 50%;
  top: 19.8%;              
  transform: translateX(-50%);
  width: 50%;             
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  pointer-events: none;
}

#ticket.for-capture .name { 
  top: 9.6%;   
}
