:root{
    --bg:#f6f8fb;
    --card:#ffffff;
    --accent:#0b76d1;
    --text:#243040;
    --muted:#6b7b8a;
    --radius:10px;
    --max-w:900px;
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
*{box-sizing:border-box}
body{
    margin:0;
    background:linear-gradient(180deg, var(--bg), #eef4fa);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    padding:32px;
    display:flex;
    justify-content:center;
    font-size:15px;
}
.container{
    width:100%;
    max-width:var(--max-w);
    background:var(--card);
    border-radius:var(--radius);
    box-shadow:0 6px 30px rgba(18, 38, 63, 0.08);
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr;
}
header{
    padding:22px 28px;
    background:linear-gradient(90deg, rgba(11,118,209,0.06), rgba(11,118,209,0.03));
    border-bottom:1px solid #e6eef7;
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:space-between;
}
.head-left{
    display:flex;
    gap:18px;
    align-items:center;
}
.avatar{
            width:72px;
            height:72px;
            border-radius:12px;
            background:linear-gradient(135deg,var(--accent), #3aa0e8); /* fallback / background if image missing */
            display:block;
            overflow:hidden; /* ensures image is clipped to rounded corners */
            flex-shrink:0;
        }

.avatar img { /* if inner img is used, ensure it covers */
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
        }
h1{margin:0;font-size:20px}
.contact{color:var(--muted);font-size:13px;margin-top:6px}
main{
    display:grid;
    grid-template-columns: 1fr;
    gap:24px;
    padding:28px;
}
@media(min-width:820px){
    main{grid-template-columns: 320px 1fr}
}
aside{
    padding:18px;
    border-radius:8px;
    background:linear-gradient(180deg,#fbfdff,#ffffff);
    border:1px solid #eef6fc;
    height:fit-content;
}
section.card{
    padding:18px;
    border-radius:8px;
    background:linear-gradient(180deg,#ffffff,#fbfdff);
    border:1px solid #eef6fc;
}
h2{margin:0 0 10px 0;font-size:16px;color:var(--accent)}
.info-list, .qual-list, .add-list{
    list-style:none;
    padding:0;
    margin:0;
    font-size:14px;
    color:var(--muted);
}
/* Aumenta espaçamento entre itens e melhora legibilidade */
.info-list li,
.qual-list li,
.add-list li{
    margin-bottom:12px;
    padding-left:6px;
    line-height:1.6;
}
.objective{font-size:14px;color:var(--text);margin-top:6px}
.edu, .exp{margin-bottom:14px}
.job-title{font-weight:600;color:#213445}
.job-meta{color:var(--muted);font-size:13px;margin-bottom:6px}
.job-desc{color:var(--text);font-size:14px;line-height:1.45}
footer{
    padding:14px 22px;
    border-top:1px solid #eef3f8;
    text-align:center;
    font-size:13px;
    color:var(--muted);
    background:linear-gradient(180deg,#ffffff, #fbfcff);
}
a{color:var(--accent);text-decoration:none}
.badge{display:inline-block;background:#eef6ff;color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:600;font-size:13px}

/* Objetivos: chips compactos, alinhamento horizontal com quebra automática */
.objective-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.objective-list li{margin:0}
.objective-chip{
    background:#fcfdff; /* fundo bem próximo de branco */
    color:#000;         /* texto em preto */
    padding:7px 12px;
    border-radius:999px;
    font-weight:400;    /* sem negrito */
    font-size:13px;
    border:1px solid rgba(2,6,23,0.04); /* borda sutil para contraste */
    box-shadow:none;
}

/* GitHub repo link (ícone + texto) no header */
.repo-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
    font-size:13px;
    color:var(--muted);
    text-decoration:none;
    padding:6px 8px;
    border-radius:8px;
    transition:background .15s, color .15s;
}
.repo-link svg{display:block;width:18px;height:18px;color:var(--muted)}
.repo-link:hover{background:rgba(11,118,209,0.06);color:var(--accent)}
.repo-text{font-size:13px}
