body {
	background-color: #F6F8FB;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.05em;
	color: rgba(33, 37, 63, .8);
	overflow-x: hidden;
}
.container {
	padding-top: 50px;
	padding-bottom: 50px;
}
.header {
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	margin: 0 0 100px;
	z-index: 10;
}
.logo {
	background: url(../img/rafael-mantovani.svg) no-repeat center;
	background-size: contain;
	display: block;
	width: 270px;
	height: 90px;
	text-indent: -999px;
	overflow: hidden;
}
.btns-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 0 auto;
	position: relative;
}
.btn {
	background: #FFFFFF;
	box-shadow: 0 2px 2px -2px rgba(33, 37, 63, 0.3), 0 16px 20px -10px rgba(33, 37, 63, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	overflow: hidden;
	transition: .3s;
}
.btn img {
	display: block;
}
.btn:hover {
	transform: scale(1.2);
}
.rafael-img {
	display: block;
	margin: 0 auto 30px auto;
}
.info-container {
	margin: 0 25px 50px 0;
	position: relative;
	z-index: 5;
}
.info-name {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(33, 37, 63, 1);
	margin: 0 0 12px;
}
.info- {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 1.125rem;
	line-height: 1.2;
	color: #46B2E5;
}
.cv-lattes {
	display: inline-block;
	align-self: flex-start;
	border: 1px solid rgb(0, 183, 255);
	border-radius: 20px;
	font-size: 15px;
	letter-spacing: -.025rem;
	text-decoration: none;
	color: rgb(0, 183, 255);
	padding: 10px 20px;
	margin: 10px 0 0;
	transition: .3s;
}
.cv-lattes:hover {
	background-color: rgb(0, 183, 255);
	color: #fff;
}
.info-items {
	display: flex;
	flex-direction: column;
	font-weight: 500;
	color: rgba(33, 37, 63, 1);
	margin-top: 50px;
}
.info-item {
	background-repeat: no-repeat;
	background-position: 12px 10px;
	border-radius: .625rem;
	align-self: flex-start;
	line-height: 1.25;
	color: rgba(33, 37, 63, 1);
	text-decoration: none;
	padding: 12px 20px 12px 52px;
	position: relative;
	overflow: hidden;
}
.info-item::before {
	display: block;
	content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: red;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
	z-index: -1;	
}
.info-item:hover {
	color: rgba(33, 37, 63, 1);
}
.info-item:hover::before {
	transform: scaleX(1);
    transform-origin: bottom left;
}
.info-item-phone { background-image: url(../img/ico-phone.svg); }
.info-item-phone::before { background-color: rgba(253, 189, 46, .2); }
.info-item-whatsapp { background-image: url(../img/ico-whatsapp.svg); }
.info-item-whatsapp::before { background-color: rgba(79, 183, 77, .2); }
.info-item-email { background-image: url(../img/ico-email.svg); }
.info-item-email::before { background-color: rgba(237, 54, 98, .2); }
.info-item-site { background-image: url(../img/ico-site.svg); }
.info-item-site::before { background-color: rgba(69, 177, 228, .2); }
.info-item-instagram { background-image: url(../img/ico-instagram.svg); }
.info-item-instagram::before { background-color: rgba(102, 95, 169, .2); }
.info-item-address { background-image: url(../img/ico-pin.svg); }
.info-item-address::before { background-color: rgba(11, 181, 140, .2); }
.txt-o {
	color: rgba(33, 37, 63, .5);
}
.info-item {
	transition: all .1s ease;
}
.info-bio {
	position: relative;
}
.info-bio::before {
	box-shadow: inset 0 0 0 100px rgba(255, 190, 46, .2);
	border-radius: 50%;
	display: block;
	content: '';
	width: 500px;
	height: 500px;
	position: absolute;
	top: 0;
	right: 50%;
	transform: translate(50%, -50%);
	z-index: -1;
}

@media (max-width: 767px) {

	.container {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.header {
		margin: 0 0 30px;
	}
	.btns-container {
		margin: 30px auto 0 auto;
		justify-content: center;
	}
	.info-container {
		margin: 0 0 50px 0;
	}
	.info-bio::before {
		box-shadow: inset 0 0 0 80px rgba(255, 190, 46, .2);
		width: 320px;
		height: 320px;
	}


}