.titulo-produtos-vitrine{
    color: #2f2f2f;
}

.moldura-img-produto {
    border: 2px solid white;
    border-radius: 0px 15px 15px 15px;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
}

.moldura-img-produto:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.img-produto-home{
    height: 100%;
    width: auto;
    max-width: none;
    display: inline-block;
    text-align: center;
}

.img-curso-home{
    height: 100%;
    width: 100%;
    max-width: none;
    display: inline-block;
    text-align: center;
}

.img-produto {
    width: 100%;
    height: 100%;
}

.div-produto {
    height: 100% !important;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-comprar-produto {
    color: white !important;
    background-color: #51a800;
    border: 1px solid white;
    border-radius: 45px;
    padding: 2px 18px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 14px;
}

.btn-comprar-produto:hover {
    background-color: white;
    color: #51a800 !important;
    border: 1px solid #51a800;
}

.div-info-produtos {
    align-self: center;
    position: relative;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.descricao-produto {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 64px;
}

.img-card-produto-container {
    position: relative;
    overflow: hidden;
}

.img-card-produto-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background-color: rgb(59 52 52 / 73%);
    z-index: 1;
}

.img-card-produto {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 400px;
}

.moldura-img-card-produto {
    border: 2px solid white;
    border-radius: 0px 15px 15px 15px;
    height: 400px;
    overflow: hidden;
    padding: 0px;
    min-width: 100%;
}

.moldura-img-card-produto:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.overlay-produto {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.icon-bag {
    font-size: 80px;
    color: #FFFFFF !important;
    margin-bottom: 10px;
}

.txt-veja {
    font-size: 40px;
}

.overlay-txt-produto {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100% !important;
}

.overlay-botao {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100% !important;
}

.btn-clique-aqui {
    color: white !important;
    background-color: #51a800;
    border: 1px solid white;
    border-radius: 45px;
    padding: 1px 40px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 16px;
    align-self: center;
    position: relative;
    bottom: 20px;
    z-index: 2;
}

.btn-clique-aqui:hover {
    background-color: white;
    color: #51a800 !important;
    border: 1px solid #51a800;
}

.titulo-produto{
    height: 48px;
}

@media (min-width: 320px) and (max-width: 499px) {
 
    .div-produto-mobile{
        flex-direction: column;
        justify-content: center;
    }

    .moldura-img-card-produto {
        margin-left: 0 !important;
    }

    .div-info-produtos {
        margin-bottom: 20px;
    }
    
}

@media (min-width: 500px) and (max-width: 1024px) {

    .btn-comprar-produto{
        padding: 5px 20px !important;
    }

    .txt-veja {
        font-size: 22px;
    }

    .btn-clique-aqui{
        padding: 8px !important;
        bottom: 40px !important;
    }

    .moldura-img-card-produto {
        height: 342px !important;
    }

    .moldura-img-produto{
        height: 130px;
        width: 90%;
    }
    
}