@charset "UTF-8";
/* CSS Document */
.circulos {
	display: inline-block;
	font-size: 0px;
	cursor: pointer;
	margin: 25px 60px;
	width: 185px;
	height: 185px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
}

.circulos:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
}

.circulos:before {
	font-family: 'Raleway', sans-serif;
	speak: none;
	font-size: 14px;
	line-height: 190px;
	font-style: normal;
	font-weight: 700;
	font-variant: normal;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
}
.ser-casamento:before {
	content: "CASAMENTO";
}

.ser-batizado:before {
	content: "BATIZADOS";
}
.ser-comunhoes:before {
	content: "COMUNHÕES";
}
.ser-reunioes:before {
	content: "REUNIÕES";
}
.ser-fashion:before {
	content: "FASHION-STORE";
}
.ser-outros:before {
	content: "OUTROS";
}
/* Effect 3 */
.efeito-icon1 .circulos {
	box-shadow: 0 0 0 1px #fff;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}
.efeito-icon1 .circulos:after {
	top: -2px;
	left: -2px;
	padding: 2px;
	z-index: -1;
	background: #fff;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
	-moz-transition: -moz-transform 0.2s, opacity 0.3s;
	transition: transform 0.2s, opacity 0.3s;
}
/* Effect 3b */
.efeito-icon2 .circulos {
	color: #fff;
}
.efeito-icon2 .circulos:hover {
	color: #000;
}
.efeito-icon2 .circulos:after {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	opacity: 0;
}
.efeito-icon2 .circulos:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

