/* investimento */
.m-course-price {
    background: #ffffff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
    padding: 30px 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.m-course-price__title {
    font-weight: bold;
    font-size: 20px;
    color: #002a3f;
    margin-bottom: 4px;
}
.m-course-price__title + p {
    font-size: 14px;
}
.m-course-price__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px;
    margin-bottom: 10px;
}
.m-course-price__item--light {
    background: #eff2f4;
}
.m-course-price__item__title {
    font-weight: 700;
    font-size: 12px;
    color: #666666;
    margin: 0;
}
.m-course-price__item__price {
    font-weight: 700;
    font-size: 20px;
    text-align: right;
    color: #2c2c2c;
    margin: 0;
    line-height: 1em;
}
.m-course-price__item__price span {
    font-size: 12px;
    margin-right: 2px;
}
.m-course-price__item__price small {
    display: block;
    font-weight: 400;
    font-size: 12px;
    text-align: right;
}
.m-course-price .m-link{
    display: block;
    text-align: right;
}
.m-course-price hr{
    margin: 24px 0;
}
.m-course-price__info{
    font-size: 12px;
    line-height: 1.2em;
    margin-bottom: 25px;
}

.m-dropdown {
    position: relative;
}
.m-dropdown button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 16px 12px;
    background: #005187;
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    z-index: 1;
    transition: all .3s;
    border: solid 1px #005187;
}

.m-dropdown :hover {

}

.m-dropdown button::after{
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    background: url("../../../../pucrs/assets/images/icons/arrow-white.svg") no-repeat;
    transform: rotate(90deg);
    transition: all .3s ease;
}

.m-dropdown button:hover::after {
  transform: rotate(90deg) translateX(3px);
}

.m-dropdown-list {
    position: absolute;
    display: none;
    width: 100%;
    z-index: 99;
}

.m-dropdown-list ul > li {
    border: 1px solid #005187;
    width: 100%;
    padding: 15px;
    color: #005187;
    font-weight: bold;
    background: white;
}

.m-dropdown-list ul > li:hover {
    color: white;
    background: #005187;
}

.m-dropdown-list ul > li:hover a{
    color: white;
}

.m-dropdown-list a {
    text-decoration: none;
    color: #005187;
}

.m-dropdown-list ul {
    list-style: none;
    padding: unset;
}