.container-list {
	display: flex;
	width: 100%;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.column {
	padding: 20px;
	flex: 1;
}
.column:first-child {
	flex: 0 0 30%; /* Coluna de itens - 30% */
	border-right: 1px solid #ddd;
}
.column:last-child {
	flex: 0 0 70%; /* Coluna descritiva - 70% */
}
.list-group {
	list-style-type: none;
	padding: 0;
}
.list-group li {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	cursor: pointer; /* Indica que o item é clicável */
}
.list-group img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	border-radius: 5px;
}
.description {
	line-height: 1.6;
}