.servicos-page{
    & .topo{
        background: url(../images/topo-paginas.jpg) no-repeat bottom center;
        background-size: cover;
        padding: 280px 5% 40px;
        & h1{
            color: #fff;
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
        }
    }
    & .lista{
        padding: 75px 10%;
        display: flex;
        flex-direction: column;
        gap: 50px;
        & .servico{
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            &:nth-child(2n){
                flex-direction: row-reverse;
                & .textos{
                    margin-left: -50px;
                    margin-right: 0;
                }
                & .imagens{
                    & .icone{
                        right: 0;
                        left: unset;
                    }
                }
            }
            & .imagens{
                width: 50%;
                position: relative;
                & img.thumb{
                        border-radius: 30px;
                        width: 100%;
                        height: 450px;
                        object-fit: cover;
                        z-index: 700;
                        position: relative;

                }
                & .icone{
                    background: #B89A61;
                    width: 120px;
                    height: 120px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 30px;
                    padding: 30px;
                    position: absolute;
                    z-index: 702;
                    top: 0;
                    & img{
                        filter: brightness(100) contrast(100);
                        height: 60px;
                    }
                }
            }
            & .textos{
                width: 50%;
                height: max-content;
                padding: 50px;
                border-radius: 30px;
                z-index: 701;
                background: #fff;
                position: relative;
                margin-right: -50px;
                & h3{
                    font-size: 1.5rem;
                    line-height: 1.2;
                    margin: 0;
                    color: #202A54;
                    font-weight: 700;
                }
                & p{
                    color: #344054;
                    font-size: .95rem;
                    line-height: 1.4;
                    margin: 10px 0;
                }
                & a{
                    & button{
                        background: transparent;
                        padding: 10px 20px;
                        border-radius: 30px;
                        border: solid 1px #D0D5DD;
                        color: #101828;
                        font-weight: 500;
                        margin: 10px 0 0;
                        transition: background .3s;
                        &:hover{
                            background: #F2F4F7;
                            color: #202A54;
                            & i{
                                margin-left: 15px;
                            }
                        }
                        & i{
                            margin-left: 5px;
                            transition: margin-left .6s;
        
                        }
                    }
                }
            }
        }
    }

    @media screen and (min-width: 1441px) {
        & .topo {
            padding: 280px 10% 40px;
        }
        & .lista {
            padding: 90px 15%;
        }
    }
    
    @media screen and (max-width: 1024px) {
        & .topo {
            padding: 150px 60px 40px;
        }
        & .lista {
            padding: 60px;
            & .servico {
                flex-direction: column-reverse;
                & .imagens {
                    width: 100%;
                    & .icone {
                        top: unset;
                        right: 0;
                        bottom: 0;
                    }
                }
                & .textos {
                    width: 90%;
                    margin: -50px auto 0 0px;
                }
                &:nth-child(2n) {
                    flex-direction: column-reverse;
                    & .textos {
                        width: 90%;
                        margin: -50px 0 0 auto;
                    }
                    & .imagens {
                        & .icone {
                            right: unset;
                            left: 0;
                            bottom: 0;
                        }
                    }
                }
            }
        }
    }
    
    @media screen and (max-width: 768px) {
    }
    
    @media screen and (max-width: 480px) {
        & .topo {
            padding: 80px 30px 20px;
            & h1 {
                font-size: 2.5rem;
            }
        }
        & .lista {
            padding: 40px 30px;
            & .servico {
                & .imagens {
                    & img.thumb {
                        border-radius: 20px;
                        height: 245px;
                    }
                    & .icone {
                        width: 70px;
                        height: 70px;
                        border-radius: 15px;
                        & img {
                            height: 35px;
                        }
                    }
                }
                & .textos {
                    width: 90%;
                    margin: -50px auto 0 0px;
                    padding: 25px 40px 25px 30px;
                    border-radius: 20px;
                    & h3 {
                        font-size: 1.3rem;
                    }
                    & p {
                        color: #344054;
                        font-size: .9rem;
                        line-height: 1.3;
                        margin: 5px 0;
                    }
                    & a {
                        & button {
                            padding: 10px;
                            width: 100%;
                            font-size: .9rem;
                            border-radius: 20px;
                        }
                    }
                } 
                &:nth-child(2n) {
                    & .textos {
                        padding: 25px 30px 25px 45px;
                    }
                }  
            }
        }
    }
}