@import "https://fonts.googleapis.com/css2?family=Orkney:wght@300;400;500;600;700;800;900&display=swap";
/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
  font-family: Orkney, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

:root {
  --primary: #ff6b00;
  --primary-hover: #e65100;
  --primary-light: #ff8533;
  --primary-dark: #e65100;
  --bg: #fff;
  --bg-light: #fff;
  --bg-gray: #f5f5f5;
  --bg-gray-dark: #e0e0e0;
  --surface: #fff;
  --text: #1e293b;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-muted: #888;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-light: #d1d1d1;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f59e0b;
  --success: #16a34a;
  --error: #ef4444;
  --warning: #f97316;
  --radius: 16px;
  --sidebar-w: 270px;
  --header-h: 80px;
  --black: #000;
  --white: #fff;
}

body {
  background: var(--bg);
  color: var(--text);
  max-width: 100vw;
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  overflow: hidden;
}

.main-wrapper {
  margin-left: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
  background: #fafafa;
  outline: none;
  flex-direction: column;
  height: 100vh;
  transition: margin-left .3s;
  display: flex;
  overflow: hidden;
}

.main-wrapper:focus {
  outline: none !important;
}

.main-wrapper:focus-visible {
  outline: none !important;
}

body.sidebar-collapsed #sidebar {
  transition: width .3s;
  width: 72px !important;
  min-width: 72px !important;
  overflow: hidden !important;
}

body.sidebar-collapsed .main-wrapper {
  transition: margin-left .3s, width .3s;
  width: calc(100% - 72px) !important;
  margin-left: 72px !important;
}

body.sidebar-collapsed .sidebar-group-label, body.sidebar-collapsed .sidebar-item-text, body.sidebar-collapsed .sidebar-footer, body.sidebar-collapsed .sidebar-carteira-text {
  display: none !important;
}

body.sidebar-collapsed #sidebar nav a, body.sidebar-collapsed #sidebar .sidebar-carteira-desktop {
  justify-content: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.sidebar-collapsed .sidebar-mobile-header .sidebar-header-vexpay-text, body.sidebar-collapsed .sidebar-mobile-header .sidebar-vexpay-label, body.sidebar-collapsed .sidebar-mobile-header .sidebar-header-dropdown, body.sidebar-collapsed .sidebar-mobile-header .sidebar-profile-pill {
  display: none !important;
}

body.sidebar-collapsed .sidebar-mobile-header > div {
  justify-content: center !important;
}

body.sidebar-collapsed .sidebar-mobile-header {
  box-sizing: border-box !important;
  width: calc(100% - 8px) !important;
  margin: 10px 4px 0 !important;
  padding: 12px 8px !important;
}

body.sidebar-collapsed .sidebar-mobile-header a[href] img {
  max-width: 32px !important;
  max-height: 32px !important;
}

body.sidebar-collapsed .sidebar-content {
  width: calc(100% - 8px) !important;
  margin: 0 4px 8px !important;
}

.content {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 24px 24px;
  outline: none;
  flex: 1;
  width: calc(100% - 15px);
  margin: 0 10px 10px 5px;
  padding: 0;
  overflow-y: auto;
}

.content:focus {
  outline: none !important;
}

.content:focus-visible {
  outline: none !important;
}

.content > * {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.content > .balance-card {
  padding: 0 !important;
}

.content::-webkit-scrollbar {
  width: 8px;
}

.content::-webkit-scrollbar-track {
  background: none;
}

.content::-webkit-scrollbar-thumb {
  background: none;
  border-radius: 4px;
}

.content::-webkit-scrollbar-thumb:hover {
  background: none;
}

body.receipt-modal-open .app-header, body.receipt-modal-open .content {
  display: none !important;
}

body.receipt-modal-open.sidebar-collapsed .rcpt-modal-overlay {
  width: calc(100vw - 72px) !important;
  left: 72px !important;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .02);
}

.card-title {
  color: var(--text);
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #ff6b00;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e65100;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ff6b00 #f5f5f5;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.p-2 {
  padding: .5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-sm {
  font-size: .875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.rounded-lg {
  border-radius: .5rem;
}

.rounded-xl {
  border-radius: .75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-white {
  background-color: #fff;
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.w-2 {
  width: .5rem;
}

.w-3 {
  width: .75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-12 {
  width: 3rem;
}

.w-64 {
  width: 16rem;
}

.w-px {
  width: 1px;
}

.h-px {
  height: 1px;
}

.space-y-3 > * + * {
  margin-top: .75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-1 {
  flex: 1;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}

.transition-all {
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.opacity-50, .disabled\:opacity-50:disabled {
  opacity: .5;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

@media (min-width: 1024px) {
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .main-wrapper {
    background: #fff !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .content {
    background: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px 4px 0 !important;
  }

  .content > * {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .card {
    border-radius: 12px;
    padding: 16px;
  }

  [style*="background: #F3F4F6"], [style*="background:#F3F4F6"], [style*="background: #f3f4f6"], [style*="background:#f3f4f6"], [style*="background: '#F3F4F6'"], [style*="background:'#F3F4F6'"], [style*="background: '#f3f4f6'"], [style*="background:'#f3f4f6'"] {
    background: #fff !important;
  }
}

html, body {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation !important;
}

input, textarea, [contenteditable] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}

html {
  -ms-touch-action: manipulation !important;
  touch-action: manipulation !important;
}

button, a {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

body {
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden !important;
}

input, textarea, select, [contenteditable="true"] {
  touch-action: auto !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}

img {
  pointer-events: auto !important;
}

html {
  touch-action: pan-x pan-y !important;
  -ms-touch-action: pan-x pan-y !important;
}

body {
  touch-action: pan-x pan-y !important;
  -ms-touch-action: pan-x pan-y !important;
  overflow-x: hidden !important;
}

input, textarea, select, button, a, [role="button"], [onclick] {
  touch-action: manipulation !important;
}

div, section, article, main, header, footer, nav, aside, span, p {
  touch-action: pan-x pan-y !important;
}

body div[class*="jsx-"]:focus {
  outline: none !important;
}

body div[class*="jsx-"]:focus-visible {
  outline: none !important;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/