.servico{
    & .topo{
        background: #002938;
        position: relative;
        & img{
            width: 100%;
            height: 70vh;
            object-fit: cover;
            object-position: center;
            display: block;
            opacity: .3;
            mix-blend-mode: luminosity;
        }    
        & h1{
            width: 100%;
            height: 70vh;
            position: absolute;
            top: 0;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px;
            color: #fff;
            font-size: 4rem;
            line-height: 1.2;
            margin: 0;
            z-index: 9000;
        }
    }
    & .descricao{
        padding: 60px 10%;
        & h3{
            margin: 0 0 10px;
            text-transform: uppercase;
            font-weight: 800;
            color: #013d53;
            font-size: 1.8rem;
        }
        & p{
            margin: 10px 0;
            font-size: 1.2rem;
            line-height: 1.5;
            width: 90%;
        }
        & strong, a{
            color: #013d53;
            font-weight: 700;
        }
        & ul{
            list-style-position: inside;
            margin: 20px 0;
            & li{
                list-style-image: url(../images/list.png);
                font-size: 1.1rem;
                line-height: 1.8;
                color: #013d53;
                margin: 5px 0;

            }
        }
        & .video{
            padding: 20px;
            background: #EFF8FF;
            border-radius: 10px;

            & iframe{
                border-radius: 10px;
                width: 100%;
                aspect-ratio: 16 / 9;
            }
        }
    }
    @media screen and (max-width: 1500px) {
        & .descricao {
            padding: 60px 5%;
            & p{
                width: 100%;
            }
        }
    }
    @media screen and (max-width: 1024px) {
        & .topo {
            & img {
                height: 50vh;
            }
            & h1{
                height: 50vh;
                font-size: 3rem;
            }
        }    
        & .descricao {
            padding: 60px;
            & .video{
                margin-top: 20px;
            }
        }
    }
    @media screen and (max-width: 480px) {
        & .topo {
            & h1{
                font-size: 2rem;
                padding: 30px;
            }
        }    
        & .descricao {
            padding: 40px 30px;
            & p{
                font-size: 1rem;
            }
        }
    }
}