/* SERVICES SECTION */
.ServicesSection{
    padding: 60px 8%;
    background: #f9f9f9;
}

/* LINHA */
.service-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

/* INVERSÃO */
.service-row.reverse{
    flex-direction: row-reverse;
}

/* TEXTO */
.service-text{
    flex: 1;
}

.service-text h2{
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
}

/* LINHA DECORATIVA */
.service-text h2::after{
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(to left, rgb(0,248,220), rgb(0,180,223));
    position: absolute;
    left: 0;
    bottom: -8px;
}

.service-text p{
    line-height: 1.6;
}

/* IMAGEM */
.service-image{
    flex: 1;
}

.service-image img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

/* RESPONSIVO */
@media (max-width:768px){

    .service-row,
    .service-row.reverse{
        flex-direction: column;
    }

    .service-text h2{
        font-size: 20px;
    }
}
/* BOTÃO SERVIÇOS */
.service-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(to left, rgb(0,248,220), rgb(0,180,223));
    color: white;
    border-radius: 4px;
    transition: 0.3s;
}

/* HOVER */
.service-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}