* {
  box-sizing: border-box;
  font-family: "Montserrat";
}

body {
  background-color: #f2ebe3;
  margin: 0;
}

.principal-container {
  display: flex;
  background-color: #fff;
  width: 700px;
  height: 500px;
  margin: 100px auto;
  border-radius: 10px;
  overflow: hidden;
}

.img-container {
  width: 50%; /* Aqui faz com que o container da imagem ocupe 50% do espaço do principal*/
}

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

.info-container {
  width: 50%; /* Aqui faz com que o container das info ocupe 50% do espaço do principal*/
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h3 {
  text-transform: uppercase;
  color: #6c7289;
  font-size: 12px;
  letter-spacing: 5px;
  margin: 0;
}

h1 {
  font-weight: bold;
  font-size: 2.6rem;
  font-style: italic;
  margin: 10px 0;
}

p {
  color: #6c7289;
  font-weight: 500;
  font-size: 14px;
}

.preco {
  display: flex;
  align-items: center;
  gap: 15px;
  /* margin: 20px 0; */
}

.preco .current-preco {
  color: #3c8067;
  font-size: 30px;
  font-weight: bold;
}

.preco .old-preco {
  color: #aaa;
  text-decoration: line-through;
}

button {
  background-color: #3c8067;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px;
  font-size: .3rem;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background-color: #1b4133;
}

button i {
  font-size: 18px;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: #3e52a3;
}
