.custom-btn {
	width: auto;
	height: 40px;
	padding: 10px 25px;
	border: 2px solid #F26B7A;
	font-weight: 500;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	text-align: center;	border-radius: 0px;
}
.cem-porcento{
	width: 100%;
}
.margin-top-5{
	margin-top: 5px;
}
.margin-bottom-5{
	margin-bottom: 5px;
}
.btn-vermelho-1 {
	background: #f47f8c;
	color: #fff;
	line-height: 42px;
	padding: 0;
	border: none;
	padding: 0px 25px 0px 25px;
}
.btn-vermelho-1:hover {
	background: transparent;
	color: #FFF;
	background: #F26B7A;
	box-shadow:
	-7px -7px 20px 0px #fff9,
	-4px -4px 5px 0px #fff9,
	7px 7px 20px 0px #F26B7A2,
	4px 4px 5px 0px #F26B7A1;
}
.btn-vermelho-1:before,
.btn-vermelho-1:after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	height:2px;
	width:0;
	background: #FFA5AF;
	transition:400ms ease all;
}
.btn-vermelho-1:after{
	right:inherit;
	top:inherit;
	left:0;
	bottom:0;
}
.btn-vermelho-1:hover:before,
.btn-vermelho-1:hover:after{
	width:100%;
	transition:800ms ease all;
}
.btn-azul-1 {
	background: #557CF2;
	color: #fff!important;
	line-height: 42px;
	padding: 0;
	border: none;
	padding: 0px 25px 0px 25px;
}
.btn-azul-1:hover {
	background: transparent;
	color: #FFF;
	background: #3956AF;
	box-shadow:
	-7px -7px 20px 0px #fff9,
	-4px -4px 5px 0px #fff9,
	7px 7px 20px 0px #F26B7A2,
	4px 4px 5px 0px #F26B7A1;
}
.btn-azul-1:before,
.btn-azul-1:after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	height:2px;
	width:0;
	background: #557CF2;
	transition:400ms ease all;
}
.btn-azul-1:after{
	right:inherit;
	top:inherit;
	left:0;
	bottom:0;
}
.btn-azul-1:hover:before,
.btn-azul-1:hover:after{
	width:100%;
	transition:800ms ease all;
}
.btn-verde-1 {
	background: #8bdb54;
	color: #fff;
	line-height: 42px;
	padding: 0;
	border: none;
	padding: 0px 25px 0px 25px;
}
.btn-verde-1:hover {
	background: transparent;
	color: #FFF;
	background: #3d5851;
	box-shadow:
	-7px -7px 20px 0px #fff9,
	-4px -4px 5px 0px #fff9,
	7px 7px 20px 0px #F26B7A2,
	4px 4px 5px 0px #F26B7A1;
}
.btn-verde-1:before,
.btn-verde-1:after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	height:2px;
	width:0;
	background: #8bdb54;
	transition:400ms ease all;
}
.btn-verde-1:after{
	right:inherit;
	top:inherit;
	left:0;
	bottom:0;
}
.btn-verde-1:hover:before,
.btn-verde-1:hover:after{
	width:100%;
	transition:800ms ease all;
}.btn-cinza-1 {	background: #9a9a9a;	color: #fff!important;	line-height: 42px;	padding: 0;	border: none;	padding: 0px 25px 0px 25px;}.btn-cinza-1:hover {	background: transparent;	color: #FFF;	background: #404040;	box-shadow:	-7px -7px 20px 0px #fff9,	-4px -4px 5px 0px #fff9,	7px 7px 20px 0px #F26B7A2,	4px 4px 5px 0px #F26B7A1;}.btn-cinza-1:before,.btn-cinza-1:after{	content:'';	position:absolute;	top:0;	right:0;	height:2px;	width:0;	background: #9a9a9a;	transition:400ms ease all;}.btn-cinza-1:after{	right:inherit;	top:inherit;	left:0;	bottom:0;}.btn-cinza-1:hover:before,.btn-cinza-1:hover:after{	width:100%;	transition:800ms ease all;}








.icones-sociais {
	display: inline-flex;
}
.icones-sociais .icon {
	position: relative;
	background-color: #ffffff;
	border-radius: 50%;
	padding: 15px;
	margin: 10px;
	width: 50px;
	height: 50px;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.icones-sociais .tooltip {
	position: absolute;
	top: 0;
	font-size: 14px;
	background-color: #ffffff;
	color: #ffffff;
	padding: 5px 8px;
	border-radius: 5px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.icones-sociais .tooltip::before {
	position: absolute;
	content: "";
	height: 8px;
	width: 8px;
	background-color: #ffffff;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%) rotate(45deg);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.icones-sociais .icon:hover .tooltip {
	top: -45px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.icones-sociais .icon:hover span,
.icones-sociais .icon:hover .tooltip {
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.icones-sociais .facebook:hover,
.icones-sociais .facebook:hover .tooltip,
.icones-sociais .facebook:hover .tooltip::before {
	background-color: #3b5999;
	color: #ffffff;
}
.icones-sociais .twitter:hover,
.icones-sociais .twitter:hover .tooltip,
.icones-sociais .twitter:hover .tooltip::before {
	background-color: #46c1f6;
	color: #ffffff;
}
.icones-sociais .instagram:hover,
.icones-sociais .instagram:hover .tooltip,
.icones-sociais .instagram:hover .tooltip::before {
	background-color: #e1306c;
	color: #ffffff;
}
.icones-sociais .github:hover,
.icones-sociais .github:hover .tooltip,
.icones-sociais .github:hover .tooltip::before {
	background-color: #333333;
	color: #ffffff;
}
.icones-sociais .youtube:hover,
.icones-sociais .youtube:hover .tooltip,
.icones-sociais .youtube:hover .tooltip::before {
	background-color: #de463b;
	color: #ffffff;
}
