body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 14px;
	line-height: 1.5;
}

/* NAVBAR */
.navbar {
	background: #1a1a1a;
	color: #fff;
	padding: 16px 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar a {
	color: #fff;
	text-decoration: none;
	margin-left: 24px;
	font-size: 15px;
	transition: text-decoration 0.3s ease;
}

.navbar a:hover {
	text-decoration: underline;
}

.navbar .brand {
	font-size: 18px;
	font-weight: 400;
}

/* HEADER GENÉRICO */
.header {
	text-align: center;
	padding: 40px 20px;
	background: #eee;
}

/* PÁGINA INICIAL */
.profile-container {
	text-align: center;
	padding: 20px;
	background: #eee;
}

.profile-container img {
	width: 140px;
	height: 140px;
	border-radius: 100%;
	object-fit: cover;
    margin-top: 20px;
}

.profile-container h1 {
	margin: 16px 0 16px 0;
	font-weight: 400;
}

.profile-container h3 {
	margin: 8px 0;
	color: #555;
	font-weight: 300;
}

.profile-container .red {
	color: #811800;
}

/* ÍCONES */
.social-icons {
	margin-top: 16px;
}
.social-icons img {
    height: 24px;
	width: 24px;
	margin: 0 6px;
	transition: opacity 0.3s ease;
}

.social-icons img:hover {
	opacity: 0.7;
	cursor: pointer;
}

/* TEXTO DA BIO */
.text-block {
	padding: 40px 20px;
	max-width: 900px;
	margin: auto;
	line-height: 1.7;
}

/* FOOTER */
.footer {
    font-size: 14px;
	background: #333;
	color: white;
	text-align: center;
	padding: 4px;
	margin-top: 20px;
}

.footer a {
	color: #fff;
	text-decoration: none;
	transition: text-decoration 0.3s ease;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .social-icons {
    background-color: #eee;
    padding: 8px;
    width: fit-content;
    margin: 12px auto 12px auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social-icons img {
    height: 24px;
    width: 24px;
}

/* PUBLICAÇÕES */
.section-title {
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    padding: 40px 0 40px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}

.content {
    flex: 1;
	max-width: 900px;
	margin: auto;
	padding: 20px;
}

.content h2 {
    font-size: 22px;
    font-weight: 300;
    margin-top: 40px;
}

.year {
	font-size: 18px;
	margin-top: 20px;
    border-bottom: 1px solid #ccc; 
    padding-bottom: 8px;
}

.content li {
    padding-bottom: 16px;
}

/* PROJETOS */
.placeholder {
	text-align: center;
	margin: auto;
	color: #777;
}

.divider {
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}