.content-solucoes{
    padding: 40px 0px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.sites{
    display: flex;
    flex-direction: row;
}

.content-solucoes h1{
    color: #078dd5;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.content-solucoes h1 i{
    margin-right: 4px;
}

.content-solucoes p{
    color: rgb(124, 124, 124);
    margin-bottom: 20px;
}

.box-site{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 400px;
    height: 610px;
    border-radius: 8px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 20px;
    margin: 15px 15px;
    position: relative;
    background-color: #fcfcfc;
}

.imagem{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.box-site img{
    width: 320px;
}

.box-site h2{
    width: 100%;
    text-align: start;
    color: #47a4da;
    margin: 20px 0px;
}

.box-site p{
    text-align: start;
    width: 100%;
    color: rgb(124, 124, 124);
    margin: 20px 0px;
}

.box-site .botao-acessar{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box-site a{
    text-align: center;
    width: fit-content;
    margin: 10px 0px;
    padding: 10px 20px;
    color: #078dd5;
    border: 1px solid #078dd5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.box-site a:hover{
    transform: scale(1.1);
    color: white;
    background: #078dd5;
}

@media (max-width: 992px){

}

@media (max-width: 576px){
    .sites{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 360px){
    .sites{
        display: flex;
        flex-direction: column;
    }
}