h3.proximos-eventos-title{
	font-family: Roboto;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 133%;
	color: #2C3578;
	margin: 13px 0;
}
.proximos-eventos{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}
.proximos-eventos.horizontal{
	flex-direction: row;
	flex-wrap: wrap;
}
.proximos-eventos .card.evento{
	background: #E1E3F4;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom: 1px solid #1B2659;
	transition: all .3s;

	display: flex;
	padding: 15px 16px;
	align-items: flex-start;
	gap: 16px;
	flex: 1 0 0;
}
.proximos-eventos.horizontal .card.evento {
	flex-basis: 100%;
}
@media only screen and (min-width: 768px){
	.proximos-eventos.horizontal .card.evento {
		flex-basis: calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
}
@media only screen and (min-width: 1132px){
	.proximos-eventos.horizontal .card.evento {
		flex-basis: calc(33% - 8px);
		max-width: calc(33% - 8px);
	}
}
.proximos-eventos .card.evento:hover,
.proximos-eventos .card.evento:focus{
	background: #EECFF1;
}
.proximos-eventos .card.evento .fecha{
	display: flex;
	flex-direction: column;
}
.proximos-eventos .card.evento .fecha .dia{
	text-align: center;
	font-family: Roboto;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 125%;
	color: #1B2659;
}
.proximos-eventos .card.evento .fecha .mes{
	text-align: center;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	color: #1B2659;
}
.proximos-eventos .card.evento .info{
	display: flex;
	flex-direction: column;
}
.proximos-eventos .card.evento .info .tipo{
font-family: Roboto;
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: 160%;
letter-spacing: 0.5px;
text-transform: uppercase;
color: #1B2659;
margin-bottom: 10px;
}
.proximos-eventos .card.evento .info .titulo{
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.25px;
	color: #1B2659;
}
.proximos-eventos .card.evento .info .fecha{
	font-family: Roboto;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 133%;
	letter-spacing: 0.36px;
	color: #1B2659;
}
.proximos-eventos .card.evento .info .lugar{
	font-family: Roboto;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 133%;
	letter-spacing: 0.36px;
	color: #1B2659;
	margin-top: 10px;
}
.proximos-eventos-widget .button{
	display: flex;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	border-radius: 100px;
	border: 1px solid #364398;
	color: #364398;
	transition: all .3s;
}
.proximos-eventos-widget .button:hover,
.proximos-eventos-widget .button:focus{
	background: #364398;
	color: #FCFCFE;
}