/* ==========================================================
   VendaEventos - Ticket & Voucher Visual Style
   Optimized for Mobile Wallet, Screen & High-Res Printing
   ========================================================== */

.ticket-wrapper {
    max-width: 650px;
    margin: 30px auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.ticket-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    padding: 24px 30px;
    position: relative;
}

.ticket-body {
    padding: 30px;
}

/* Linha pontilhada de destaque (picote) */
.ticket-tear-line {
    position: relative;
    border-top: 2px dashed #cbd5e1;
    margin: 20px 0;
}

.ticket-tear-line::before,
.ticket-tear-line::after {
    content: '';
    position: absolute;
    top: -12px;
    width: 24px;
    height: 24px;
    background-color: #f8fafc;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
}

.ticket-tear-line::before {
    left: -42px;
}

.ticket-tear-line::after {
    right: -42px;
}

.ticket-qr-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.ticket-code-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: #0f172a;
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
}

@media print {
    body {
        background: #ffffff !important;
    }
    .no-print {
        display: none !important;
    }
    .ticket-wrapper {
        box-shadow: none !important;
        border: 1px solid #000 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
}
