@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

img { max-width:100%; }
a { text-decoration: none; }

body {
	width: 100%;
	height: 100vh;
	background: linear-gradient(to bottom, #809cde, #567bcd);
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	font-family: 'Nunito', sans-serif;
}

.box {
	margin-top: 70px;
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, .15);
	max-width: 450px;
	width: 95%;
}

.box__perfil {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.perfil__imagen {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
}

.perfil__nombre {
	font-size: 24px;
	color: #353535;
	margin-top: 15px;
}

.perfil__titulo {
	font-size: 16px;
	color: #555;
	margin-bottom: 30px;
}

.box__social {
	display: flex;
	list-style: none;
	gap: 7px;
}

.box__social > li {
	background: #000;
	padding: 5px 15px;
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
}

.box__social > li:hover {
	opacity: 0.9;
	transition: .3s;
	transform: scale(1.05);
}


.box__social > li.instagram { background: #CC5454; }
.box__social > li.twitter { background: #33C5D9; }
.box__social > li.correo { background: #1589A3; }

.box__social > li a,
.box__social > li i {
	color: inherit;
}

.box__social > li a { font-weight: 600; }

.proyecto {
	margin: auto;
	max-width: 327px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #c2c2c2;
	padding: 10px 15px;
	border-radius: 6px;
}

.proyecto__contenido {
	display: flex;
	gap: 10px;
	align-items: center;
}

.proyecto__logo {
	width: 50px;
	height: 50px;
	background: #A93DEB;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
}

.proyecto__info > h4 {
	color: #353535;
	font-size: 16px;
}

.proyecto__info > p {
	color: #555;
	font-size: 12px;
}

.proyecto__cta {
	font-size: 24px;
	color: #353535;
}

/* Proyecto Feebo */

.proyecto--feebo {
    margin-top: 5px;
}

.proyecto--feebo .proyecto__logo{
    background: linear-gradient(to right, #BB36E7, #C0138F);
    font-size: 22px;
}



@media(max-width: 480px) {
    .box__social li span {
        display: none;
    }
}