body,
html {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #ede6e6;
  height: 100vh;
  overflow-x: hidden;
  text-decoration: none;
}

a {
  color: #342630;
  text-decoration: none;
}

.background {
  position: relative;
  width: 100%;
  height: 100%;
}

.shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: auto;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centraliza verticalmente dentro da div */
  text-align: center;
}

.profile .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 5%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile .logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #8e2de2, #ff6a00);
  color: white;
  font-weight: bold;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
  color: #342630;
}

.profile p {
  margin: 0.25rem 0;
  color: #e0e0e0;
}

#bioPerfil {
  font-size: 1rem;
  margin: 0;
  color: #342630;
}

.socials {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  color: #342630;
}

.socials img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  padding: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.link-item {
  background-color: #ffc107;
  border-radius: 24px;
  padding: 1rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease;
}

.link-item:hover {
  transform: scale(1.02);
  background-color: #c69606;
  color: white;
}

.link-item a {
  text-decoration: none;
  color: #342630;
  display: block;
  width: 100%;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #999;
}
