*{
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

:root{
  --bg1:#eef3f8;
  --bg2:#e6edf5;

  --text:#0a2239;
  --muted:#5e6e82;

  --stroke:rgba(10,34,57,.10);
  --shadow:0 8px 22px rgba(10,34,57,.08);

  --card:#ffffff;
  --cardSoft:#f7f9fb;

  --disabled:#e4e9ef;

  --pillBg:#f1f5f9;
  --pillText:#3a4a5e;
  --pillIcon:#0a66c2;
}

html{
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

body{
  margin:0;
  min-height:100dvh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background: transparent;
  display:flex;
  justify-content:center;
  padding:24px;
}

.wrap{ width:min(720px,100%); }

.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.top{
  padding:26px 22px 18px;
  display:flex;
  gap:18px;
  align-items:center;
  position:relative;
  padding-right:22px;
}

.content{ padding: 0 22px 22px; }

.footer{
  border-top:1px solid var(--stroke);
  padding:14px 22px;
  text-align:center;
  font-size:12.5px;
  color:var(--muted);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.footer a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer a:visited{
  color: var(--text);
}

.footer a:hover{
  opacity: 0.75;
}

.who h1{
  margin:0;
  font-size:22px;
  font-weight:600;
  letter-spacing:-0.2px;
  line-height:1.2;
  user-select:none;
  -webkit-user-select: none;
}
.who p{
  margin:4px 0 0;
  font-size:13.5px;
  color:var(--muted);
  line-height:1.35;
  user-select: none;
  -webkit-user-select: none;
}

.verified{
  font-size:13px;
  color:#0a66c2;
  margin-left:1px;
  vertical-align:+5px;
}

.last{
  white-space:nowrap;
}

.share-btn{
  position:absolute;
  top:18px;
  right:18px;
  width:30px;
  height:30px;
  border-radius:10px;
  border:1px solid var(--stroke);
  background:var(--card);
  box-shadow: 0 1px 2px rgba(10,34,57,.04);
  display:grid;
  place-items:center;
  cursor:pointer;
  color:var(--text);
  transition:background .12s ease, transform .12s ease, box-shadow .12s ease;
}

.share-btn i{
  font-size:15px;
  line-height:1;
}

.share-btn:focus-visible{
  outline:2px solid #0a66c2;
  outline-offset:2px;
}

.avatar{
  width:76px;
  height:76px;
  border-radius:50%;
  border:1px solid var(--stroke);
  background:linear-gradient(135deg, rgba(10,102,194,.12), rgba(120,160,210,.10));
  display:grid;
  place-items:center;
  overflow:hidden;
  flex-shrink:0;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
  user-select:none;
  -webkit-user-select: none;
  display:block;
}

.links{
  display:grid;
  gap:12px;
  padding-top:30px;
}

.btn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid var(--stroke);
  box-shadow: 0 1px 2px rgba(10,34,57,.04);
  background:var(--card);
  color:var(--text);
  text-decoration:none;
  transition: background .12s ease, transform .12s ease, box-shadow .12s ease;
  user-select: none;
  -webkit-user-select: none;
}

.btn:focus-visible{
  outline:2px solid #0a66c2;
  outline-offset:2px;
}

.btn.disabled{
  background:var(--disabled);
  color:#8a97a8;
  border-color: rgba(0,0,0,.05);
  pointer-events:none;
}

.left{
  display:flex;
  align-items:center;
  gap:12px;
}

.icon{
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid var(--stroke);
  display:grid;
  place-items:center;
  font-size:18px;
  background:#f1f5f9;
}

.icon.linkedin{ background: rgba(10,102,194,.12); color: rgb(10,102,194); }
.icon.scholar{ background: rgba(66,133,244,.12); color: rgb(66,133,244); }
.icon.instagram{ background: rgba(225,48,108,.12); color: rgb(225,48,108); }
.icon.lattes{ background: rgba(0,97,168,.12); color: rgb(0,97,168); }
.icon.orcid{ background: rgba(166,206,57,.15); color: rgb(166,206,57); }
.icon.wos{ background: rgba(92,45,145,.15); color: rgb(92,45,145); }
.icon.scopus{ background: rgba(243,108,33,.15); color: rgb(243,108,33); }
.icon.researcher{ background: rgba(0,204,187,.15); color: rgb(0,204,187); }
.icon.cremesp{ background: rgba(34,197,94,.12); color: rgb(34,197,94); }
.icon.email{ background: rgb(220,225,232); color: rgb(70,76,84);}
.icon.website{ background: rgba(0,0,0,.04); color: rgb(110,116,124);}

.label strong{
  display:block;
  font-size:14.5px;
  font-weight:600;
}

.label span{
  font-size:12.5px;
  color:var(--muted);
}

@media(min-width:680px){
  .links{ grid-template-columns:1fr 1fr; }
}

@media (hover:hover){
  .btn:hover,
  .share-btn:hover{
    background:var(--cardSoft);
    transform:translateY(-1px);
    box-shadow: 0 4px 10px rgba(10,34,57,.06);
  }
}