.formas-ingresso {
    background-color: #EFF2F4;
    padding: 80px 0 1px 0;
}

.m-ingresso__content img {
    max-width: 100%;
}

.m-ingresso__content h3 {
    font-weight: bold;
    margin-top: 10px;
}

.m-ingresso__formas__content {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    gap: 10px;
}

.m-ingresso__formas__content img {
    max-width: 100%;
    margin-top: 10px;
}

.m-ingresso__formas__content h3 {
    margin-bottom: 4px;
    font-size: 16px;
}
.m-ingresso__formas__content p {
    margin-bottom: 8px;
    font-size: 14px;
}

/*56. Abas */
.m-tab {
    margin-bottom: 40px;
}
.m-tab__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #005187;
}
.m-tab__list__item a {
    display: flex;
    align-items: center;
    padding: 0 30px;
    height: 52px;
    font-size: 16px;
    color: #005187;
    transition: all 0.3s;
    text-decoration: none;
}
.m-tab__list__item.--active a,
.m-tab__list__item a:hover {
    background: #005187;
    color: #fff;
}
.m-tab__content {  
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.m-tab__content.--active {
    padding: 40px 0;  
    height: auto;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 980px) {
    .m-tab__list {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .m-tab__list {
       flex-direction: column;
    }

    .m-ingresso__formas__content__icon {
        min-width: 80px;
    }

    .owl-stage{
        gap: unset;
    }
}

