/* Badges */
.badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge--warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge--success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge--info {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge--danger {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.dash-section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dash-section-title-row h3 {
    margin-bottom: 0 !important;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PIX Payment Modal Premium */
.pix-payment {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
}

.pix-header i {
    width: 64px;
    height: 64px;
    color: var(--accent-primary) !important;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.4));
}

.pix-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pix-qr-container {
    background: white;
    padding: 24px;
    border-radius: 24px;
    display: inline-block;
    margin: 30px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.pix-qr-container:hover {
    transform: scale(1.02);
}

.pix-qr-container img {
    width: 250px;
    height: 250px;
    display: block;
}

.pix-code-copy {
    text-align: left;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pix-code-copy label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.copy-input {
    display: flex;
    gap: 12px;
}

.copy-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    min-width: 0;
    font-family: monospace;
}

.pix-instructions {
    background: rgba(124, 58, 237, 0.1);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.pix-instructions i {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}