.numeros-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
}

/* Subtítulo */
.numeros-header {
	max-width: 1200px;
	margin: 0 auto 35px auto;
	box-sizing: border-box;
}

.numeros-page-subtitle {
	font-size: 15px;
	color: #86868b;
	margin: 0;
	font-weight: 500;
	line-height: 1.4;
}

/* Layout Principal */
.numeros-main-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	width: 100%;
}

.numeros-chart-section {
	flex: 1;
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid #e5e5ea;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
}

.numeros-sidebar-section {
	width: 320px;
	flex-shrink: 0;
	box-sizing: border-box;
}

/* Barra de Filtros Unificada */
.numeros-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.filter-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.filter-group label {
	font-size: 13.5px;
	font-weight: 600;
	color: #1d1d1f;
}

.filter-group select {
	height: 38px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #d2d2d7;
	background-color: #f5f5f7;
	font-size: 13.5px;
	color: #1d1d1f;
	outline: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-group select:focus {
	border-color: #154794;
	background-color: #ffffff;
}

.numeros-btn-primary {
	background: #154794;
	color: #ffffff !important;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 10px rgba(21, 71, 148, 0.15);
	outline: none;
}

.numeros-btn-primary:hover {
	background: #0f356e;
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(21, 71, 148, 0.25);
}

/* Canvas Wrapper */
.chart-canvas-wrapper {
	position: relative;
	width: 100%;
	height: 360px;
}

/* Card Estatístico */
.stat-card {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid #e5e5ea;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stat-icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 18px;
}

/* Cores específicas dos ícones laterais baseadas no gráfico correspondente */
.stat-icon-wrapper.atendimentos {
	background: rgba(21, 71, 148, 0.1);
	color: #154794;
	box-shadow: inset 0 2px 5px rgba(21, 71, 148, 0.05);
}

.stat-icon-wrapper.transportes {
	background: rgba(91, 200, 44, 0.1);
	color: #5bc82c;
	box-shadow: inset 0 2px 5px rgba(91, 200, 44, 0.05);
}

.stat-info {
	width: 100%;
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #86868b;
	font-weight: 700;
	display: block;
	margin-bottom: 8px;
}

.stat-number {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 10px 0;
	font-family: 'Outfit', sans-serif;
	line-height: 1.1;
}

#atendimentos-total-value {
	color: #154794;
}

#transportes-total-value {
	color: #5bc82c;
}

.stat-description {
	font-size: 13px;
	line-height: 1.5;
	color: #6e6e73;
	margin: 0;
}

/* Responsividade */
@media (max-width: 991px) {
	.numeros-main-layout {
		flex-direction: column;
	}

	.numeros-sidebar-section {
		width: 100%;
	}

	.stat-card {
		flex-direction: row;
		text-align: left;
		align-items: center;
		gap: 20px;
	}

	.stat-icon-wrapper {
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

@media (max-width: 600px) {
	.numeros-filter-bar {
		flex-direction: column;
		align-items: stretch;
	}

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

	.filter-group select {
		width: 45%;
	}

	.numeros-btn-primary {
		width: 100%;
		text-align: center;
	}

	.chart-canvas-wrapper {
		height: 260px;
	}
}
