:root {
	--primary: #0052cc;
	--primary-foreground: #ffffff;
	--sidebar-primary: #0052cc;
	--sidebar-primary-foreground: #ffffff;
	--chart-1: #3b82f6;
	--chart-2: #0052cc;
	--chart-3: #0047b2;
	--chart-4: #003d99;
	--chart-5: #003380;
	--radius: 0.5rem;
	--background: #ffffff;
	--foreground: #1a1a1a;
	--card: #ffffff;
	--card-foreground: #1a1a1a;
	--popover: #ffffff;
	--popover-foreground: #1a1a1a;
	--secondary: #f3f4f6;
	--secondary-foreground: #374151;
	--muted: #e5e7eb;
	--muted-foreground: #6b7280;
	--accent: #0052cc;
	--accent-foreground: #ffffff;
	--destructive: #dc2626;
	--destructive-foreground: #ffffff;
	--border: #e5e7eb;
	--input: #f3f4f6;
	--ring: #0052cc;
	--sidebar: #ffffff;
	--sidebar-foreground: #1a1a1a;
	--sidebar-accent: #0052cc;
	--sidebar-accent-foreground: #ffffff;
	--sidebar-border: #e5e7eb;
	--sidebar-ring: #0052cc;
}

body {
	font-family: "Inter", sans-serif;
	background-color: var(--background);
	color: var(--foreground);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 1rem;
}

.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

button, input, optgroup, select, textarea{
	font-size: .85rem !important;
}

@media (min-width: 640px) {
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container {
		padding-left: 2rem;
		padding-right: 2rem;
		max-width: 1280px;
	}
}

.consultajus-icone{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: #ffffff;
	background-color: var(--primary);
	border-radius: 6px;
	border-bottom-right-radius: 0px;
	padding: 12px 8px;
	line-height: 0;
}

.notificacoes-cards {
	position: relative;
	z-index: 2;
	margin-top: -360px;
	margin-left: 40px;
}
.notificacao-card {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	padding: 10px 20px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: float 4s ease-in-out infinite;
	max-width: 280px;
	transition: all .5s;
}
.notificacao-card:hover{
	background: rgba(255, 255, 255, 0.4);
}
.notificacao-card.card-1:hover svg,
.notificacao-card.card-3:hover svg{
	color: #128C7E !important;
}
.notificacao-card.card-2:hover svg{
	color: var(--accent) !important;
}
.card-1 {
	animation-delay: 1s;
}
.card-2 {
	animation-delay: 2s;
}
.card-3 {
	animation-delay: 3s;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Painel */
.sidebar-transition {
	transition: width 0.3s ease;
}
