.secao-detalhes{

    display: flex;
    flex-direction: column;
    align-content: flex-start;

    /*
    background: #f80000;
    */

    width: 100%;

}

.container-detalhes{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    
    /*
    background: grey;
    */

    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5em;
    margin-bottom: 0.5em;

}

.card-detalhe{

    display: flex;
    flex-direction: column;
    align-content: center;

    background:#ffffff;
    border-radius: 1.5em;

    width: 23%;
    min-width: 17em;
    height: auto;
    min-height: 30em;
    overflow: auto;


    box-shadow: 0px 1px 28px -3px rgba(0,0,0,0.3);

    margin: 1em 0.5em;

}

.conteudo-card-detalhe{

    display: flex;
    flex-direction: column;
    align-content: center;

    margin: auto;
    width: 95%;
    height: 100%;

    justify-content: space-evenly;
   
    /*
    background: whitesmoke;
    */
    
}

.conteudo-imagem-detalhe{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.icone_detalhes{

    width: 80px;
    height: 80px;
}

.titulo-card-detalhes{

    font-size: 1em;
    font-weight: 600;
    text-align: center;

    margin: 0;

}

.conteudo-texto-detalhe{

    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: flex-start;
    width: 95%;
    height: 50%;


}

.texto-complementar-detalhes{

    font-size: 0.9em;
    font-weight: 300;
    text-align: center;

    margin: 0;

}

.botao-detalhes{

    display: flex;

    justify-content: center;
    align-content: center;

    margin-left: auto;
    margin-right: auto;

    padding: 0.8em 0;

    background: #d83030;
    border-radius: 2em;
    width: 60%;

    color: #ffffff;

    font-size: 1em;
    font-weight: 500;

    text-transform: uppercase;

    transition: 0.2s;
}

.botao-detalhes:hover{

    
    width: 70%;
    background: #33CC66;

}








.card-texto-preto{

    color: #343a40;

}

.card-texto-cinza{

    color: #666666;

}