/* ====================================================================
   🧩 COMPONENTES UI - KITSUNECRAFT ATM10
   ==================================================================== */

/* Dimensionamento Universal Seguro de SVGs */
svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.w-3\.5, .h-3\.5 { width: 0.875rem !important; height: 0.875rem !important; }
.w-4, .h-4 { width: 1rem !important; height: 1rem !important; }
.w-5, .h-5 { width: 1.25rem !important; height: 1.25rem !important; }
.w-6, .h-6 { width: 1.5rem !important; height: 1.5rem !important; }

/* ====================================================================
   NAVBAR STATUS WIDGET
   ==================================================================== */
.nav-status-widget {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(19, 20, 27, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px #34d399;
    animation: statusPulse 2s infinite ease-in-out;
}

.status-count-text {
    color: var(--text-pure-white);
    font-size: 0.8rem;
}

.status-count-text strong {
    color: #34d399;
}

.status-sep {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.nav-copy-btn {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: var(--color-kitsune-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.nav-copy-btn svg {
    width: 13px !important;
    height: 13px !important;
}

.nav-copy-btn:hover {
    color: #fff;
    background: var(--color-kitsune-primary);
    border-color: var(--color-kitsune-primary);
    box-shadow: 0 0 12px rgba(243, 156, 18, 0.5);
}

.audio-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(30, 31, 41, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    flex-shrink: 0;
}

.audio-toggle-btn svg {
    width: 18px !important;
    height: 18px !important;
}

.audio-toggle-btn:hover {
    color: #fff;
    border-color: var(--color-kitsune-primary);
    background: rgba(243, 156, 18, 0.2);
    box-shadow: var(--glow-kitsune);
}

/* ====================================================================
   BOTÕES (Buttons UX)
   ==================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    outline: none;
    user-select: none;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 9px;
}

.btn-primary {
    background: var(--grad-kitsune-sakura);
    color: #10121a;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FD79A8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(253, 121, 168, 0.6);
}

.btn-secondary {
    background: rgba(30, 33, 48, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: rgba(45, 50, 72, 0.9);
    border-color: var(--color-vibranium);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.4);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.btn-block {
    width: 100%;
}

/* ====================================================================
   PAINÉIS DE VIDRO (Glass Panels)
   ==================================================================== */
.glass-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

/* ====================================================================
   BADGES (Silos de Destaque)
   ==================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.badge-amber {
    background: rgba(243, 156, 18, 0.15);
    color: var(--color-kitsune-primary);
    border: 1px solid rgba(243, 156, 18, 0.35);
}

.badge-cyan {
    background: rgba(0, 206, 201, 0.15);
    color: var(--color-vibranium);
    border: 1px solid rgba(0, 206, 201, 0.35);
}

/* ====================================================================
   CATÁLOGO VIP & CARDS
   ==================================================================== */
.store-category-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.store-tab-btn {
    background: rgba(23, 25, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.6rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.store-tab-btn:hover, .store-tab-btn.active {
    color: #fff;
    border-color: var(--color-kitsune-primary);
    background: rgba(243, 156, 18, 0.15);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

.vips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vip-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: var(--grad-dark-card);
}

.vip-popular {
    border-color: var(--color-atm-star);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.vip-popular-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-atm-star);
    color: #10121a;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.vip-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.vip-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.vip-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.vip-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.vip-price {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.vip-period {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.vip-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.vip-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vip-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.45;
}

.vip-check {
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

/* ====================================================================
   TOASTS (Notificações Flutuantes)
   ==================================================================== */
#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none;
}

.toast-message {
    background: rgba(18, 20, 29, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 420px;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.25);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.3rem;
    color: #34d399;
    flex-shrink: 0;
}

.toast-text {
    font-size: 0.92rem;
    line-height: 1.45;
    color: #f1f2f6;
}

.toast-text strong {
    color: var(--color-atm-star);
    font-family: var(--font-mono);
}

/* ====================================================================
   TABELAS (Chunkloaders, Regras)
   ==================================================================== */
.banned-items-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.banned-items-table th {
    padding: 1rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-kitsune-primary);
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banned-items-table td {
    padding: 1.1rem 1.2rem;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.banned-items-table tr:hover td {
    background: rgba(243, 156, 18, 0.04);
}

/* ====================================================================
   GUIA PASSO A PASSO (/como-jogar)
   ==================================================================== */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    border-radius: 16px;
    background: rgba(18, 20, 29, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.guide-step:hover {
    border-color: rgba(243, 156, 18, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(243, 156, 18, 0.15);
    transform: translateY(-2px);
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F39C12, #D35400);
    color: #10121A;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.6rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ====================================================================
   CORRIDA PELA ATM STAR & RANKINGS (/rankings)
   ==================================================================== */
.atm-star-card {
    background: rgba(18, 20, 29, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.8rem 2rem;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.atm-star-card:hover {
    border-color: rgba(155, 89, 182, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(155, 89, 182, 0.2);
    transform: translateY(-2px);
}

.atm-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.atm-team-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.atm-progress-wrap {
    margin-top: 1rem;
}

.atm-progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.atm-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9B59B6, #3498DB, #F1C40F);
    border-radius: 9999px;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
}

/* ====================================================================
   REGRAS DA COMUNIDADE (/regras)
   ==================================================================== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    padding: 1.8rem;
    border-radius: 16px;
    background: rgba(18, 20, 29, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.rule-card:hover {
    border-color: rgba(243, 156, 18, 0.3);
    transform: translateY(-3px);
}

.rule-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.6rem;
}

.rule-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ====================================================================
   CLASSES UTILITÁRIAS ESSENCIAIS
   ==================================================================== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.col-span-full { grid-column: 1 / -1; }
.overflow-x-auto { overflow-x: auto; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.font-bold { font-weight: 700; }
.font-mono { font-family: var(--font-mono); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-white { color: #FFF; }
.text-amber-400 { color: #FBBF24; }
.text-cyan-400 { color: #22D3EE; }
.text-purple-400 { color: #C084FC; }
.text-rose-400 { color: #FB7185; }
.text-emerald-400 { color: #34D399; }
.text-slate-200 { color: #E2E8F0; }
.text-slate-300 { color: #CBD5E1; }
.text-slate-400 { color: #94A3B8; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }
.border-amber-500\/40 { border-color: rgba(245, 158, 11, 0.4); }
.border-cyan-500\/30 { border-color: rgba(6, 182, 212, 0.3); }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }
.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }
.border-emerald-500\/30 { border-color: rgba(16, 185, 129, 0.3); }

@media (max-width: 768px) {
    .grid-cols-2, .grid-cols-3 { grid-template-columns: 1fr; }
    .guide-step { flex-direction: column; gap: 1rem; }
    .step-num { width: 44px; height: 44px; font-size: 1.15rem; }
}

/* ====================================================================
   💳 CHECKOUT TRANSPARENTE PIX & VALIDAÇÃO MOJANG
   ==================================================================== */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.checkout-form-panel,
.checkout-summary-panel {
    background: rgba(18, 20, 30, 0.78);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.checkout-step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    font-size: 0.85rem;
    font-weight: 800;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 0.5rem;
}

.form-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: #94A3B8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    padding-left: 2.8rem;
    background: rgba(10, 12, 18, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #FFF;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.form-input.no-icon {
    padding-left: 1.1rem;
}

.form-input:focus {
    border-color: #F59E0B;
    background: rgba(14, 16, 24, 0.95);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.form-input::placeholder {
    color: #64748B;
}

.form-helper-text {
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 0.4rem;
    display: block;
}

/* Validação Mojang */
.player-validation-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(10, 12, 20, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-top: 0.75rem;
    animation: fadeIn 0.3s ease;
}

.player-validation-box.valid {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
}

.player-validation-box.invalid {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.08);
}

.player-3d-skin {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
}

.player-val-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.player-val-confirm {
    color: #FFF;
    font-size: 0.95rem;
}

.player-val-tag {
    color: #34D399;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Card de Sincronização Discord Automática */
.discord-sync-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(88, 101, 242, 0.08);
    border: 1.5px solid rgba(88, 101, 242, 0.3);
    border-radius: 14px;
    margin: 1.5rem 0;
}

.discord-sync-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(88, 101, 242, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #5865F2;
}

.discord-sync-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.discord-sync-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFF;
}

.discord-sync-desc {
    font-size: 0.78rem;
    color: #CBD5E1;
    line-height: 1.45;
}

.discord-sync-desc code {
    background: rgba(88, 101, 242, 0.25);
    color: #A5B4FC;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
}

/* Botão Gerar PIX */
.btn-generate-pix {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #000;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    transition: all 0.25s ease;
    margin-top: 1.5rem;
}

.btn-generate-pix:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    filter: brightness(1.08);
}

.btn-generate-pix:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Resumo do Pedido & PIX */
.checkout-product-card {
    background: rgba(10, 12, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.checkout-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.checkout-product-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
}

.checkout-product-tier-badge {
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.checkout-total-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFF;
}

.checkout-total-val {
    font-size: 1.75rem;
    font-weight: 900;
    color: #F59E0B;
    font-family: var(--font-mono);
}

.pix-payment-box {
    text-align: center;
    background: rgba(10, 12, 18, 0.9);
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.15);
}

.pix-qr-img {
    width: 200px;
    height: 200px;
    margin: 1rem auto;
    border-radius: 12px;
    background: #FFF;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.pix-code-display {
    background: rgba(0, 0, 0, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #94A3B8;
    word-break: break-all;
    max-height: 70px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.pix-timer-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 9999px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

.security-trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.security-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: #94A3B8;
    text-align: center;
}

.security-badge-item svg {
    width: 20px;
    height: 20px;
    color: #10B981;
}

@media (max-width: 860px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

