section.servicos {
    padding-bottom: 60px;
}
section.servicos .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 65px;
}
section.servicos .box-options{
    width: 852px;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
section.servicos .box-options a{
    position: relative;
    background-color: var(--color_text);
    width: 100%;
    min-height: 117px;
    display: inline-flex;
    font-size: 48.92px;
    padding-right: 425px !important;
    padding-left: 20px !important;
    padding: 7px 0;
    z-index: 1;
}
section.servicos .box-options a:hover{
    color: #fff;
}
section.servicos .box-options a.active:before,
section.servicos .box-options a:hover:before{
    transform: translate(-50%,-50%) scaleX(1);
}
section.servicos .box-options a:before{
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--roxo);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scaleX(0);
    transform-origin: left;
    transition: all .3s ease-in-out;
}
section.servicos .box-options a li{
    font-family: 'Lato';
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: 100%;
}
section.servicos .content_service .text {
    line-height: 1.5;
}
section.servicos .content_service .text h3{
    font-family: 'Lato';
    font-weight: 500;
    font-size: 20.83px;
    text-transform: uppercase;
    color: var(--roxo);
    margin-bottom: 10px;
}
section.servicos .content_service .text strong{
    font-weight: 600;
    color: var(--roxo);
}
section.servicos .content_service .text p{
    font-size: 16.67px;
    margin-bottom: 10px;
}
section.servicos .content_service .text ul{
    padding-left: 20px;
}
section.servicos .content_service .text ul li::marker{
    color: var(--roxo);
}
section.lead{
    background-image: url("../img/leads/servicos.webp");
}
@media(max-width: 768px) {
    section.servicos .box-options{
        width: 100%;
    }
    section.servicos .box-options a{
        padding: 20px !important;
        font-size: 30px;
    }
    section.servicos .wrapper{
        flex-direction: column-reverse;
    }
}