#galeria {
    color: white;
}

#galeria .pre-bg {
    width: 100%;
    background-image: url("/images/bgimg2.png");
    background-size: cover;
    background-repeat: no-repeat;
}

#galeria .summit {
    padding-top: 120px;
    height: 70vh;
    background: linear-gradient(180deg, rgba(71, 27, 122, 0.8) 0%, #000 100%);
}

#galeria .summit .title {
    color: white;
    font-family: "Akira";
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.2px;
    text-align: left;
    width: 100%;
}
#galeria .row-filtros {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

#galeria .row-filtros .datas,
#galeria .row-filtros .ver-apenas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-flow: wrap;
    color: white !important;
}

#galeria .row-filtros .datas .base-buttons,
#galeria .row-filtros .ver-apenas .base-buttons {
    margin-right: 4px;
    background: #f4f4f4;
}

#galeria .row-filtros .datas .cap,
#galeria .row-filtros .ver-apenas .cap {
    color: white;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 133.333% */
}

#galeria .row-filtros .datas .active,
#galeria .row-filtros .ver-apenas .active {
    background: #471b7a;
    color: #fff;
}

#galeria .media-list {
    margin-top: 16px;
}

#galeria .media-list .media-item {
    margin-bottom: 16px;
    cursor: pointer;
}

#galeria .media-list .media-item .image-container {
    position: relative;
    width: 100%;
    height: 2vw;
    overflow: hidden;
    border-radius: 8px;
    min-height: 140px;
    max-height: 200px;
}

#galeria .media-list .media-item .image-container img {
    width: 100%;
    height: 2vw;
    min-height: 140px;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
    position: absolute;
    opacity: 0.9;
    object-position: top;
}

#galeria .media-list .media-item .image-container img:hover {
    transform: scale(1.1);
    opacity: 1;
}

#galeria .media-list .media-item .type-caption {
    display: inline-flex;
    padding: 3px 5px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.09);
    margin-top: 4px;
    color: white;
    font-size: 12px;
}

#galeria .media-list .media-item .title {
    color: white;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.225px;
}
