*{
    margin: 0;
}
main{
    height: 100vh;
    width: 100%;
    background-color: #F3EAE3;
    display: flex;
    align-items: center;
    justify-content: center;
}
#area{
    height: 54vh;
    width: 65vh;
    background-color: #FFFFFF;
    border-radius: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.card{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1vh;
    
    
}
#img{
    background-image: url("images/image-product-desktop.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-bottom-left-radius: 2vh;
    border-top-left-radius: 2vh;
}
.text{
    height: 18vh;
    width: 85%;
    gap: 2vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
   
}
#text-h2{
    height: 13vh;
    width: 85%;
    gap: 2vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#text-preco{
    height: 3vh;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1vh;
}
.preco{
    height: 5vh;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1vh;
}
.preco > h2{
    color: #477E6B;
}
p{
    color: #656569;
    margin: 1vh;
    font-size: clamp(0.8rem, 1.4vw, 2.4vh);
}
h2{
    color: #151C22;
    margin: 1vh;
    
}
del{
    font-size: 1.8vh;
}
button{
    background-color: #1A4031;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2vh;
    height: 5vh;
    width: 85%;
    border-radius: 1vh;
    outline: 0;
    border: none;
    font-size: 1.8vh;
    
}
button:hover{
    background-color: #0a251a;
    cursor: pointer;
}
#ico{
    height: 2.6vh;
    width: 2.6vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("ico/carrinho.svg");
}
@media (max-width: 600px) {
    #area {
        height: 80vh;
        width: 90%;
        background-color: #FFFFFF;
        border-radius: 2vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #img {
        background-image: url("images/image-product-mobile.jpg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        border-top-right-radius: 2vh;
        border-top-left-radius: 2vh;
        border-bottom-left-radius: 0vh;

        height: 50%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1vh;
    }

    p {
        color: #656569;
        margin: 1vh;
        font-size: large;
        /* background-color: aliceblue; */
    }
    h2 {
        color: #151C22;
        margin: 1vh;
        font-size: 4vh;
    }
}

