/* Style CSS for SESAU Health Services Portfolio */

:root {
  --primary-blue: #0056b3;
  --primary-dark: #003875;
  --accent-teal: #00a896;
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Accessibility High Contrast */
body.high-contrast {
  background-color: #000000 !important;
  color: #ffffff !important;
}

body.high-contrast .bg-white,
body.high-contrast .bg-slate-50,
body.high-contrast .bg-blue-50,
body.high-contrast .bg-emerald-50,
body.high-contrast .bg-rose-50 {
  background-color: #121212 !important;
  color: #ffffff !important;
  border-color: #444444 !important;
}

body.high-contrast .text-slate-600,
body.high-contrast .text-slate-500,
body.high-contrast .text-slate-700 {
  color: #dddddd !important;
}

body.high-contrast a,
body.high-contrast button {
  color: #ffff00 !important;
}

/* Category Colors */
.badge-urgencia { background-color: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.badge-atencao-basica { background-color: #dcfce7; color: #166534; border: 1px solid #86efac; }
.badge-especialidades { background-color: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }
.badge-saude-mental { background-color: #f3e8ff; color: #6b21a8; border: 1px solid #d8b4fe; }
.badge-farmacia { background-color: #ccfbf1; color: #115e59; border: 1px solid #5eead4; }
.badge-vigilancia { background-color: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.badge-regulacao { background-color: #e0e7ff; color: #3730a3; border: 1px solid #a5b4fc; }
.badge-promocao { background-color: #f1f5f9; color: #334155; border: 1px solid #cbd5e1; }

/* Custom transitions */
.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Modal Animations */
.modal-backdrop {
  backdrop-filter: blur(4px);
}
