:root{
  --bg:#0f0f12;           /* fundo escuro elegante */
  --card:#14141a;         /* card */
  --muted:#9aa0a6;        /* texto secundário */
  --text:#f5f5f7;         /* texto principal */
  --brand:#7c3aed;        /* roxo */
  --brand-2:#22d3ee;      /* ciano para detalhes */
  --ring: 0 0 0 3px rgba(124,58,237,.25);
  --social:#a78bfa;       /* cor base dos ícones do rodapé */
}

*{ box-sizing:border-box }
html,body{ height:100% }

body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124,58,237,.25), transparent 60%),
    radial-gradient(900px 600px at 110% 20%, rgba(34,211,238,.18), transparent 60%),
    var(--bg);
  color:var(--text);
}

.wrap{ max-width:640px; margin:0 auto; padding:28px 18px 48px }

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

header{ display:flex; align-items:center; gap:16px; }
.avatar{ width:72px; height:72px; border-radius:999px; border:2px solid rgba(255,255,255,.15); overflow:hidden }
.avatar img{ width:100%; height:100%; object-fit:cover }

.title{ line-height:1.1; margin:0 }
.title strong{ font-weight:800; letter-spacing:.3px }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; color:#a78bfa;
  background: rgba(124,58,237,.12);
  border:1px solid rgba(124,58,237,.25);
  padding:6px 10px; border-radius:999px; margin-top:6px;
}

.bio{ margin:12px 0 4px; color:var(--muted) }

.links{ display:flex; flex-direction:column; gap:14px; margin-top:18px }

.btn{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  width:100%; text-decoration:none; color:var(--text); background:var(--card);
  border:1px solid rgba(255,255,255,.08); padding:16px 18px; border-radius:16px;
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-2px); border-color: rgba(124,58,237,.4) }
.btn:focus{ outline:none; box-shadow:var(--ring) }
.btn .left{ display:flex; align-items:center; gap:14px }
.icon{ width:22px; height:22px; opacity:.92 }
.tag{ font-size:12px; color:#c4b5fd }

.grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px; margin-top:14px;
}
.chip{
  padding:10px 12px; border-radius:999px;
  background:rgba(124,58,237,.12); color:#c4b5fd;
  border:1px solid rgba(124,58,237,.25); text-align:center;
}

/* ===== Rodapé ===== */
footer{ margin-top:22px; color:var(--muted); font-size:12px; text-align:center }
.sm{
  display:flex; justify-content:center; gap:12px; margin-top:10px
}
/* botões das redes */
.sm a{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  border:1px solid rgba(124,58,237,.35);
  padding:8px; border-radius:999px;
  background: rgba(124,58,237,.08);
  color: var(--social);
  transition: transform .08s ease, border-color .2s ease, box-shadow .2s ease;
}
/* svg herda a cor do link */
.sm svg{ width:22px; height:22px; fill: currentColor }
/* não muda após visitado */
.sm a:visited{ color: var(--social) }
/* hover/focus elegante */
.sm a:hover,
.sm a:focus{
  transform: translateY(-1px);
  border-color: rgba(124,58,237,.6);
  box-shadow: 0 6px 16px rgba(124,58,237,.25);
  outline: none;
}

/* texto do rodapé */
.foot{
  margin-top:10px;
  color: var(--muted);
  font-size:12px;
  text-align:center;
  opacity:.9;
}

@media (min-width:700px){
  .wrap{ padding-top:48px }
}
