.treinamentos{
    width: 100%;
    height: 100%;
    position: relative;
}
.treinamentos .background_treinamentos{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.treinamentos .background_treinamentos img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.treinamentos .list_treinamentos{
    position: relative;
    z-index: 3;
    height: 80%;
    padding: 7.5rem 0;
}
.treinamentos .list_treinamentos ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.treinamentos .list_treinamentos li {
    width: 80%;
    height: 5rem;
    border: 0.2rem solid var(--color);
    border-radius: 2rem;
    background-color: #ffffffa4;
    overflow: hidden;
    padding: 0;
}
.treinamentos .list_treinamentos li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    width: 100%;
    height: 100%;
}
.treinamentos .list_treinamentos li .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem ;
}
.treinamentos .list_treinamentos li .arrow .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem ;
    margin-bottom: 2rem;
}
.treinamentos .list_treinamentos li .arrow .icon svg{
    width: 7rem;
    height: 7rem;
}
.treinamentos .list_treinamentos li h2{
    width: 100%;
    font-weight: 600;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: var(--color-red);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.treinamentos .list_treinamentos ul a li h2 span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    flex: 1;
}
.treinamentos .list_treinamentos li .button{
    width: 25%;
    height: 100%;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: left;
    color: #fff;
    background-color: var(--color);
    border-radius: 1.65rem;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin-top: auto;
    border: 0.2rem solid transparent;
    transition: all 0.4s linear;
    position: relative;
    gap: 5%;
}
.treinamentos .list_treinamentos li .button:hover{
    background-color: var(--color-red);
    border: 0.2rem solid var(--color-red);
    color: #FFFFFF;
}
.treinamentos .list_treinamentos li .button svg{
    transition: all 0.4s linear;
    width: 50%;
}
.treinamentos .list_treinamentos li .button:hover svg *{
    fill: #FFFFFF;
}