:root {
	--bg: #030303;
	--card-bg: rgba(255, 255, 255, 0.02);
	--border: rgba(255, 255, 255, 0.08);
	--accent: #ffffff;
	--text-muted: #888888;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg);
	color: var(--accent);
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
	/* Mantém a estrutura fixa sem scroll */
}

#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Navbar alinhada à direita como preferes */
.navbar {
	display: flex;
	justify-content: flex-end;
	padding: 50px 0;
	align-items: center;
}

.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: 0.3s;
}

.nav-links a:hover {
	color: #fff;
}

/* Secção Hero com mais espaço */
.hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* Alinhado ao topo para controlar o espaço */
	padding-top: 20px;
}

.profile-pic {
	width: 110px;
	height: auto;
	margin-bottom: 45px;
	/* ESPAÇO AUMENTADO ENTRE LOGO E TÍTULO */
	border-radius: 50%;
	border: 1px solid var(--border);
}

h1 {
	font-size: clamp(3.5rem, 10vw, 5.5rem);
	line-height: 0.85;
	/* Vibe original do teu h1 */
	letter-spacing: -4px;
	margin: 0;
	font-weight: 800;
}

.subtitle {
	font-size: 1.3rem;
	color: #777;
	margin-top: 25px;
	font-weight: 400;
}

.bio {
	font-size: 1.2rem;
	max-width: 600px;
	color: #999;
	margin: 35px 0;
	line-height: 1.4;
}

/* Botão de Download Profissional */
.contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--accent);
	color: #000 !important;
	padding: 18px 32px;
	border-radius: 100px;
	/* Arredondado como o teu original */
	font-weight: 700;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-btn:hover {
	transform: scale(1.05);
	background: #f0f0f0;
}

.social-icons {
	margin-top: 50px;
	display: flex;
	gap: 30px;
}

.social-icons a {
	font-size: 2.2rem;
	color: #fff;
	opacity: 0.3;
	transition: 0.4s;
}

.social-icons a:hover {
	opacity: 1;
	transform: scale(1.1);
}

@media (max-width: 850px) {
	h1 {
		font-size: 4rem;
	}

	body {
		overflow: auto;
	}
}
