* {
  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-btn {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}

.linktree-btn {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: #3dff88;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.linktree-btn span {
  text-align: center;
}

/* 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 {
  text-decoration: none;
  color: black;
}
