* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ff7615 0%, #b9ab41 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.bio {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* mantém o texto no centro */

  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  transition: all 0.3s ease;
}

/* Ícone fixo à esquerda */
.link i {
  position: absolute;
  left: 20px;
  font-size: 1.5rem;
  width: 24px; /* cria área fixa */
  text-align: center; /* centraliza o ícone dentro dela */
}

/* hover mais elegante */
.link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

footer {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 20px;
}

/* Responsividade */
@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .avatar img {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .link {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}
