* { box-sizing: border-box; }

:root {
  --pink: #D10082;
  --pink-light: #FF4FB8;
  --pink-dark: #A50067;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #2a0018;
  background: #FFFFFF;
}

/* leve glow decorativo atrás do card, mantendo o fundo branco */
#lk-root::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(209,0,130,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(209,0,130,0.06) 0%, transparent 60%);
}

/* ── Layout ── */
#lk-root { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }
.lk-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; padding: 2.25rem 1.25rem 2rem; width: 100%; }

/* ── Card rosa chapado com leve brilho ── */
.lk-card {
  width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 1.4rem;
  padding: 2.25rem 1.5rem 2rem;
  position: relative; overflow: hidden;
  background: var(--pink);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(209,0,130,.28), 0 4px 14px rgba(209,0,130,.18);
}
.lk-card::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,.10) 100%);
}

/* ── Perfil ── */
.lk-profile-wrap { position: relative; padding: 0 .5rem; z-index: 1; }
.lk-profile { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; animation: lk-fade-up .65s ease .16s both; }

/* ── Avatar (logo) ── */
.lk-avatar-wrap { width: 96px; height: 96px; border-radius: 50%; margin-bottom: .5rem; }
.lk-avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover; display: block;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* ── Texto do perfil ── */
.lk-name {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; line-height: 1.15; margin: 0;
  color: #fff;
}
.lk-title {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--pink);
  background: #fff;
  padding: .32rem 1rem;
  border-radius: 99px;
  margin-top: .2rem;
}

/* ── Separador ── */
.lk-sep {
  position: relative; z-index: 1;
  width: 100%; height: 1px;
  background: rgba(255,255,255,.35);
}

/* ── Botões de link (brancos, texto rosa) ── */
.lk-nav { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .75rem; }

.lk-btn {
  display: flex; align-items: center; gap: .875rem; padding: .95rem 1.125rem;
  background: #fff;
  border-radius: 18px; color: var(--pink); text-decoration: none;
  min-height: 70px; overflow: hidden; position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: box-shadow .22s ease, transform .22s ease;
}

.lk-btn:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transform: translateY(-2px);
}

.lk-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: #fff;
}
.lk-icon svg { width: 20px; height: 20px; }

.lk-content { flex: 1; display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.lk-label { font-size: .96rem; font-weight: 600; color: var(--pink-dark); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lk-desc  { font-size: .74rem; color: rgba(165,0,103,.65); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.lk-arrow { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 16px; height: 16px; opacity: .5; transform: translateX(-4px); transition: opacity .22s, transform .22s; color: var(--pink); }
.lk-arrow svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lk-btn:hover .lk-arrow { opacity: 1; transform: translateX(2px); }

/* ── Rodapé ── */
.lk-footer {
  display: flex; align-items: center; gap: .3rem; justify-content: center;
  font-size: .78rem; font-weight: 500; color: var(--pink);
  text-decoration: none;
}
.lk-footer:hover { text-decoration: underline; }
.lk-heart { color: var(--pink); }

/* ── Keyframes ── */
@keyframes lk-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Acessibilidade ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 380px) {
  .lk-wrap { padding-left: 1rem; padding-right: 1rem; }
  .lk-card { padding: 1.75rem 1.1rem 1.5rem; }
  .lk-btn  { min-height: 64px; }
}
