.container_produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 150px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.bloco {
    height: 350px;
    width: 300px;
    margin: 10px; /* Ajuste conforme necessário para o espaçamento */
    box-sizing: border-box;
    text-align: center;
    flex: 0 0 calc(33.333% - 20px); /* Por padrão, 3 por linha */
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.div_legenda_produto {
    display: block;
    margin-top: 10px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.div_imagem {
    margin: 0 auto;
    width: 280px;
    height: 280px;
    border: 3px solid black;
    border-radius: 20pt;
    transition: transform 0.3s ease;
}

.div_imagem:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 0px 26px -24px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 26px -24px rgba(0,0,0,0.75);
box-shadow: 0px 0px 26px -24px rgba(0,0,0,0.75);
}

.container_banner {
    position: relative;
    width: 100%;
    height: 400px; /* Ajuste conforme necessário */
    overflow: hidden;
    margin-bottom: 80px;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #19200e4d;; /* Cor semi-transparente sobre a imagem */
    backdrop-filter: blur(4px); /* Desfoque aplicado no overlay */
}

.content {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do overlay e da imagem de fundo */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px; /* Ajuste conforme necessário */
    color: white; /* Cor do texto */
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 70px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.51);
}

.div_titulo_categoria {
    width: 500px !important;
}



.div_imagem img {
    width: 90%;
}
@media only screen and (max-width: 1000px) {
.container_banner {
    height: 40vw;
    font-size: 8vw; 
}

.div_titulo_categoria {
    width: 500px !important;
}

}

@media only screen and (max-width: 885px) {
    .content p {
        font-size: 7vw;
    }
}



@media only screen and (max-width: 770px) {
.container_banner {
    height: 45vw;
}
}
@media only screen and (max-width: 1380px) {
    .container_produtos {
        width: 85% !important;
    }
    .div_titulo_categoria {
        width: 800px;
    }
}

@media only screen and (max-width: 1100px) {
    .div_imagem {
        margin: 0 auto;
        width: 250px;
        height: 250px;
    }
}

/* Para telas até 700px */
@media only screen and (max-width: 980px) {
    .div_imagem {
        margin: 0 auto;
        width: 30vw;
        height: 30vw;
    }
    .bloco {
        flex: 0 0 calc(50% - 20px); /* Ajusta para 2 por linha */
    }
 
}

/* Para telas até 700px */
@media only screen and (max-width: 800px) {
    .div_imagem {
        margin: 0 auto;
        width: 35vw;
        height: 35vw;
    }
    .bloco {
        flex: 0 0 calc(50% - 20px); /* Ajusta para 2 por linha */
    }
 
}

@media only screen and (max-width: 670px) {
    .div_imagem {
        margin: 0 auto;
        width: 280px;
        height: 280px;
    }
    .bloco {
        flex: 0  calc(100%); /* Ajusta para 2 por linha */
    }
 
}

@media only screen and (max-width: 615px) {
    .div_titulo_categoria {
        width: 400px !important;
    }
    
 
}


@media only screen and (max-width: 492px) {
    .div_titulo_categoria {
        width: 300px !important;
    }
    
 
}


@media only screen and (max-width: 400px) {
    .div_titulo_categoria {
        width: 250px !important;
    }
    
 
}
