/* =========================================================
   CHECKOUT SUCESSO / INGRESSO
   ========================================================= */

.sucesso-page{
  max-width:1080px;
  margin:0 auto;
  padding:34px 16px 48px;
}

.sucesso-hero{
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(37,99,235,.12), transparent 32%),
    #fff;
  border:1px solid #dbe3ef;
  border-radius:24px;
  padding:28px;
  text-align:center;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
  margin-bottom:18px;
}

.sucesso-icon{
  width:76px;
  height:76px;
  border-radius:999px;
  background:#dcfce7;
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
  font-size:34px;
}

.sucesso-hero h1{
  margin:0 0 8px;
  font-size:clamp(24px,3vw,36px);
  line-height:1.1;
  letter-spacing:-.04em;
  color:#0f172a;
  font-weight:750;
}

.sucesso-hero p{
  margin:0 auto;
  max-width:720px;
  color:#64748b;
  font-size:14px;
  line-height:1.6;
}

.sucesso-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.sucesso-btn{
  min-height:42px;
  border:0;
  border-radius:12px;
  padding:11px 15px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
}

.sucesso-btn:hover{
  background:#1d4ed8;
  color:#fff;
}

.sucesso-btn.sec{
  background:#fff;
  color:#172033;
  border:1px solid #dbe3ef;
}

.sucesso-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:16px;
  align-items:start;
}

.sucesso-card{
  background:#fff;
  border:1px solid #dbe3ef;
  border-radius:18px;
  padding:18px;
}

.sucesso-card h2{
  margin:0 0 14px;
  font-size:18px;
  color:#0f172a;
  font-weight:700;
}

.sucesso-resumo{
  display:grid;
  gap:8px;
}

.sucesso-resumo-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:9px 0;
  border-bottom:1px solid #edf2f7;
  font-size:13px;
}

.sucesso-resumo-row:last-child{
  border-bottom:0;
}

.sucesso-resumo-row span{
  color:#64748b;
}

.sucesso-resumo-row strong{
  color:#172033;
  text-align:right;
}

.ingresso-lista{
  display:grid;
  gap:12px;
}

.ingresso-card{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:14px;
  align-items:center;
  border:1px solid #e3e8ef;
  border-radius:16px;
  padding:12px;
  background:#f8fafc;
}

.ingresso-qr{
  width:110px;
  height:110px;
  border-radius:12px;
  background:#fff;
  border:1px solid #e3e8ef;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.ingresso-qr img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.ingresso-info h3{
  margin:0 0 5px;
  font-size:15px;
  color:#0f172a;
}

.ingresso-info p{
  margin:0 0 4px;
  color:#64748b;
  font-size:12.5px;
}

.ingresso-codigo{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:11px;
  font-weight:700;
  margin-top:5px;
}

@media(max-width:860px){
  .sucesso-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .ingresso-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .ingresso-qr{
    margin:0 auto;
  }
}
