:root{
  /* Troque aqui para usar uma imagem estática */
  --bg-image: none; /* ex: url("assets/bg.jpg") */

  --accent: #d8b26a;
  --text: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.78);
  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --max: 560px;
}

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

body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  display:flex;
  justify-content:center;

  /* Fundo premium preto/dourado */
  background:
    radial-gradient(900px 600px at 25% 10%, rgba(216,178,106,.22), transparent 60%),
    radial-gradient(900px 700px at 80% 18%, rgba(216,178,106,.12), transparent 62%),
    radial-gradient(1200px 900px at 50% 120%, rgba(255,255,255,.06), transparent 60%),
    repeating-linear-gradient(125deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.78)),
    var(--bg-image),
    #080808;

  background-size: auto, auto, auto, auto, auto, cover, auto;
  background-position: center, center, center, center, center, center, center;
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed;
}

.wrap{
  width: min(var(--max), calc(100% - 28px));
  margin: 26px 0 56px;
}

/* Top profile */
.profile{
  text-align:center;
  padding: 18px 16px 10px;
}

.avatar{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  margin: 0 auto 12px;
  overflow:hidden;
  background:#111;
}
.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  display:block;
}

.name{
  margin: 0;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 20px;
}

.email{
  margin: 8px 0 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.email a{ color: var(--muted); text-decoration:none; }
.email a:hover{ text-decoration:underline; }

/* Icon row */
.icon-row{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
  padding-bottom: 6px;
}
.icon-pill{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  box-shadow: 0 10px 20px rgba(0,0,0,.28);
  text-decoration:none;
  transition: transform .12s ease, background .12s ease;
}
.icon-pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.13); }
.icon-pill svg{
  width: 18px;
  height: 18px;
  display:block;
  fill: #fff;
  opacity:.95;
}

/* Buttons list */
.list{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 10px;
  padding: 0 4px;
}

.btn{
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 2px solid rgba(255,255,255,.35);
  box-shadow: 10px 10px 0 rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  padding: 0 14px;
  text-decoration:none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow:hidden;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }

.btn .left-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);
  margin-right: 12px;
  flex: 0 0 auto;
}
.btn .left-icon svg{
  width: 22px;
  height: 22px;
  display:block;
  fill: #fff;
  opacity:.95;
}

.btn .label{
  flex: 1 1 auto;
  text-align:center;
  font-size: 14px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.divider{
  margin: 18px 6px;
  border:0;
  height:2px;
  background: rgba(255,255,255,.25);
}

/* Media kit card */
.kit{
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  box-shadow: 10px 10px 0 rgba(0,0,0,.55);
  overflow:hidden;
  margin: 0 4px;
}
.kit-head{
  padding: 14px 14px 10px;
  text-align:center;
  font-weight: 900;
  letter-spacing:.10em;
  text-transform: uppercase;
}
.kit-cover{
  margin: 0 14px 12px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: #111;
  aspect-ratio: 16/10;
  position:relative;
}
.kit-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.05);
}
.kit-cover .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.70));
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding: 12px;
}
.kit-cover .tag{
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing:.10em;
  text-transform: uppercase;
  font-size: 12px;
}
.kit-body{
  padding: 0 14px 14px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.5;
}
.kit-cta{
  display:block;
  margin: 12px 0 2px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight: 900;
  text-align:center;
  padding: 12px 14px;
  border-radius: 14px;
}

.hint{
  text-align:center;
  color: rgba(255,255,255,.70);
  font-size: 11px;
  margin-top: 12px;
}

@media (max-width: 420px){
  .btn .label{ font-size: 13px; }
  .btn{ height: 54px; }
}