.so-home-faixa-servicos {
    position: relative;
    padding: 92px 0 96px;
    background: var(--so-branco);
}

.so-home-faixa-servicos__topo {
    max-width: 860px;
    margin: 0 auto 52px;
    text-align: center;
}

.so-home-faixa-servicos__topo .so-tag {
    margin-bottom: 14px;
}

.so-home-faixa-servicos__topo h2 {
    margin: 0;
    color: var(--so-azul-escuro);
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.so-home-faixa-servicos__topo p {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--so-texto-secundario);
    font-size: 17px;
    line-height: 1.76;
}

.so-home-faixa-servicos__grade {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.so-home-faixa-servicos__card {
    position: relative;
    display: block;
    min-height: 288px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--so-borda);
    border-radius: 26px;
    background: var(--so-branco);
    color: var(--so-azul-escuro);
    text-decoration: none;
    box-shadow: var(--so-sombra-card);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.so-home-faixa-servicos__card::before {
    content: "";
    position: absolute;
    inset: auto -56px -72px auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.07);
    transition: transform 0.22s ease, background 0.22s ease;
}

.so-home-faixa-servicos__card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 138, 0, 0.48);
    box-shadow: 0 26px 68px rgba(11, 31, 58, 0.13);
}

.so-home-faixa-servicos__card:hover::before {
    transform: scale(1.16);
    background: rgba(255, 138, 0, 0.13);
}

.so-home-faixa-servicos__icone {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 34px;
    border-radius: 18px;
    background: #EEF3FF;
    color: var(--so-laranja);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.so-home-faixa-servicos__card strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--so-azul-escuro);
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.so-home-faixa-servicos__card p {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--so-texto-secundario);
    font-size: 16px;
    line-height: 1.72;
}

@media (max-width: 1100px) {
    .so-home-faixa-servicos__grade {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .so-home-faixa-servicos {
        padding: 68px 0 72px;
    }

    .so-home-faixa-servicos__topo {
        margin-bottom: 34px;
        text-align: left;
    }

    .so-home-faixa-servicos__topo p {
        margin-left: 0;
        margin-right: 0;
    }

    .so-home-faixa-servicos__grade {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .so-home-faixa-servicos__card {
        min-height: auto;
        padding: 26px;
    }

    .so-home-faixa-servicos__icone {
        margin-bottom: 26px;
    }
}