/* ══════════════════════════════════════
   HOME — Estilos da página inicial
   (link-in-bio). Avatar, nome, título
   e cards de links sociais.
   ══════════════════════════════════════ */

/* ── Layout central da página ── */
.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

/* ── Avatar circular ── */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ── Nome e título ── */
.home-name {
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-top: 24px;
}

.home-title {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 6px;
}

/* ── Container dos links ── */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
  max-width: 400px;
}

/* ── Card de link ── */
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.link-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

/* ── Ícone da rede social ── */
.link-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--black);
}

/* ── Texto do link ── */
.link-label {
  font-size: 16px;
  font-weight: 500;
  flex: 1;
}

/* ── Seta (chevron) à direita ── */
.link-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gray-300);
  transition: color 0.3s ease, transform 0.3s ease;
}

.link-card:hover .link-arrow {
  color: var(--gray-500);
  transform: translateX(2px);
}

/* ── Footer da home ── */
.home-footer {
  margin-top: 48px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .home {
    padding: 48px 24px;
    justify-content: flex-start;
    padding-top: 80px;
  }

  .avatar {
    width: 100px;
    height: 100px;
  }

  .home-name {
    font-size: 24px;
  }

  .link-card {
    padding: 16px 20px;
  }
}
