/* ================================================================
   JULIA D'AMARIO — BEACONS (link na bio)
   Fundo: julia-sobre.jpg escurecido · foco nos links.
================================================================ */
@import url('tokens.css');

* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--jd-bg);
  background: #2a1d15;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ---------- Fundo escurecido ---------- */
.bg {
  position: fixed; inset: 0; z-index: 0;
  background: url('/assets/img/julia-sobre.jpg') center 28% / cover no-repeat;
}
.bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(34,23,17,0.74) 0%, rgba(34,23,17,0.82) 45%, rgba(28,19,14,0.92) 100%);
}

/* ---------- Conteúdo ---------- */
.wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px;
  margin: 0 auto; flex: 1;
  padding: 56px 24px 40px;
  display: flex; flex-direction: column; align-items: center;
}

/* ---------- Perfil ---------- */
.avatar {
  width: 132px; height: 132px; border-radius: 999px;
  padding: 5px; background: transparent;
  border: 1.5px solid var(--jd-accent);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }

.name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--jd-bg); margin: 22px 0 0; text-align: center;
}
.name .dot { color: var(--jd-accent); }
.role {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--jd-accent); margin-top: 12px;
}
.loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: rgba(250,246,241,0.82); margin-top: 10px;
}
.loc svg { width: 15px; height: 15px; stroke: var(--jd-accent); }

.divider { width: 54px; height: 1px; background: rgba(201,168,118,0.5); border: 0; margin: 28px 0 4px; }

/* ---------- Links ---------- */
.links { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }

.link {
  display: flex; align-items: center; gap: 16px;
  width: 100%; padding: 18px 20px;
  border-radius: var(--r-lg);
  background: rgba(250,246,241,0.96);
  color: var(--jd-primary);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.link:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.3); }
.link .ico { flex-shrink: 0; width: 24px; height: 24px; color: var(--jd-accent); display: flex; }
.link .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.link .txt { flex: 1; min-width: 0; }
.link .lt { font-family: var(--font-body); font-weight: 600; font-size: 15.5px; letter-spacing: 0.01em; line-height: 1.25; color: var(--jd-primary); }
.link .ls { display: block; font-size: 12.5px; color: var(--jd-text-muted); margin-top: 3px; line-height: 1.35; }
.link .chev { flex-shrink: 0; width: 18px; height: 18px; color: var(--jd-line); transition: transform var(--dur-base) var(--ease-out); }
.link .chev svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.link:hover .chev { transform: translateX(3px); color: var(--jd-accent); }

/* Link destaque (CTA p/ o site) */
.link.feature {
  background: linear-gradient(160deg, var(--jd-primary) 0%, var(--jd-primary-deep) 100%);
  color: var(--jd-bg);
}
.link.feature .lt { color: var(--jd-bg); }
.link.feature .ls { color: rgba(250,246,241,0.78); }
.link.feature .ico { color: var(--jd-accent); }
.link.feature .chev { color: rgba(201,168,118,0.85); }

/* ---------- Social ---------- */
.social { display: flex; gap: 18px; margin-top: 30px; }
.social a {
  width: 46px; height: 46px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,118,0.45);
  color: var(--jd-bg);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.social a:hover { background: var(--jd-accent); color: var(--jd-primary); transform: translateY(-2px); }
.social svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social svg.brand { fill: currentColor; stroke: none; }

/* ---------- Footer ---------- */
.foot {
  position: relative; z-index: 1;
  text-align: center; padding: 8px 24px 30px;
  font-size: 11px; letter-spacing: 0.04em; color: rgba(250,246,241,0.55);
}

@media (max-width: 380px) {
  .name { font-size: 28px; }
  .link { padding: 16px 16px; gap: 13px; }
}
