
#videos {
    a {
        display: flex;
        width: fit-content;
        align-items: center;
        gap: 10px;
        .youtubeblue-ico {
            width: 25px;
            height: 26px;
        }
    }
} 
#servicos-oferecidos {
    ul {
        display: flex;
        margin:-30px 0 0;
        padding: 0;
        list-style: none;
        flex-wrap: wrap;
    
        li {
            .flex(4);
            padding:0 15px;
            margin-top:30px;

            .title {
                margin: 15px 0 0 0;
                font-weight: 600;
                line-height: 1.1em;
            }
            img {
                display: block;
                max-width: 100%;
                width: 150px;
                margin: 0 auto;
            }
        }
    
        @media screen{
            @media (max-width:569px){
                li{
                    .flex(12);
                }
            }
    
            @media (min-width:569px) and (max-width:979px){
                li{
                    .flex(6);
                }
            }
        }
    }
}
#contato {
    a {
        transition: all .3s ease-in-out;
        &:hover {
            text-decoration: underline;
        }
    }
}

.internal-nav--link-pdf {
    display: flex;
    width: fit-content;
    margin-top: 20px;
    gap: 7px;
    transition: all .3s ease-in-out;
    &:hover {
        text-decoration: underline;
    }
    img {
        display: block;
        width: 23px;
        height: 23px;
        object-fit: contain;
    }
}