.container_services {
    width: 1200px;
    margin: 0 auto;
}

#dir_empresarial,
#dir_civil,
#dir_criminal,
#dir_tributario,
#dir_trabalhista {
    scroll-margin-top: 100px;
}

.sub_banner {
    background: linear-gradient(27deg, #0063C3 22.94%, #002F5D 84.69%);
    padding-top: 130px;
    padding-bottom: 60px;
}

.subtitulo_banner {
    font-size: 1.5rem;
    color: #BABABA;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 150%;
    font-family: "IBM Plex Sans", sans-serif;
}

.title_banner {
    font-size: 3rem;
    color: #BABABA;
    font-weight: 600;
    line-height: 112.5%;
    font-family: "IBM Plex Sans", sans-serif;
}

/* Serviços */

.services {
    background: #fff;
    background-image: url('../img/hatch_1.svg');
    background-repeat: repeat;
    background-size: 44px 12px;
    padding-bottom: 80px;
}

.bg_services_one {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 30.00%, #FFF 30.01%);
    padding-top: 60px;
    padding-bottom: 80px;
}

.bg_service_two {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.00) 30%, #FFF 30.01%);
    padding-top: 60px;
    padding-bottom: 80px;
}

.grid_services_one {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 110px;
}


.grid_services_two {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 110px;
}

.img_services {
    grid-area: img;
}

.content_services {
    grid-area: content;
}

.grid_services_one {
    grid-template-areas: "img content";
}

.grid_services_two {
    grid-template-areas: "content img";
}

.description_services {
    color: #2E2E2E;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
    display: flex;
    align-items: start;
    gap: 10px;
    position: relative;
}

.description_services::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 6px;
    background: linear-gradient(27deg, #0063C3 22.94%, #002F5D 84.69%);
    min-width: 12px;
    min-height: 6px;
    top: 0;
    justify-self: center;
    position: absolute;
    left: -20px;
    top: 10px;
}

.img-services {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
}

.img-services>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.nome_service {
    position: absolute;
    inset: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 2.75rem;
    display: grid;
    place-items: center;
    padding: 12px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    z-index: 2;
}

.img_services {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
}

.img_services .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1;
}

.separador {
    --sep-h: 20px;
    --sep-left: 60px;
    --sep-right: 60px;

}

.separador svg {
    display: block;
    width: calc(100% - var(--sep-left) - var(--sep-right));
    height: var(--sep-h);
    /* altura fixa */
    margin-left: var(--sep-left);
    margin-right: var(--sep-right);
}

.btt_contato {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-top: 40px;
}

.btt_contato_span {
    border-radius: 8px;
    background-image: linear-gradient(103deg,
            #0063C3 0%,
            #002F5D 50%,
            #0063C3 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    font: 700 1.25rem 'IBM Plex Sans', sans-serif;
    padding: 16px 32px;
    transition: background-position .4s ease;
}

.btt_contato_span:hover {
    background-position: 100% 0%;
}

@media (max-width: 1200px) {
    .container_services {
        width: 80%;
    }

    .grid_services_one,
    .grid_services_two {
        gap: 60px
    }
}

@media (max-width: 900px) {

    .grid_services_one,
    .grid_services_two {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .grid_services_one,
    .grid_services_two {
        grid-template-columns: 1fr;
        grid-template-areas:
            "img"
            "content";
    }

    .bg_services_one,
    .bg_service_two {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 30.00%, #FFF 30.01%);
    }

    .img_services {
        width: 275px;
        height: 275px;
    }

    .nome_service {
        font-size: 2rem;
    }

    .separador {
        --sep-h: 20px;
        --sep-left: 60px;
        --sep-right: 60px;
    }

    .separador svg {
        display: block;
        width: calc(100% - var(--sep-left) - var(--sep-right));
        height: var(--sep-h);
        /* altura fixa */
        margin-left: var(--sep-left);
        margin-right: var(--sep-right);
    }
}