/* Estilos para a Barra de Crescimento Dinâmica */
.conv-growth-container {
	margin-top: 25px;
	background: #fff;
	padding: 25px;
	border-radius: 20px;
	border: 1px solid #e2e8f0;
}

.conv-chart-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
}

.conv-total-amount {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--conv-primary);
	display: block;
}

.conv-visual-bar {
	height: 16px;
	width: 100%;
	background: #f1f5f9;
	border-radius: 50px;
	display: flex;
	overflow: hidden;
	margin: 15px 0;
	border: 1px solid #e2e8f0;
}

.conv-bar-fill-invested {
	height: 100%;
	background: #64748b; /* Cinza para o capital principal */
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.conv-bar-fill-interest {
	height: 100%;
	background: var(--conv-primary); /* Rubi para o lucro */
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.conv-legend {
	display: flex;
	gap: 20px;
	font-size: 0.75rem;
	font-weight: 700;
}

.conv-legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.conv-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.conv-result-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-top: 20px;
}

.conv-res-card {
	background: #f8fafc;
	padding: 15px;
	border-radius: 12px;
	border: 1px solid #f1f5f9;
}

.conv-res-label {
	display: block;
	font-size: 0.65rem;
	text-transform: uppercase;
	color: #64748b;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

.conv-res-val {
	font-weight: 800;
	color: var(--conv-text);
	font-size: 1rem;
}