/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
  --black:        #0a0a0a;
  --dark:         #1a1a1a;
  --dark-card:    #131313;
  --gold:         #C9A84C;
  --gold-light:   #e0c06a;
  --gold-dim:     rgba(201, 168, 76, 0.15);
  --gold-border:  rgba(201, 168, 76, 0.25);
  --white:        #ffffff;
  --muted:        #888888;
  --card-bg:      rgba(255, 255, 255, 0.04);
  --radius:       12px;
  --ease:         0.22s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: linear-gradient(160deg, var(--black) 0%, #111111 55%, #0d0d0d 100%);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 16px 36px;
}

/* ── Profile ─────────────────────────────────────────────────────────────── */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  text-align: center;
}

.profile__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 0 6px var(--gold-dim), 0 8px 32px rgba(0,0,0,0.6);
  display: block;
}

.profile__placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--dark);
  box-shadow: 0 0 0 6px var(--gold-dim), 0 8px 32px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}

.profile__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
}

.profile__subtitle {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}

/* ── Link Cards ──────────────────────────────────────────────────────────── */
.links {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  background: var(--card-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.link-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.07), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.link-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.link-card:hover::after { opacity: 1; }

.link-card--featured {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.06);
}

.link-card--featured .link-card__label { color: var(--gold); }

.link-card--featured::before {
  content: 'LANÇAMENTO';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
}

.link-card__icon {
  font-size: 1.45rem;
  flex-shrink: 0;
  width: 34px;
  text-align: center;
  line-height: 1;
}

.link-card__text { flex: 1; min-width: 0; }

.link-card__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-card__sub {
  font-size: 0.76rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.link-card__arrow {
  color: var(--muted);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: color var(--ease), transform var(--ease);
}

.link-card:hover .link-card__arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* Cards desativados */
.link-card--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  margin-top: auto;
  padding-top: 44px;
  text-align: center;
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.8;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--ease);
}

footer a:hover { opacity: 0.75; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 480px) {
  .profile__photo,
  .profile__placeholder { width: 124px; height: 124px; }
  .profile__name { font-size: 1.75rem; }
}

@media (min-width: 600px) {
  body { padding-top: 64px; }
}
