/*
' ===================================@FICHEIRO=====================================
' @DESC    Folha de estilo para Cards.
' @AUTOR   DAC
' @VERSAO  1.03 2021-04-08
' @NOVO    Acerto do font-size no .title e .footer
' ===================================@FICHEIRO.====================================
*/
 
.cardColuna {
	width: 33.3%;
	float: left;
	margin: 0;
}
.card {
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
	transition: 0.2s;
	border-radius: 5px;
	margin: 10px 5px; 
	padding: 5px;
	height: 90px;
	overflow-y: hidden;
}
.card:hover {
	box-shadow: 0 0 12px 0 rgba(20, 67, 100, 0.4);
	overflow-y: hidden;
	height: auto;
}
.card  > div {
	overflow: hidden;
} 
.card  > div:first-child{
	float: left;
}
.card p{
	text-align: left;
}
.card a{
	color: rgb(39, 108, 199); /* azul-3 */
	outline: none;
	text-decoration: none;
}
.card a:hover{
	color: rgb(160, 203, 250); /* azul-1 */
}
.card img.imagem {
	width: 80px; 
	height: 80px; 
	padding: 5px;
	float: left;
}
.card .title{
	font-size: 16px;
	color: rgb(1, 33, 105);
	margin: 5px 0 0 0;
	font-weight: bold;
}
.card .footer{
    width: 100%;
	padding: 10px 0 0 0;
    clear: both;
	font-size: 8px;
	position: relative;
}