@charset "UTF-8";

#servicos{
    display: flex;
    flex-direction: column;
    padding: 28px 8%;
    /* gap: 15px; */
    align-items: center;
    justify-content: center;
    /* padding-top: 80px; */

}

.servicos{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.servicos-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    gap: 20px;
    width: 20%;
    padding: 20px;
    height: 250px;
    background-color: var(--color-primary2);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.164);
    position: relative;
}

.servicos-box a{
    text-decoration: none;
}

.servicos .servicos-box {
    /* background-color: #97A6A0; */
    color: rgb(25, 0, 255);
    padding: 40px;
    border: 2px solid rgb(3, 3, 3);
    /* margin-top: 45px; */
    border-radius: 20px;
    transition: .2s;
    justify-content: center;
}

.servicos .servicos-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(0, 46, 253, 0.623);
}

.service-description{
    text-align: center;
}

/* ICONES */
.servicos .servicos-box i{
    justify-items: center;
    color: blue;
    font-size: 50px ;
}

/* BOTÃO CONTRATAR */
.btn-service { 
    display: none;
}

.servicos-box:hover .btn-service { 
    display: flex;
}



@media screen and (max-width: 1100px){
    .servicos-box{
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 600px){
    .servicos-box{
        width: 100%;
    }
}