:root {
    --primary-color: #0056b3; /* Um azul sóbrio, corporativo */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Header */
.profile-header h1 { margin: 0; font-size: 2.5rem; color: #2c3e50; }
.profile-header h2 { margin: 5px 0 20px; font-weight: 400; color: var(--primary-color); }

.contact-info a, .contact-info span {
    margin-right: 15px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}
.contact-info a:hover { color: var(--primary-color); }

/* Sections */
.section { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.section:last-child { border-bottom: none; }
.section-title {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 15px;
}

/* Tags de Skills */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.skill-category h4 { margin: 0 0 10px; font-size: 0.95rem; }
.tags span {
    display: inline-block;
    background: #eef2f7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 0 5px 5px 0;
    font-weight: 600;
    color: #444;
}

/* Jobs */
.job-item { margin-bottom: 20px; }
.job-header { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; }
.job-header h4 { margin: 0; font-size: 1.1rem; }
.job-header .company { font-weight: 600; color: var(--primary-color); margin-right: auto; margin-left: 10px; }
.job-header .date { font-size: 0.85rem; color: #888; }
.job-item ul { margin-top: 8px; padding-left: 20px; }
.job-item li { margin-bottom: 5px; }

/* Mobile */
@media (max-width: 600px) {
    .container { padding: 20px; }
    .job-header { flex-direction: column; }
    .job-header .company { margin-left: 0; }
}