/* lista com icones */
.m-features {
    /* margin-top: 80px; */
}
.m-features h3 {
    margin-bottom: 40px;
}
.m-features__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m-features__item {
    position: relative;
    min-height: 72px;
    margin-bottom: 32px;
    padding-left: 100px;
}
.m-features__item img {
    position: absolute;
    top: 0;
    left: 0;
}
.m-features__item h4 {
    font-weight: bold;
    font-size: 20px;
    color: #002a3f;
    margin-bottom: 4px;
}

/* 6. modelo Formas de Ingresso */
.m-card-related {
    background: #005187;
    padding: 30px;
}

.m-card-related h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}
.m-card-related h5 {
    font-size: 16px;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 25px;
}
.m-card-related p {
    font-size: 14px;
    color: #fff;
}
.m-card-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m-card-related__list li {
    margin-bottom: 15px;
}
.m-card-related__list li a {
    font-weight: 700;
    font-size: 12px !important;
    color: #83d0f5;
    line-height: 1.5em;
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.m-card-related__list li a p{
    color: unset;
    margin-bottom: 0;
    font-size: unset;
    width: 90%;
}

.m-card-related__list li:hover a:hover {
    text-decoration: none;
}

.m-card-related__list li:hover a {
    color: white;
}

.m-card-related__list li a:after {
    display: inline-block;
    content: "";
    vertical-align: middle;
    width: 12px;
    height: 12px;
    right: 20px;
    bottom: 20px;
    background: url("../../../assets/images/icons/arrow-right.svg") no-repeat;
    margin-left: 0px;
    transition: all .3s ease;
}

.m-card-related__list li a:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.025rem;
    background-color: #83d0f5;
    transform-origin: left;
    transform: scale(0);
    transition: 0.3s linear;
    position: absolute;
    bottom: 0;
}

/* .m-card-related__list li:hover a::before {
    transform: scale(1);
    background-color: white;
} */

.m-card-related__list li:hover a::after {
    transform: translateX(3px);
    background: url("../../../assets/images/icons/arrow-white.svg") no-repeat;
}

.m-card-related__list__item {
    display: flex; 
    flex-direction: column;
    align-items: flex-start;
}

.m-card-related__list .m-card-related__list__badge {
    left: 20px;
    bottom: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 10px;
    color: #0BBBEF;
    border: 1px solid #0BBBEF;
    background: #fff;
    border-radius: 50px;
    margin-bottom: 5px;
    padding: 1px 10px;
}