.Corpo {
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Inter";
}

.Logo {
    z-index: 10;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #459680;
}

.imagemLogo {
    width: 100px;
}

.MenuHamburguer{
    position: absolute;
    top: 25px;
    left: 25px;
}

.Filtrar{
    margin-top: 100px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.Filtro{
    padding: 10px;
    margin-top: 10px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 10px;
    font-size: 12px;
}

.Produtos {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    flex-wrap: wrap;

}

.CardProduto {
    margin-top: 20px;
    min-height: 300px;
    max-width: 47%;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.ConteudoProduto {
    display: flex;
    padding: 20px;
    flex-direction: column;
}

.imagemProduto {
    padding: 15px 0px 0px 0px;
    width: 100px;
    height: 80px;
    object-fit: contain;
    image-rendering: auto;
    justify-self: center;
    align-self: center;
    display: block;
    margin: 0 auto;
}

.Cabecalho {
    margin: -10px -5px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.Sugestao{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 9px;
    text-align: center;
    height: 20px;
    padding: 3px;
    background-color: #459680;
    border-radius: 5px;
}


.TituloProduto {
    font-size: 13px;
    margin: 3px 0px;
    font-weight: bold;
    color: #9E9E9E;
    justify-self: center;
}

.PrecoProduto {
    font-size: 13px;
    font-weight: bold;
    margin: 3px 0px;
}


.Parcelamento {
    font-size: 9px;
    margin: 3px 0px;
}

.Classificacao{
    margin: 5px 0px;
    font-size: 9px;
    display: flex;
    align-items: center;
    text-align: center;
}

.Pontos {
    font-weight: bold;
    font-size: 9px;
    margin: 3px 0px;
}

.Vendedor {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 9px;
    margin: 10px 0px;
    text-align: center;
}

.imagemVendedor {
    width: 50px;
    margin-left: 5px;
}


.Rodape{
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    background-color: #459680;
    justify-content: center;
    align-items: center;
}

.BotoesRodape{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
}

.Paginas {
    display: flex;
    justify-self: flex-end;
    align-self: flex-end;
    gap: 8px;
    padding: 10px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.Paginas li {
    padding: 5px 10px;
    background-color: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.Paginas li:hover {
    background-color: #c0c0c0;
}

.Paginas .active {
    background-color: #459680;
    color: #ffffff;
}

.Magazine, .PagamentoMagazine, .ConfirmacaoPagamentoMagazine{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 25;
}

.PagamentoMagazine{
    background-color: #f4f4f4;
}

.Magazine_AdicionarSacola{
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;

}


.Magazine_Preco{
    display: flex;
    flex-direction: column;
}

.PagamentoMagazine input{
    margin-left: 25px;
    margin-right: 25px;
    padding: 20px 10px;
    width: 80%;
    border: 1px solid #d8d7d7;
}

.PagamentoMagazine select{
    margin-left: 25px;
    padding: 20px 10px;
    border: 1px solid #d8d7d7;
    width: 100%;
}

select{
    -webkit-appearance: none;
}

.Notificacao {
    top: 20px;
    position: fixed; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    height: 80px; 
    background: rgba(230, 230, 230, 0.5); 
    backdrop-filter: blur(10px); 
    border-radius: 30px; 
    color: #000; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    z-index: 30; 
    padding: 5px 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    font-size: 14px;
}
