@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Cores Principais (Baseadas no Print 3) */
  --primary-color: #1c3c5f;
  /* Azul escuro institucional */
  --primary-dark: #122840;
  /* Azul escuro profundo */
  --primary-light: #2c598c;
  /* Azul médio para destaques */
  --primary-rgb: 28, 60, 95;
  /* RGB para efeitos de transparência */

  --accent-color: #3a8d62;
  /* Verde institucional para botões/sucessos */
  --accent-hover: #2e724e;
  /* Verde escuro para hover */
  --accent-rgb: 58, 141, 98;
  /* RGB para efeitos de transparência */

  /* Cores de Fundo e Containers */
  --bg-page: #f1f5f9;
  /* Fundo cinza claro leve (estilo moderno) */
  --bg-card: #ffffff;
  /* Fundo dos cards (branco limpo) */
  --bg-sidebar: var(--primary-color);
  /* Fundo do menu lateral (azul institucional) */
  --border-color: #e2e8f0;
  /* Borda sutil */
  --border-focus: #94a3b8;
  /* Borda em foco */

  /* Cores de Feedback (Cards de Indicadores) */
  --color-preenchimento: #d97706;
  /* Laranja (Em Preenchimento) */
  --bg-preenchimento-light: #fef3c7;
  /* Fundo suave laranja */

  --color-aprovado: #059669;
  /* Verde (Aprovados) */
  --bg-aprovado-light: #d1fae5;
  /* Fundo suave verde */

  --color-pendencias: #dc2626;
  /* Vermelho (Pendências) */
  --bg-pendencias-light: #fee2e2;
  /* Fundo suave vermelho */

  /* Tipografia & Elementos */
  --font-family: 'Poppins', sans-serif;
  --font-headings: 'Montserrat', sans-serif;
  --text-main: #1e293b;
  /* Cinza escuro para texto principal */
  --text-muted: #64748b;
  /* Cinza médio para textos secundários */
  --text-white: #ffffff;


  /* Layout e Espaçamento */
  --sidebar-width: 260px;
  --header-height: 70px;

  /* Efeitos */
  --radius-lg: 18px;
  /* Bordas arredondadas para cards principais */
  --radius-md: 12px;
  /* Bordas arredondadas para botões e inputs */
  --radius-sm: 8px;
  /* Bordas menores */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(28, 60, 95, 0.08), 0 8px 10px -6px rgba(28, 60, 95, 0.05);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Configurações Globais */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-headings,
.btn-submit,
.btn-google,
.sidebar-logo-text,
.sidebar-menu-item,
.sidebar-logout,
.status-card-title,
.dashboard-action-btn,
.section-title,
.form-label,
.filter-tab {
  font-family: var(--font-headings);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Classes Utilitárias */
.flex {
  display: flex;
}

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

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

.flex-column {
  flex-direction: column;
}

.grid {
  display: grid;
}

.w-full {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-orange {
  background-color: var(--bg-preenchimento-light);
  color: var(--color-preenchimento);
}

.badge-green {
  background-color: var(--bg-aprovado-light);
  color: var(--color-aprovado);
}

.badge-red {
  background-color: var(--bg-pendencias-light);
  color: var(--color-pendencias);
}