﻿
.divBanner {
    width: 100%;
    height: 250px;
    margin: 20px auto;
    overflow: hidden;
}

    .divBanner .imgBannerHome {
        width: 100%;
        height: 100%;
        background: url(../Imagens/Banners/Produtos/BannerHome.jpg) center no-repeat;
        background-size: cover;
        border-radius: 4px;
    }

    @media screen and (max-width: 600px) {

        .divBanner {
            height: 200px;
        }

        .divBanner .imgBannerHome {
            background: url(../Imagens/Banners/Produtos/BannerHomeM.jpg) center no-repeat;
            background-size: cover;
            border-radius: 4px;
        }

    }

.divContent h1 {
    padding: 10px 0;
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    color: #3e3e3e;
}

.divCategoriaContent {
    width: 100%;
    padding: 15px 0 30px;
    margin: 0 auto;
}

.dlProdutos {
    width: calc(100% + 10px);
    margin: 0 auto 0 -5px;
}

    .dlProdutos tbody tr {
        max-width: 1376px !important;
        padding: 5px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        overflow: hidden;
    }

        .dlProdutos tbody tr td {
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            transition: .3s;
            border-radius: 4px;
        }

            .dlProdutos tbody tr td:hover {
                box-shadow: 1px 1px 6px rgb(0 0 0 / 10%), -1px -1px 6px rgb(0 0 0 / 10%);
            }

    .dlProdutos .divItem {
        width: 100%;
        padding: 12px;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-direction: row-reverse;
        border-radius: 4px;
        border: 1px solid #f2f2f2;
        box-shadow: 0 1px 4px rgb(0 0 0 / 5%);
    }

        .dlProdutos .divItem .imgFotoProduto {
            width: 150px;
            height: 150px;
            margin-left: 10px;
            border-radius: 4px;
        }

        .dlProdutos .divItem .divItemTextContent {
            flex: 1;
            display: flex;
            align-items: stretch;
            flex-direction: column;
            justify-content: space-evenly;
        }

.pDescricao {
    font-weight: 500;
    font-size: 19px;
    line-height: 22px;
    color: #3e3e3e;
    display: block;
    /*text-transform: capitalize !important;*/
}

.pDescritivo {
    margin: 5px 0 25px;
    font-size: 14px;
    color: #717171;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 18px; /* fallback */
    max-height: 54px; /* fallback */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.divValor {
    width: 100%;
    padding-right: 10px;
    text-align: right;
}

.pValor {
    font-weight: 500;
    font-size: 17px;
    color: #3e3e3e;
}

@media screen and (max-width: 800px) {

    .dlProdutos tbody tr {
        display: flex;
        flex-direction: column;
    }

}

@media screen and (max-width: 400px) {

    .dlProdutos .divItem .imgFotoProduto {
        width: 100px;
        height: 100px;
    }

}

@media screen and (max-width: 320px) {

    .dlProdutos .divItem .imgFotoProduto {
        width: 80px;
        height: 80px;
    }
}
