

#solucoes{
    width: 100%;
    height: fit-content;
    background-size: 50%;
    overflow: hidden;
    position: relative;
}



#solucoes .row{
    width: 100% !important;
    margin: auto;

}

.col{
    height: fit-content;
    margin: 10px;
    padding: 20px;
}


#logo_solucoes{
    height: 400px;
    margin: 0;
}

#logo_solucoes img{
    width: 100%;
}

.solucao{
    height: 400px;
    width: 100%;
    background-color: rgb(51, 51, 51);
    margin: 30px 0;
    border-radius: 24px;
    display: flex;
    align-items: start;
    padding: 10px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    text-align: justify;
}

.solucao h3{
    text-align: start;

}

.div_icon_solucao{
    width: 75px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: rgb(32, 32, 32);
    box-shadow: -3px 2px 4px rgba(0, 0, 0, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    width: 20%;
    
}

.solucao .descricao{
    width: 75%;
}

.solucao_direita{
    box-shadow: -3px 2px 4px rgba(0, 0, 0, 0.26);
    flex-direction: row-reverse;
}

.solucao_direita .div_icon_solucao{
    transform: rotateY(180deg);
}


.solucao_esquerda{
    box-shadow: 3px 2px 4px rgba(0, 0, 0, 0.26);
}



@media screen and (max-width: 955px) {

    #solucoes h2{
        font-size: 2rem;
        padding-bottom: 0;
    }

    #logo_solucoes{
        display: none;
    }

    #solucoes .row{
        flex-direction: column;
    }

    .solucao_direita{
        flex-direction: row;
    }

    #solucoes .col{
        margin: 10px 0;
        padding: 0 20px;
    }

    .solucao_direita .div_icon_solucao{
        transform: rotateY(0deg);
    }

    .div_icon_solucao{
        display: none;
    }

    .solucao .descricao{
        width: 100%;
        text-align: justify;
    }

    .solucao .descricao h3{
        text-align: center;
    }
}