table.box-areas{
	float:left;
	text-align: center;
	border: 1px solid #e4e4e4;
	padding: 40px 10px;	
	margin: 20px;
}

table.box-areas.one-row{
	width: calc(100% - 40px);
}
table.box-areas.two-row{
	width: calc(50% - 40px);
}
table.box-areas.three-row{
	width: calc(33% - 40px);
}
table.box-areas.four-row{
	width: calc(25% - 40px);
}

table.box-areas td i{
	color: var(--cor-principal);
	font-size: 42px;
}

table.box-areas tr td{
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

table.box-areas tr:nth-child(1) td{
	padding-bottom:  20px;
}
table.box-areas tr:nth-child(2) td{
	padding-bottom:  20px;
	font-size: 20px;
	font-weight: 700;
	font-family: "Libre Baskerville";
	color: var(--cor-principal);
	-webkit-line-clamp: 1;
}

table.box-areas tr:nth-child(3) td{
	overflow:hidden;
	-webkit-line-clamp: 3;
	
}