#servico {
    padding: 20px;
    text-align: center;
    margin-top: -100px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.text-servicos {
    color: #674188;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px; 
    margin-top: 200px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}
#servico h3{
    font-size: 23px;
    color: #674188;
}
.linha-2 {
    border-bottom: 3px solid #674188;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}



.servico-card {
    width: 280px;
    height: 280px;
    padding: 15px;
    flex-direction: row;
    box-sizing: border-box;
    text-align: center;
    border-radius: 30px;
    background-color: #ffffff;
    box-shadow: 0 1px 8px rgba(255, 27, 255, 0.699);
    transition: transform 0.3s ease;
    margin: 20px;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.h2-servicos {
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
    color: #674188;
    font-weight: 600;
}

@media (max-width: 768px) {
    .servicos {
        gap: 30px;
    }

    #servico {
        margin-top: -50px;
        margin-bottom: -60px;
    }

    .servico-card {
        width: calc(70% - 20px);
        height: auto;
        margin: 10px auto;
    }

    .servico-card img {
        max-width: 100px;
    }

    .h2-servicos {
        font-size: 18px;
    }

    .linha-2 {
        width: 240px;
    }

    .text-servicos {
        width: 100%;
        font-size: 30px; 
        margin-top: 100px; 
    }
}