.UltimaseBoas {
    grid-column: span 4;
    grid-row: span 5;
}
.UltimaseBoas > header {
    display: flex;
}
.UltimaseBoas > header > button {
    padding: 10px 16px;
    font-family: "Ubuntu-Bold",sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #0273BE;
    background-color: #FFFFFF;
    text-align: left;
    border: none;
    cursor: pointer;
    width: 50%;
}
.UltimaseBoas > header > button.active {
    background-color: #F5F9F9;
}
.UltimaseBoas > .UltimaseBoas-content {
    padding: 16px;
    background-color: #F5F9F9;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 406px;
}
.UltimaseBoas > .UltimaseBoas-content > .box-placeholder {
    display: flex;
    align-items: center;
    gap: 14px;
}
.UltimaseBoas > .UltimaseBoas-content > .box-placeholder > .ph-img {
    min-width: 102px;
    width: 102px;
    height: 80px;
    overflow: hidden;
    background-color: #f2f2f2;
}
.UltimaseBoas > .UltimaseBoas-content > .box-placeholder > .ph-text {
    width: 100%;
    height: 60px;
    background-color: #f2f2f2;
}
.UltimaseBoas > .UltimaseBoas-content > a {
    display: flex;
    align-items: center;
    gap: 14px;
}
.UltimaseBoas > .UltimaseBoas-content > a:hover {
    opacity: .8;
}
.UltimaseBoas > .UltimaseBoas-content > a > figure {
    min-width: 102px;
    width: 102px;
    height: 80px;
    overflow: hidden;
}
.UltimaseBoas > .UltimaseBoas-content > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.UltimaseBoas > .UltimaseBoas-content > a:hover > figure > img {
    transform: scale(1.05);
}
.UltimaseBoas > .UltimaseBoas-content > a > h2 {
    font-family: "Ubuntu-Regular",sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #363636;
}
.UltimaseBoas > .UltimaseBoas-content > a:hover > h2 {
    text-decoration: underline!important;
}
.UltimaseBoas > .UltimaseBoas-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 16px 16px;
    background-color: #f5f9f9;
}
.UltimaseBoas > .UltimaseBoas-footer > div {
    background-color: #0273BE;
    width: 100%;
    height: 1px;
}
.UltimaseBoas > .UltimaseBoas-footer > a {
    font-family: "Ubuntu-Bold",sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #0273BE;
    white-space: nowrap;
}
@media screen and (max-width: 1200px) {
    .UltimaseBoas {
        padding: 0 20px;
    }
}
@media screen and (max-width: 992px) {
    .UltimaseBoas {
        grid-column: span 3;
    }
}
@media screen and (max-width: 792px) {
    .UltimaseBoas {
        grid-column: span 8;
        grid-row: span 5;
    }
}