/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Orkney:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orkney', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --primary: #FF6B00;
  --primary-hover: #e65100;
  --primary-light: #FF8533;
  --primary-dark: #E65100;
  --bg: #ffffff;
  --bg-light: #FFFFFF;
  --bg-gray: #F5F5F5;
  --bg-gray-dark: #E0E0E0;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-muted: #888888;
  --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: #000000;
  --white: #FFFFFF;
}

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

/* Layout compartilhado */
.main-wrapper {
  margin-left: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s;
  overflow: hidden;
}

.content {
  padding: 32px 5px 18px 15px;
  margin: 40px 0px 20px 0px !important;
  width: calc(100% - 10px);
  background: #fafafa;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow-y: auto;
  flex: 1 1;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

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

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

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

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

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

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

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

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

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

/* Scrollbar personalizada */
::-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;
}

/* Utility classes para compatibilidade */
.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: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.p-2 { padding: 0.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: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mb-2 { margin-bottom: 0.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: 0.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: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.bg-white { background-color: white; }
.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: 0.5rem; }
.w-3 { width: 0.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: 0.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 1; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.opacity-50 { opacity: 0.5; }
.disabled\:opacity-50:disabled { opacity: 0.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)); }
}

/* ====== MOBILE RESPONSIVE ====== */
@media (max-width: 1024px) {
  .main-wrapper {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .content {
    padding: 16px 4px 150px 4px !important;
    margin: 20px 0 0 0 !important;
    width: 100% !important;
    border-radius: 12px;
    background: #ffffff !important;
  }
  .content > * {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100%;
  }
  .card {
    padding: 16px;
    border-radius: 12px;
  }
  /* Altera todos os backgrounds #F3F4F6 para #ffffff no mobile */
  [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: #ffffff !important;
  }
}

