:root {
  /* ===== CORES ===== */
  --color-primary: #0063ae;
  --color-primary-light: #0076d1;
  --color-primary-dark: #004a82;

  --color-white: #ffffff;
  --color-black: #000000;

  --color-gray-100: #f7f7f7;
  --color-gray-200: #eeeeee;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #6b6b6b;
  --color-gray-600: #474747;
  --color-gray-700: #333333;

  /* ===== TIPOGRAFIA ===== */
  --font-family: "Montserrat", sans-serif;

  /* Tamanhos de texto gerais */
  --fs-xxs: clamp(0.65rem, 0.55rem + 0.5vw, 0.75rem);
  --fs-xs: clamp(0.75rem, 0.6rem + 0.6vw, 0.9rem);
  --fs-sm: clamp(0.85rem, 0.7rem + 0.7vw, 1rem);
  --fs-md: clamp(1rem, 0.8rem + 0.8vw, 1.125rem);
  --fs-lg: clamp(1.25rem, 1rem + 0.8vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  --fs-xxl: clamp(2rem, 1.6rem + 1vw, 2.5rem);

  /* ===== ESPAÇOS ===== */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;

  /* ===== BORDAS & FORMAS ===== */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* ===== SOMBRAS ===== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);

  /* ===== TRANSIÇÃO ===== */
  --transition: all 0.3s ease;

  /* ===== LARGURAS RESPONSIVAS ===== */
  --container-width: min(1200px, 90%);

  /* ==== STATUS ===== */
  --color-pendente: #ff9800;
  --color-analise: #2196f3;
  --color-andamento: #4caf50;
  --color-finalizado: #9c27b0;

  --color-error: #f44336;
  --color-error-dark: #d32f2f;
  --color-warning: #ff9800;
  --color-warning-dark: #f57c00;
  --color-success: #4caf50;
  --color-success-dark: #388e3c;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--color-gray-200);
  color: var(--color-gray-600);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Mensagem */
.alert {
  padding: 20px;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 10px;
  animation: dropDown 0.5s ease forwards, fadeOut 0.5s ease 4.5s forwards;
}

.alert-danger {
  background: linear-gradient(to right, var(--color-error), var(--color-error-dark));
  color: var(--color-white);
}

.alert-success {
  background: linear-gradient(to right, var(--color-success), var(--color-success-dark));
  color: var(--color-white);
}

@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}