* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: block;
}

body {
  min-height: 100vh;
  background-color: #0f1214;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  padding: 40px 16px;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 35px;
}

.content {
  max-width: 700px;
  margin: 0 auto; /* centraliza horizontalmente */
  padding: 32px;
  border-radius: 12px;
}

.container-imagem {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.linktree-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.linktree-btn {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  border-radius: 14px;
  border: none;

  background: #3dff88;
  cursor: pointer;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;

  transition: all 0.2s ease;
}

.linktree-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.linktree-btn span {
  flex: 1;
  text-align: left;
}

/* Hover */
.linktree-btn:hover {
  background: #eaeaea;
  transform: translateY(-2px);
}

/* Clique */
.linktree-btn:active {
  transform: scale(0.98);
}

/* Botão selecionado (opcional) */
.linktree-btn.selected {
  background: #4f46e5;
  color: #fff;
}

.linktree-btn.selected img {
  filter: brightness(0) invert(1);
}

.linktree-btn {
  text-decoration: none;
  color: black;
}
