/*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;
    display: none;
    visibility: hidden;
    transition: opacity 0.3s;
}

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

.m-tab__content .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.m-tab__content .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
}
.m-tab__content .owl-dots .owl-dot.active span {
    background: #0bbbef;
    border-color: #0bbbef;
}

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

/*6. Card -  formas de ingresso*/
.m-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 280px;
    height: 260px;
    background: #005187;
    padding: 30px 25px;
    margin-right: 35px;
}
.m-card--light {
    background: #83d0f5;
}
.m-card__title {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}
.m-card--light .m-card__title {
    color: #005187;
}

.m-card__text {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}
.m-card--light .m-card__text {
    color: #444444;
}
.m-card__text strong {
    display: block;
    font-weight: 500;
    font-size: 40px;
    color: #83d0f5;
    line-height: 1em;
    text-transform: uppercase;
}
.m-card--light .m-card__text strong {
    color: #002a3f;
}
.m-card__text span {
    display: block;
    color: #83d0f5;
}
.m-card__button {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
}

.m-card--light .m-card__button:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.025rem;
    background-color: var(--light-blue);
    transform-origin: left;
    transform: scale(0);
    transition: 0.3s linear;
    position: absolute;
    bottom: 0;
}

.m-card__button:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.025rem;
    background-color: white;
    transform-origin: left;
    transform: scale(0);
    transition: 0.3s linear;
    position: absolute;
    bottom: 0;
}
.m-card__button:hover::before {
    transform: scale(.6);
}

.m-card--light .m-card__button {
    color: #005187;
}

.m-card--light .m-card__text span,
.m-card--light .m-card__text {
    color: #005187;
}

.m-card__button:hover {
    color: #fff;
    text-decoration: none;
}
.m-card--light .m-card__button:hover {
    color: #005187;
}
.m-card__button:after {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: url("../../../assets/images/icons/arrow-white.svg") no-repeat;
    margin-left: 15px;
    transition: all .3s;
}
.m-card__button:hover::after {
    transform: translateX(3px);
}
.m-card--light .m-card__button:after {
    background: url("../../../assets/images/icons/arrow.svg") no-repeat;
}
