@charset "utf-8";
/* CSS Document */
.socialmedia {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:1.2rem;
}

.socialmedia a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3rem;
	width: 3rem;
	border-radius: 50%;
	color:var(--blanco);
}

.socialmedia a:hover {
	text-decoration: none;
	color:var(--blanco);
}

.socialmedia a.fb {
	background-color: var(--fb);
	transition: all 0.3s;
}

.socialmedia a.insta {
	background-color: var(--insta);
	transition: all 0.3s;
}

.socialmedia a.wsp {
	background-color: var(--wsp);
	transition: all 0.3s;
}

.socialmedia a.fb:hover,.socialmedia a.insta:hover, .socialmedia a.wsp:hover  {
	filter: brightness(1.25);
	transition: all 0.3s;
}

.whatsapp_bar{
	background-color: var(--wsp);
	position: fixed;
	width: 100%;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color:var(--blanco);
	height: 3rem;
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s;
}

.whatsapp_bar:hover{
	filter: brightness(1.25);
	transition: all 0.3s;
}


.contenedor-recaptcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}