.resultados-section {
	padding          : 80px 20px;
	background-color : #FFF;
	font-family      : 'Inter', sans-serif;
}

.container-resultados {
	max-width       : 1000px;
	margin          : 0 auto;
	display         : flex;
	align-items     : center;
	justify-content : space-between;
	gap             : 40px;
}

/* --- Lado Esquerdo --- */
.resultados-title {
	font-size     : 48px;
	font-weight   : 800;
	line-height   : 1.1;
	color         : #036; /* Azul Escuro */
	margin-bottom : 20px;
}

.resultados-title span {
	color : #007BFF; /* Azul Royal */
}

.resultados-description {
	font-size   : 16px;
	color       : #555;
	max-width   : 380px;
	line-height : 1.5;
}

.resultados-description strong {
	color       : #1A1A1A;
	font-weight : 700;
}

/* --- Lado Direito (Gráfico e Stats) --- */
.resultados-stats {
	display        : flex;
	flex-direction : column;
	align-items    : flex-start;
}

/* Gráfico em anel usando conic-gradient */
.circular-chart {
	width           : 100px;
	height          : 100px;
	border-radius   : 50%;
	background      : conic-gradient(
		#036 0% 75%,
		#999 75% 100%
	);
	display         : flex;
	align-items     : center;
	justify-content : center;
	position        : relative;
	margin-bottom   : 20px;
}

/* O furo no meio do gráfico */
.circular-chart::after {
	content          : "";
	width            : 65px;
	height           : 65px;
	background-color : #FFF;
	border-radius    : 50%;
	position         : absolute;
}

.stats-number {
	display        : block;
	font-size      : 56px;
	font-weight    : 800;
	color          : #007BFF;
	letter-spacing : -1px;
	line-height    : 1;
}

.stats-label {
	font-size   : 20px;
	font-weight : 600;
	color       : #1A1A1A;
	margin-top  : 5px;
}

/* --- Responsividade --- */
@media (max-width : 768px) {
	.container-resultados {
		flex-direction : column;
		text-align     : center;
	}

	.resultados-description {
		margin : 0 auto;
	}

	.resultados-stats {
		align-items : center;
	}

	.resultados-title {
		font-size : 36px;
	}

	.stats-number {
		font-size : 42px;
	}
}