table.box_servico{
	float:left;
	width: calc(33% - 20px);
	margin: 10px;
	line-height: 2;
	text-align: left;
}
table.box_servico.one-row{
	width: calc(100% - 20px);
}
table.box_servico.two-row{
	width: calc(50% - 20px);
}
table.box_servico.three-row{
	width: calc(33% - 20px);
}
table.box_servico.four-row{
	width: calc(25% - 20px);
}


table.box_servico .icone{
	float:left;
	display: block;
	width: 80px;
	height: 80px;
	padding: 17px;
	background: var(--cor-escura);
	border-radius: 6px 0;
	margin-right: 15px;
	text-align: center;
}
table.box_servico .icone i{
	color: white;
	font-size: 36px;
}
table.box_servico .titulo{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.25rem;
	line-height: normal;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* com borda */
table.box_servico.wborder .icone{
	box-shadow: 0 0 0 10px var(--cor-clara) !important;
	display: inline-block;
	width: 65px;
	height: 65px;
	padding: 12px;
}

/* redondo com borda */
table.box_servico.rounded .icone{
	box-shadow: 0 0 0 10px var(--cor-clara) !important;
	display: inline-block;
	width: 65px;
	height: 65px;
	padding: 12px;
	border-radius: 50%;
}

/* redondo sem borda */
table.box_servico.rounded-noborder .icone{
	border-radius: 50%;
}