.box-menu-categorias{
    width:fit-content;
    min-width: 300px;
}
#lista_produtos{
    width:100%;
    margin-left:30px;
    @media (max-width: 950px) {
        margin-left:0px;
    }
}
.container_produtos{
    display:flex;
    @media (max-width: 950px) {
        flex-direction: column;
    }
}
.produtos_total {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Espaço entre os contêineres de produtos */
    justify-content: center; /* Centraliza os contêineres dentro do contêiner principal */
    flex-direction: column;
}
.product-container {
    flex: 1 1 calc(250px);
    max-width: 270px;
    border: 1px solid #fdfdfd;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
    /* padding: 11px 25px 25px 25px; */
    border-radius: 8px;
    background-color: #fdfdfd;
    text-align: center;
    box-sizing: border-box;
    color: #555555;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-container2 {
	flex: 1 1 calc(250px);
    max-width: 270px;
    border: 1px solid #fdfdfd;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 15px 20px 15px;
    border-radius: 8px;
    background-color: #fdfdfd;
    text-align: center;
    box-sizing: border-box; 
    color: #555555; 
    text-decoration: none; 
}
.product-container h1{
    font-size:20px;
    line-height:20px;
    padding:0px 10px;
}
.product-name{
    font-size: 22px;
    margin-bottom: 25px;
    line-height:28px;
    margin-bottom:10px;
}
.product-details {
	text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-image img {
    max-height: 263px;
    object-fit: cover;
    margin: 0px;
    border-radius: 10px;
}
.product-image2 img {
    width: 220px;
    height: 200px;
    object-fit: cover;
    margin: 0px;
}
.product-info {
    min-width: 200px;
    text-align: center;
}
.product-description {
    font-size: 16px;
    margin-bottom: 14px;
    margin-top:20px;
    line-height:18px!important;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.product-type {
    font-size: 16px;
}


