:root {
  --terracota: #E07A5F;
  --pessego: #F2C4A4;
  --salvia: #8DAA8D;
  --creme: #EADBC8;
  --off-white: #FBF6EF;
  --fundo: #F4EEE6;
  --marinho: #3D5A6D;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--fundo);
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--marinho);
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 480px;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Avatar: sacolinha redonda, no estilo do logo "Feirinha" */
.avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--salvia);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(61, 90, 109, 0.18);
  margin-bottom: 18px;
}

.avatar__bag {
  position: relative;
  width: 46px;
  height: 38px;
  background: var(--terracota);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar__handle {
  position: absolute;
  top: -10px;
  left: 9px;
  width: 28px;
  height: 16px;
  border: 4px solid var(--terracota);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.avatar__dots {
  display: flex;
  gap: 8px;
}

.avatar__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--off-white);
}

.name {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  line-height: 1.1;
  color: var(--marinho);
}

.badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--pessego);
  color: var(--marinho);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.bio {
  margin: 16px 0 28px;
  font-size: 15px;
  line-height: 1.55;
  color: #6b6157;
  max-width: 340px;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  background: var(--off-white);
  color: var(--marinho);
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 17px;
  border-radius: 22px;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(61, 90, 109, 0.10);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px);
  background: var(--terracota);
  color: var(--off-white);
  border-color: var(--terracota);
}

.link-button:active {
  transform: translateY(0);
}

.link-list__empty {
  color: #a09083;
  font-size: 14px;
  padding: 20px;
}

.footer {
  margin-top: 40px;
  font-size: 13px;
  color: #a09083;
}

@media (max-width: 360px) {
  .page {
    padding: 36px 16px 24px;
  }

  .link-button {
    font-size: 16px;
    padding: 16px 18px;
  }
}
