.containerServicos {
    background: #dbe8f4;
    padding: 70px 0;

    @media (max-width: 575px) {
        padding: 50px 0;
    }

    @media screen and (min-width: 768px) and (max-width: 991px) {
        margin-top: 4rem;
    }

    .container {
        max-width: 1200px;
        width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 70px;
        margin-top: 14rem;

        @media (max-width: 991px) {
            flex-direction: column;
            gap: 40px;
            margin-top: 8rem;
        }
    }

    .imagem {
        flex: 1;

        img {
            width: 100%;
            display: block;
        }
    }

    .conteudo {
        flex: 1.2;

        span {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 46px;
            line-height: 1.2;
            font-weight: 700;
            color: #000;
            margin-bottom: 30px;

            @media (max-width: 991px) {
                font-size: 34px;
            }

            @media (max-width: 575px) {
                font-size: 28px;
            }
        }

        p {
            font-size: 17px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 22px;

            @media (max-width: 575px) {
                font-size: 16px;
            }
        }

        .botao {
            display: inline-block;
            padding: 14px 40px;
            background: #0077b6;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: .3s;

            &:hover {
                background: #005f91;
            }

            @media (max-width: 575px) {
                width: 50%;
                text-align: center;
            }
        }
    }
}

.diferenciais {
    background: #f5f3f3;

    .container {
        background: #fff;
        padding: 50px;
        display: flex;
        justify-content: space-between;
        gap: 50px;
        width: 90%;
        margin: 0 auto;

        @media (max-width: 991px) {
            flex-direction: column;
            width: auto;
        }
    }

    .item {
        flex: 1;
        display: flex;
        align-items: flex-start;
        gap: 25px;

        @media (max-width: 575px) {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            flex-shrink: 0;
        }

        div {

            h3 {
                font-size: 1.4rem;
                font-weight: 700;
                color: #111;
                margin-bottom: 15px;
            }

            p {
                font-size: .9rem;
                line-height: 1.7;
                color: #333;
            }
        }
    }
}

.empresa {
    width: 100%;
    padding: 2rem 0;
    background: #f7f4f4;

    .container {
        width: 70%;
        margin: 0 auto;

        .linha {
            display: flex;
            justify-content: space-between;
            align-items: center;

            @media (max-width: 991px) {
                flex-direction: column;
                gap: 2rem;
                margin-bottom: 3rem;

                &:last-child {
                    flex-direction: column-reverse;
                }
            }

            &:last-child {
                margin-bottom: 0;
            }

            .conteudo {
                flex: 1;

                @media (max-width: 991px) {
                    text-align: center;
                }

                h2 {
                    font-size: 2rem;
                    font-weight: 700;
                    color: #111;
                    margin-bottom: 1rem;

                    @media (max-width: 768px) {
                        font-size: 1.6rem;
                        text-align: center;
                        line-height: 1.3;
                    }
                }

                p {
                    font-size: 1rem;
                    line-height: 1.7;
                    color: #111;
                    margin-bottom: 0;

                    @media (max-width: 768px) {
                        font-size: .9rem;
                    }
                }

                .botao {
                    display: inline-block;
                    margin-top: 1rem;
                    padding: .7rem 2rem;
                    background: #0b78b5;
                    color: #fff;
                    text-decoration: none;
                    font-size: 1rem;
                    transition: .3s;

                    &:hover {
                        background: #085f8f;
                    }
                }
            }

            .imagem {
                flex: 1;
                display: flex;
                justify-content: center;

                img {
                    width: 100%;
                    max-width: 420px;
                    display: block;

                    @media (max-width: 991px) {
                        max-width: 100%;
                    }
                }
            }

            &:first-child {

                .imagem {

                    img {
                        max-width: 420px;
                    }
                }
            }

            &:last-child {

                .imagem {

                    img {
                        max-width: 340px;

                        @media (max-width: 991px) {
                            max-width: 100%;
                        }
                    }
                }
            }
        }
    }
}