/* =========================
   Reset básico e tokens
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background-color: #f9fafb;
  color: #111827;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   Layout geral
   ========================= */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

@media (min-width: 768px) {
  .page {
    padding: 40px 16px;
  }
}

.header,
.main,
.footer {
  width: 100%;
  max-width: 420px;
}

.header {
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .header {
    margin-bottom: 28px;
  }
}

.main {
  margin-bottom: 16px;
}

/* =========================
   Avatar e perfil
   ========================= */

.avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.avatar {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  border: 3px solid #7c3aed;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-name {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #111827;
}

.profile-bio {
  margin: 0;
  font-size: 14.5px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
  text-align: center;
}

/* =========================
   Texto de marketing
   ========================= */

.intro {
  margin-bottom: 28px;
}

.intro-text {
  margin: 0 0 20px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
}

/* =========================
   Lista de links
   ========================= */

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #7c3aed;
  background-color: #ffffff;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.12);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}

.link-label {
  max-width: 100%;
}

.link-button--secondary {
  background-color: #ffffff;
  color: #111827;
  border-color: #7c3aed;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.12);
}

/* Hover / focus (desktop) */

@media (hover: hover) and (pointer: fine) {
  .link-button:hover {
    background-color: rgba(124, 58, 237, 0.08);
    box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
    transform: translateY(-1px);
  }

  .link-button--secondary:hover {
    background-color: #f9fafb;
    border-color: #7c3aed;
  }
}

/* Active / pressed */

.link-button:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
  filter: brightness(0.98);
}

/* Foco acessível */

.link-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px #7c3aed;
}

/* Conteúdo interno dos botões */

.link-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background-color: rgba(15, 23, 42, 0.12);
  color: #111827;
}

.link-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.link-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.link-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
}

.link-subtitle {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}

.link-button--secondary .link-subtitle {
  color: #4b5563;
}

/* Variações de ícone por marca (toque sutil de cor) */

.link-icon--instagram {
  background: radial-gradient(circle at 30% 30%, #f97316, #ec4899 45%, #8b5cf6);
  color: #ffffff;
}

.link-icon--tiktok {
  background-color: #020617;
  color: #f97316;
}

.link-icon--linkedin {
  background-color: #0a66c2;
  color: #ffffff;
}

.link-icon--github {
  background-color: #f9fafb;
  color: #111827;
}

.link-icon--fluency {
  background-color: #020617;
  color: #f9fafb;
}

.link-icon--email {
  background-color: #f3f4f6;
  color: #111827;
}

.link-icon--rocketseat {
  background-color: #7c3aed;
  color: #ffffff;
}

.link-icon--borderless {
  background-color: #0f766e;
  color: #ffffff;
}

.link-icon--soon {
  background-color: #f3f4f6;
  color: #4b5563;
}

.link-button--soon {
  background-color: #ffffff;
  color: #111827;
  border-color: #7c3aed;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.12);
  cursor: default;
}

.link-button--soon .link-title {
  font-weight: 500;
  color: #111827;
}

.link-button--soon .link-subtitle {
  color: #4b5563;
}

/* =========================
   Rodapé
   ========================= */

.footer {
  margin-top: 16px;
}

.footer-text {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

/* =========================
   Blocos de seção
   ========================= */

.section-block {
  margin-bottom: 24px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}



