body {
  background-color: hsla(217, 57%, 13%, 0.925);
  color: hsl(0, 0%, 100%);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.nft-preview {
  width: 550px;
  height: 800px;
  background-color: hsla(216, 58%, 13%, 0.253);
  border-radius: 20px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.nft-preview .nft-component {
  position: relative;
  width: 400px;
  height: 750px;
  margin: 25px auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Arial", sans-serif;
  background-color: hsl(216, 52%, 6%);
  border-radius: 15px;
   box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.5);
}


.nft-preview .nft-component .nft-image {
  background-image: url('../img/image-equilibrium.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  transition: transform 0.6s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.nft-preview .nft-component .nft-image:hover {
  transform: scale(1.05);
  background-color: hsla(0, 0%, 0%, 0.349);
  opacity: 0.6;
}

/* Adiciona o ícone com ::after da uma olhada depois */
.nft-preview .nft-component .nft-image:hover::after {
  content: "";
  position: absolute;
  width: 50px;              /* tamanho do ícone */
  height: 50px;
  background-image: url('../img/icon-view.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}


.nft-preview .nft-details {
  margin-top: 20px;
  text-align: left;
  padding: 20px;
}
.nft-preview .nft-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: hsl(0, 0%, 100%);
  font-weight: bold;
}
.nft-preview .nft-details p {
  font-size: 18px;
  color: hsl(0, 0%, 80%);
  margin-bottom: 20px;
}
.linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.eth-info,
.clock-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon {
  width: 15px !important;
  height: 15px !important;
}
.nft-price {
  color: hsl(178, 100%, 50%);
  font-weight: bold;
  font-size: 14px;
}
.nft-time {
  color: hsl(215, 51%, 70%);
  font-size: 14px;
  font-weight: bold;
}
hr {
  border: none;
  height: 1px;
  background-color: hsl(0, 0%, 20%);
  margin: 20px 0;
}

.nft-preview-image{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
  text-align: center;
}
.nft-preview-image img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  margin-bottom: 10px;
}
.nft-creator {
  font-size: 14px;
  color: hsla(0, 0%, 75%, 0.781);
}
.nft-creator a {
  color: hsla(0, 0%, 100%, 0.781);
  text-decoration: none;
}
.nft-creator a:hover {
  text-decoration: underline;
  color: hsl(178, 100%, 50%);
  transition: color 0.3s ease;
  font-weight: bold;
}
