* {
  text-decoration: none;
  margin: 0px;
  padding: 0px;
}

html,
body {
  background-color: #333;
  font-family: "Montserrat", sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: #333;
  display: table;
  background-image: url("https://png.pngtree.com/thumb_back/fh260/background/20190222/ourmid/pngtree-beautiful-gradient-dreamland-starry-background-skystarry-skybeautifulpurpledreamlandliterary-backgroundposter-image_49547.jpg");
  background-size: cover;
  background-position: center;
}

.novo-selo {
  position: absolute;
  top: -10px;
  left: -5px;
  background-color: #e03222;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  transform: rotate(0deg);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 99;
  animation: growShrink 1.2s ease-in-out infinite;
}

@keyframes growShrink {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

.overlay {
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0, 0.6);
  display: table;
}

.areaFotoPerfil {
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  gap: 15px;
}

.areaFotoPerfil img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
}

.areaFotoPerfil strong {
  color: #fff;
  font-size: 1rem;
}

.areaLinks {
  margin-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  max-height: 100vh;
  overflow: auto;
}

.tituloSecao {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.areaLinks a {
  display: block;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.containerRedeSociais {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 30px;
}

.areaRedesSociais {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  justify-items: center;
  align-items: center;
  margin-bottom: 100px;
  margin-top: 20px;
}

.areaRedesSociais a {
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .areaLinks,
  .containerRedeSociais,
  .areaRedesSociais {
    width: 600px;
    margin: 0 auto;
  }

  .areaLinks {
    margin-top: 40px;
  }

  .containerRedeSociais {
    margin-top: 40px;
    margin-bottom: 200px;
  }

  .areaRedesSociais {
    margin-top: 20px;
  }
}
