* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(30, 38%, 92%);
    padding: 20px;
}

.container {
    display: flex;
    max-width: 600px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
}

.image-container {
    width: 50%;
}

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

.content-container {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1,
strong {
    font-family:"Fraunces", serif;
    padding-bottom: 20px;
}

h3 {
    font-family: "Montserrat", sans-serif;
    color: hsl(228, 12%, 48%);
    font-weight: 500;
    font-size: small;
    margin: 18px 0;
}

p {
    font-family: "Montserrat", sans-serif;
    color: hsl(228, 12%, 48%);
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 20px;
}

strong {
    color: hsl(158, 36%, 37%);
    font-size:x-large;
    padding-right: 12px;

}

del {
    color: hsl(228, 12%, 48%);
}

.preco {
    padding-bottom: 20px;
}

button {
    width: 100%;
    padding: 12px 0;
    background-color: hsl(158, 36%, 37%);
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    border-radius: 6px;
    border: none;
}

button img {
    width: 12px;
}

button:hover {
    background-color: hsl(212, 21%, 14%);
    color: hsl(0, 0%, 100%);
}