@import"https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap";

:root{
    --bg-color: #3D3D3D;
    --bg-color-hover: #4F4F4F;
    --bg-color-active: #000000;
    --border-color: #3D3D3D;
    --border-color-hover: #4F4F4F;
    --border-color-active: #000000;
    --text-color: #3D3D3D;
    --text-color-hover: #4F4F4F;
    --text-color-active: #000000;
    --contrast-color: #FFFFFF;
    --soft-color: #E7E7E7;
}

*{
    font-family: 'Montserrat', sans-serif;
}

a{
    text-decoration: none;
}

.navbar{
    background: var(--bg-color);
}

.area-login{
    width: 100%;
    border: 3px solid blue;
    border-radius: 15px;
    padding: 2%;
    margin-top: 5%;
    background: blue;
    color: white;
}
.logo-login{
    width: 100%;
}
.img-menu{
    width: 60px;
}

.pesquisar{
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--soft-color);
}

.items{
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
}

.item{
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-left: 10px;
    max-width: min-content;
    cursor: pointer;
}

.img-item{
    width: 140px;
    height: 140px;
    border-radius: 4px;
    object-fit: cover;
}

.title-pedidos{
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    white-space: pre-line;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.valor-item{
    color: var(--text-color);
}

.grid-items{
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px;
}

.item-container{
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 0 8px;
    transition: all .2s;
}

.item-container:hover{
    box-shadow: 2px 2px 10px gray;
}

.item-card{
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.text-info-card{
    display: flex;
    flex-direction: column;
}

.title-card{
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    white-space: pre-line;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.description{
    color: #595959;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: pre-line;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price{
    font-weight: 700;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #5a5a5a;
}

.price-value{
    font-size: 14px;
}

.image-container{
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 4px;
}

.img-card{
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 4px;
}

.nav-bar{
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -15px 45px #0a0a0a1a;
}

.content{
    max-width: 1080px;
    padding: 0 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-footer{
    position: relative;
    width: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-top: 2px solid #ffffff;
    cursor: pointer;
}

.item-footer .-active{
    border-top: 2px solid var(--border-color);
}

.icon-content .-align{
    align-items: center;
}

.spacer{
    padding-top: 60px;
}