/* style.css - Design Acadêmico Premium */
body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #2c3e50; margin: 0; background-color: #f0f2f5; }
.container { max-width: 1050px; margin: 20px auto; padding: 40px; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-radius: 8px; }
nav { background: #002147; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
nav ul { list-style: none; padding: 0; margin: 0; text-align: center; }
nav ul li { display: inline; margin: 0 18px; }
nav ul li a { color: #fff; text-decoration: none; font-size: 0.85em; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
nav ul li a:hover { color: #00aaff; }

/* Header e Foto */
.profile-section { display: flex; gap: 40px; align-items: center; border-bottom: 2px solid #eee; padding-bottom: 30px; margin-bottom: 30px; }
.profile-photo { width: 180px; height: 180px; background: #ddd; border-radius: 50%; border: 4px solid #002147; object-fit: cover; }
.profile-text h1 { margin: 0; color: #002147; font-size: 2.4em; }
.linkedin-btn { display: inline-block; margin-top: 10px; background: #0077b5; color: white; padding: 8px 15px; border-radius: 4px; text-decoration: none; font-size: 0.9em; font-weight: bold; }

/* Listagens */
h2 { color: #002147; border-left: 6px solid #002147; padding-left: 15px; margin-top: 40px; text-transform: uppercase; font-size: 1.3em; }
.item-lista { margin-bottom: 25px; padding-left: 20px; border-left: 1px solid #eee; }
.data-label { font-weight: bold; color: #0056b3; font-size: 0.9em; display: block; }
.tag { font-size: 0.7em; padding: 3px 8px; border-radius: 10px; font-weight: bold; text-transform: uppercase; float: right; }
.ativo { background: #e3f2fd; color: #0d47a1; }
.concluido { background: #f5f5f5; color: #616161; }
footer { text-align: center; padding: 30px; color: #7f8c8d; font-size: 0.8em; }

/* Identidade Visual Acadêmica - Estilo Clean/UFF */

:root {
    --primary-color: #002147; /* Azul Marinho Acadêmico */
    --secondary-color: #0056b3;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
}

body {
    font-family: "Georgia", serif; /* Serifada para o corpo */
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

h1, h2, h3, nav a {
    font-family: "Segoe UI", Arial, sans-serif; /* Sem-serifas para títulos */
    color: var(--primary-color);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Navegação */
nav {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #cbdcf0;
}

/* Projetos */
.projeto-item {
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.projeto-item:last-child {
    border-bottom: none;
}

.projeto-meta {
    margin-bottom: 10px;
}

.status {
    font-size: 0.75em;
    text-transform: uppercase;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 10px;
}

.em-andamento { background: #e3f2fd; color: #0d47a1; }
.desativado { background: #f5f5f5; color: #616161; }

.periodo {
    font-size: 0.9em;
    color: #666;
    font-weight: bold;
}

.projeto-item h3 {
    margin: 10px 0;
    font-size: 1.4em;
    line-height: 1.3;
}

.descricao {
    font-size: 1em;
    text-align: justify;
    margin-bottom: 10px;
}

.equipe {
    font-size: 0.85em;
    color: #555;
    font-style: italic;
}

/* Rodapé */
footer {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8em;
    color: #888;
}

.instituicao-section { margin-bottom: 40px; }
.subtitulo { font-weight: 600; color: #34495e; margin-top: -10px; }
.lista-atividades { list-style-type: square; margin-left: 20px; font-size: 0.95em; }
.ensino-bloco { background: #f9f9f9; padding: 15px; border-radius: 4px; margin-top: 10px; }
.disciplinas { font-style: italic; font-size: 0.9em; color: #555; }
.divisor { border: 0; border-top: 1px solid #eee; margin: 40px 0; }
