html {
  background-color: hsl(30, 38%, 92%);
  font-family: "Montserrat";
}
a {
  text-decoration: none;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px;
  place-items: center;
  gap: 20px;
  height: 100vh;
}
.painel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 20px;
  background-color: white;
  width: 650px;
  border-radius: 10px;
}
img {
  justify-self: start;
  object-fit: cover;
  width: 350px;
  height: auto;
  border-radius: 10px 0px 0px 10px;
}
.conteudo {
  padding: 20px;
  padding-right: 5px;
  position: relative;
}
.perfume {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: hsl(228, 12%, 48%);
  font-weight: 700;
}

h1 {
  max-width: 11ch;
  color: hsl(212, 21%, 14%);
  font-family: "Fraunces";
  font-weight: bold;
}
.conteudo div {
  font-size: 14px;
  max-width: 25ch;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 700;
  color: hsl(228, 12%, 48%);
}
/*  */

.valor_desconto {
  font-size: 2.5rem;
  color: hsl(158, 36%, 37%);
  font-family: "Fraunces";
  font-weight: 700;
}
.valor {
  text-decoration: line-through;
  display: inline-block;
}
.valores {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0px;
}
.botao_comprar {
  display: inline-block;
  background-color: hsl(158, 36%, 37%);
  width: 90%;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.botao_comprar::before {
  content: url("/frontend-mentor-challenge1/img/icon-cart.SVG");
  position: absolute;
  left: 55px;
}

.botao_comprar:hover,
.botao_comprar:focus {
  background-color: hsl(158, 36%, 27%);
}

@media (max-width: 800px) {
  .painel {
    grid-template-columns: 1fr;
    max-width: 275px;
    min-width: 349.7px;
  }
  img {
    content: url("/frontend-mentor-challenge1/img/image-product-mobile.JPG");
    border-radius: 10px 10px 0px 0px;
  }
  .painel {
    border-radius: 10px;
  }
  .conteudo h1 {
    max-width: 20ch;
  }
  .conteudo div {
    font-size: 14px;
    max-width: 30ch;
    font-weight: 700;
  }
  .botao_comprar::before {
    left: 75px;
  }
  h1 {
    margin: 10px 0px;
  }
  .conteudo div {
    margin-bottom: 10px;
  }
}
