/*GERAL*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #e9e9e9 !important;
}

* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*PRODUTOS*/

#product-list {
    display: flex;
    flex-wrap: wrap;
    
}

.minha-imagem {
    width: 250px;
    height: 250px;
    object-fit: contain;
    display: flex;
}

.card-head {
    padding: 8px;
}

.card{
    margin-top: 2rem;
    position: relative;
    width: 15rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.card img{
    height: 10rem;
    width: 10rem;
}

.botao {
    margin-top: auto;
}

.btn-primary {
    box-shadow: none; /* Remove a sombra */
}

.action {
    position: absolute;
    bottom: 0;
    margin-top: auto;
    align-self: center;
}

.texto,
.container-finalizado {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container-finalizado {
    margin-top: 20px;
}

.container-finalizado img {
    height: 300px;
    width: 300px;
}

.cor-botao{
    color: white !important;
}

/*PRODUTO*/

.container__card__product {
    width: 80%; /* Ajusta a largura conforme desejado */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding-top: 50px; /* Adiciona algum espaço superior */
    background-color: white;
}

.card__product{
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card__product img{
    height: 350px;
    width: 300px;
}

/*CHECKOUT*/

.product-info-container {
    justify-content: center;
    align-items: center;
    text-align: center;  
    margin-left: 10rem;
}