body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1d1d1c; /* Cor de fundo mais escura */
    color: #fcce00;
    line-height: 1.6;
    overflow-x: hidden; /* Evita barra de rolagem horizontal */
}

/* Header */
header {
    background-color: #1d1d1c;
    color: #fcce00;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sutil sombra */
    position: relative;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no título */
}

header .instituicao {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .instituicao img {
    height: 100px;
    margin-right: 20px;
    border: #fcce00 solid 2px;
    border-radius: 50%;
    transition: transform 0.3s ease; /* Animação na imagem */
}

header .instituicao img:hover {
    transform: scale(1.1);
}

/* Navigation */
nav {
    position: absolute;
    top: 10px;
    left: 10px;
}

nav a {
    color: #fcce00;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative; /* Necessário para a barrinha */
    overflow: hidden; /* Esconde a barrinha que ultrapassa */
    transition: color 0.3s ease;
    padding: 15px;
}

nav a:hover {
    color: #fff;
}

/* Barrinha amarela */
nav a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fcce00;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%; /* Expande a barrinha ao passar o mouse */
}

nav svg {
    color: #fcce00;
    margin-right: 5px;
    transition: transform 0.3s ease; /* Adiciona transição para o zoom */
}

nav a:hover svg {
    transform: scale(1.2); /* Aumenta o tamanho do SVG em 20% */
}

/*nav a:hover svg { Removido o efeito de movimento
    transform: translateX(-5px);
}*/

/* Dados do Aluno */
section.dados-aluno {
    background-color: #2c2c2b; /* Cor mais escura */
    padding: 30px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra mais forte */
    max-width: 800px;
}

section.dados-aluno h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

section.dados-aluno ul {
    list-style: none;
    padding: 0;
}

section.dados-aluno li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Main Content */
main {
    background-color: #2c2c2b;
    padding: 30px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

/* Skill Bar */
.skill-bar {
    margin-bottom: 25px;
}

.skill-bar h4 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    text-align: left;
    color: #fff;
}

.progress {
    height: 12px;
    background: #444;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #fcce00, #e6b800); /* Gradiente na barra */
    width: 0%;
    transition: width 0.7s ease-in-out;
    border-radius: 6px;
}

/* Table */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border: none;
    font-size: 1em;
}

th {
    background-color: #444;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    border-bottom: 1px solid #555;
}

tr:last-child td {
    border-bottom: none;
}

/* Alternating row colors */
tbody tr:nth-child(odd) {
    background-color: #333;
}

tbody tr:hover {
    background-color: #444;
    transition: background-color 0.3s ease;
}

/* Resumo */
.resumo {
    background-color: #2c2c2b;
    padding: 30px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.resumo h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.resumo ul {
    list-style: none;
    padding: 0;
}

.resumo li {
    margin-bottom: 12px;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resumo li strong {
    font-weight: 600;
    margin-right: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #1d1d1c;
    border-top: 1px solid #444;
    color: #777;
    font-size: 0.9em;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    header h1 {
        font-size: 2em;
    }

    header .instituicao img {
        height: 70px;
        margin-right: 10px;
    }

    section.dados-aluno,
    main,
    .resumo {
        padding: 20px;
        margin: 20px auto;
    }

    section.dados-aluno h2,
    main h2,
    .resumo h2 {
        font-size: 1.7em;
    }

    table {
        font-size: 0.9em;
    }

    th,
    td {
        padding: 10px;
    }

    .resumo li {
        font-size: 1em;
        flex-direction: column;
        align-items: flex-start;
    }

    .resumo li strong {
        margin-bottom: 5px;
    }
}

/* Resumo */
.resumo {
    background-color: #2c2c2b;
    padding: 30px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.resumo h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.resumo ul {
    list-style: none;
    padding: 0;
}

.resumo li {
    margin-bottom: 12px;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px; /* Adiciona um pequeno preenchimento */
    border-radius: 5px; /* Adiciona um pequeno arredondamento */
}

/* Cores alternadas nas linhas do resumo */
.resumo li:nth-child(odd) {
    background-color: #333; /* Tom mais escuro */
}

.resumo li:nth-child(even) {
    background-color: #3a3a39; /* Tom ligeiramente mais claro */
}

.resumo li strong {
    font-weight: 600;
    margin-right: 10px;
}