.servicos-header {
    text-align: center;
    margin-bottom: 50px;
}

.servicos-title {
    font-size: 36px;
    font-weight: 400;
    color: #1F1F1F;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    margin-top: 150px;
}

.servicos-subtitle {
    font-size: 25px;
    color: #1F1F1F;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.banner-servicos {
    width: 100%;
    margin-bottom: 60px;
}

.banner-servicos img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
}

.servicos-itens-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.servicos-itens {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
}

.servico-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.servico-item img {
    width: 145px;
}

.servico-item span {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.banner-02 {
    width: 100%;
    margin-bottom: 60px;
}

.banner-02 img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 1300px) {
    .banner-servicos {
        margin-bottom: 30px;
    }

    .servicos-itens {
        gap: 15px;
    }

    .servicos-title {
        font-size: 28px;
        margin-top: 125px;
    }

    .servicos-itens-wrapper{
        margin-bottom: 30px;
    }

    .servicos-subtitle{
        font-size: 14px;
    }

    .servicos-header{
        margin-bottom: 30px;
    }

    .banner-02 {
        margin-bottom: 30px;
    }

    .servico-item img {
        width: 55px;
    }

    .servico-item span{
        font-size: 10px;
    }
}