.title_section {
    font-family: 'Archivo';
    font-weight: var(--bold);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.subtitle_section {
    font-weight: var(--bold);
    font-size: 2rem;
    line-height: 150%;
    margin-bottom: 25px;
}

#servicos {
    max-width: 100%;
    margin-top: 5%;
}

.servicesFrames {
    display: flex;
    justify-content: center;
}

.servico {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#container_servicos {
    display: flex;
    justify-content: space-evenly;
}

.servicos_header {
    text-align: center;
}

.servicos_subtitle {
    font-weight: var(--bold);
    font-size: 2rem;
    line-height: 150%;
    margin-bottom: 25px;
}

.box_servico {
    display: flex;
    align-items: center;
    width: 80%;
    border: 1px solid var(--border);
    padding: 18px 22px;
    margin-top: 2%;
}

.box_servico .items-center {
    width: 100%;
}

.btn_servicos {
    margin-top: 3%;
    background-color: var(--text-primary);
    border: none;
    height: 66px;
    color: var(--white);
    width: 218px
}

.btn_servicos:hover {
    opacity: 0.8;
}

.box_servico:hover {
    cursor: pointer;
    background-color: var(--background-primary);
    color: var(--white);
}

#container_servicos a {
    text-decoration: none;
}

.box_servico h5 {
    margin-left: 5%;
    color: var(--text-primary);
    font-weight: var(--bolder);
}

.box_servico p {
    margin-left: 5%;
    color: var(--text-gray);
    margin-top: 12px;
    width: 70%;
}

.servicesFrame {
    width: 100%;
}

.box_servico:hover p {
    color: var(--white);
}

.icon_servico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11%;
    height: 60px;
    border-radius: 100px;
    background-color: var(--text-primary);
}

.box_servico:hover .icon_servico {
    background-color: var(--white);
}

.box_servico:hover .icon_servico path {
    fill: var(--background-primary);
}

path {
    stroke: var(--text-primary);
}

.box_servico:hover path {
    stroke: var(--white);

}



@media (min-width: 249px) and (max-width: 480px) {
    #servicos {
        width: 100%;
        margin-top: 5%;
        display: flex;
        justify-content: center;
    }


    .servicos_header {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .servicos_subtitle {
        width: 100%;
        font-size: 1rem;
    }

    #container_servicos {
        flex-direction: column;
    }

    .box_servico {
        display: flex;
        align-items: center;
        width: 100%;
        border: 1px solid var(--border);
        padding: 16px 24px;
        margin-top: 2%;
        margin-bottom: 2%;
    }

    .btn_servicos {
        margin-top: 1.8rem;
    }

    .servicesFrame {
        margin-left: 11px;
        margin-top: 10px;
    }

    .icon_servico {
        display: flex;
        align-items: center;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 49px;

    }

    .box_servico p {
        margin-left: -30%;
        color: var(--text-gray);
        margin-top: 25px;
        width: 130%;
    }

    .arrow {
        display: none;

    }

    .box_servico label {
        margin-left: 0;
    }
}

/* ----------------------------------------------------------------------------------------- */
/* Telas Médias */
@media (min-width: 481px) and (max-width: 1024px) {
    .servicesFrames {
        flex-direction: column;
        align-items: center;
    }

    .box_servico {
        height: 14rem;
    }

    .box_servico p {
        margin: 0;
        width: 100%;
        margin-top: 13px;
    }

    .box_servico label {
        margin: 0;
    }

    .icon_servico {
        width: 26%;
        margin-bottom: 13px;
    }

    .arrow {
        display: none;
    }
}

/* ----------------------------------------------------------------------------------------- */
/* Telas Grandes */
@media (min-width: 1024px) and (max-width: 1919px) {
    .icon_servico {
        width: 18%;
    }

    .box_servico h5 {
        margin-left: 1.1rem;
    }

    .arrow {
        width: 50px;

    }
}