* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Poppins', Arial, sans-serif;
}

span {
	display: flex;
	text-align: center;
	justify-content: center;
}

body {
	background: linear-gradient(160deg, #1a1428 0%, #0d1a1a 100%);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	padding: 48px 16px;
	font-family: Arial, sans-serif;
}

.pagina {
	width: 100%;
	max-width: 420px;
}

.perfil {
	text-align: center;
	padding: 20px;
	margin-bottom: 8px;
}

.avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f0c060, #e07a5f);
	border: 3px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin: 0 auto 16px;
	line-height: 1;
}

.avatar-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.nombre {
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
	text-shadow: 0 2px 10px rgba(240, 192, 96, 0.4);
}

.descripcion {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.link-btn {
	display: flex;
	text-align: center;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-radius: 12px;
	text-decoration: none; /* quita el subrayado */
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.92rem;
}

.link-icono {
	font-size: 1.2rem;
	width: 28px;
	text-align: center;
}

.link-texto {
	flex: 1;
	text-align: center;
}

.facebook {
	border-color: rgba(66, 103, 178, 0.4);
	color: #4267b2;
}

.instagram {
	border-color: rgba(200, 90, 200, 0.4);
	color: #dd88ff;
}

.github {
	border-color: rgba(126, 203, 196, 0.4);
	color: #7ecbc4;
}

.github-icon {
	fill: #7ecbc4;
}

.facebook-icon {
	fill: #4267b2;
}

.instagram-icon {
	fill: #dd88ff;
}

.tiktok-icon {
	fill: #fe2c55;
}

.tiktok {
	border-color: #fe2c55;
	color: #fe2c55;
}

.link-btn:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-2px); /* sube 2px */
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.link-btn {
	transition: all 0.4s ease;
}
