/*Formatação dos cards*/



.solucoes1{
    align-items: center;/* alinhamento na vertical*/
    background-color: var(--cor6);
    width: 95%;/*ocupar toda area do navegador*/
    height:85vh;/*ocupar 70% do monitor*/
    text-align: center;
    margin: 2.5%;
    box-shadow: 0px 0px 15px 5px var(--cor2);
    border-radius: 12px 12px 0 0;
    padding:2%;
}
/*Formatação area de produtos solucoes*/

.solucoes{
    text-align: center;
}

/*.solucoes_titulo_pagina{
    margin-top: 50px;
}*/

.solucoes_titulo_pagina h2{
    font-size: 28px;
    color: var(--cor4);
}

.solucoes_p{
    display:flex; /*flexivel*/
    justify-content: space-around; /*separar as divs individualmente separando uma da outra alinhamentos na horizontal*/
    width: 100%;/*ocupar toda area do navegador*/
    height:60vh;/*ocupar 70% do monitor*/
}

.solucoes_pp{
    width: 100%;/*ocupar toda area do navegador*/
    margin: 5%;
}


.solucoes_p h2{
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.solucoes_itens{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.foto_bd_solucoes{
    width: 200px;
    height: 220px;
    margin-top: 10px;
}

.tit_produto_bd_solucoes{
    display: flex;
    height: fit-content;
    font-size: 24px;
    font-weight: bold;
    color: var(--cor4);
}

.descricao_bd_solucoes, .marca_bd_solucoes{
    display: flex;
    height: fit-content;
    color: var(--cor4);
}

.valor_bd_solucoes{
    font-size: 28px;
    font-weight: bold;
    color: var(--cor4);
    background-color: var(--cor3);
    padding: 10px;
    border-radius: 10px;
}

.valor_bd_solucoes span{
    font-size: 15px;
    color: var(--cor4);
}