/* --- CONFIGURAÇÕES GERAIS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* --- CABEÇALHO --- */
.header {
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.header-info h1 {
    font-size: 2.5rem;
    color: #1a237e; /* Azul escuro */
    margin-bottom: 5px;
}

.header-info h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
}

.contact-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px; /* Espaçamento vertical e horizontal */
}

.contact-links a, .contact-links span {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #1a237e; /* Azul escuro no hover */
}

.contact-links i {
    margin-right: 8px;
    color: #555;
}

/* --- SEÇÕES PADRÃO --- */
.section {
    margin-bottom: 30px;
}

.section h3 {
    font-size: 1.5rem;
    color: #1a237e;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section p {
    margin-bottom: 10px;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section ul li {
    margin-bottom: 8px;
}

/* --- PROJETOS --- */
.project-item {
    margin-bottom: 20px;
}

.project-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.project-item p {
    margin-bottom: 0;
}

.project-item a {
    color: #007bff; /* Azul padrão de link */
    font-weight: bold;
    text-decoration: none;
}

.project-item a:hover {
    text-decoration: underline;
}

/* --- ESTILOS PARA AS NOVAS SEÇÕES --- */
.job-item, .education-item {
    margin-bottom: 20px;
}

.job-details {
    font-style: italic;
    color: #666;
    margin-bottom: 5px !important;
}