.bloco-beneficios-atendimento,
.bloco-beneficios-atendimento * {
    box-sizing: border-box;
}

.bloco-beneficios-atendimento {
    width: 100%;
    display: block;
    position: relative;
    padding: 35px 0 55px;
    background: #fff;
}

.bloco-beneficios-atendimento .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.beneficios-atendimento-faixa {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(135deg, #061b31 0%, #003c66 55%, #004b7b 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 42, 75, 0.16);
}

.beneficio-atendimento-item {
    width: 100%;
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 48px;
    position: relative;
}

.beneficio-atendimento-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 58px;
    background: rgba(255, 255, 255, 0.22);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.beneficio-atendimento-icone {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-atendimento-icone img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.beneficio-atendimento-texto {
    flex: 1;
}

.beneficio-atendimento-texto h3 {
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.beneficio-atendimento-texto p {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* Responsivo */
@media (max-width: 991px) {
    .beneficios-atendimento-faixa {
        grid-template-columns: 1fr;
    }

    .beneficio-atendimento-item {
        padding: 26px 32px;
    }

    .beneficio-atendimento-item:not(:last-child)::after {
        width: calc(100% - 64px);
        height: 1px;
        right: auto;
        left: 32px;
        top: auto;
        bottom: 0;
        transform: none;
    }
}

@media (max-width: 575px) {
    .bloco-beneficios-atendimento {
        padding: 30px 0 45px;
    }

    .beneficio-atendimento-item {
        padding: 24px 22px;
        gap: 18px;
        align-items: flex-start;
    }

    .beneficio-atendimento-item:not(:last-child)::after {
        width: calc(100% - 44px);
        left: 22px;
    }

    .beneficio-atendimento-icone {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .beneficio-atendimento-icone img {
        width: 38px;
        height: 38px;
    }

    .beneficio-atendimento-texto h3 {
        font-size: 14px;
    }

    .beneficio-atendimento-texto p {
        font-size: 13px;
    }
}