body {
  background-color: #f0e6f2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555;
}

.linktree-container {
  max-width: 680px;
  margin: 40px auto;
  padding: 20px;
}

.profile-container {
  position: relative;
  display: block; /* Garante que ocupe a largura total */
  margin: 0 auto; /* Centraliza a div */
  width: fit-content; /* Faz com que a largura se ajuste ao conteúdo, mantendo a centralização */
}

.profile-picture {
  width: 110px;
  height: 110px;
  border: 3px solid #d83b9c;
  border-radius: 100%;
  object-fit: cover;
}

.status-badge {
  position: static;
  display: block;
  margin: -10px 0 0 0;
  background-color: #d83b9c;
  color: white;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  width: fit-content;
}

.info-section {
  text-align: center;
  margin: 15px 0;
}

.info-section p {
  margin: 5px 0;
  font-weight: 500;
}

.info-section i {
  margin-right: 8px;
  color: #555;
}

.description {
  margin-bottom: 30px;
}
h2 {
  color: #555;
}
a {
  color: inherit;
}
/* --- NOSSAS CLASSES DE GRADIENTE --- */

.gradient-purple {
  background: linear-gradient(100deg, #ee4aaf, #9c38df);
}

.gradient-green {
  background: linear-gradient(100deg, #37e677, #149d8d);
}

.gradient-blue {
  background: linear-gradient(100deg, #4e99e8, #1667bd);
}

.gradient-orange {
  background: linear-gradient(100deg, #eb9b59, #e76140);
}
.gradient-teal {
  background: linear-gradient(100deg, #2cc9c2, #1ea6d8);
}

.gradient-red {
  background: linear-gradient(100deg, #d34553, #de192c);
}

.social-connect-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Espaçamento entre os ícones */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%; /* Torna o link perfeitamente circular */
  color: #555;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f5f5f5;
  border-color: #cccccc;
  color: #333;
  transform: translateY(-3px); /* Efeito de "levantar" ao passar o mouse */
}

/* --- Estilos para o Rodapé --- */
.footer {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #888;
  font-size: 0.9rem;
}

.footer p {
  margin: 5px 0;
}

.links-section .link-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.links-section .link-button:hover {
  transform: scale(1.02);
}

.link-content {
  display: flex;
  align-items: center;
}

.link-icon {
  font-size: 1.5rem;
  margin-right: 15px;
}

.link-text {
  display: flex;
  flex-direction: column;
}

.link-text strong {
  font-size: 1rem;
  font-weight: bold;
}

.link-text span {
  font-size: 0.85rem;
}

.link-tag {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-icon.link-tag {
  font-size: larger;
}

.background-icon {
  position: absolute;
  right: 10px;
  bottom: -10px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.15);
  transform: none;
  z-index: 0;
}

.link-content,
.link-tag {
  position: relative;
  z-index: 1;
}
