.container-image-bank {
    max-width: 1536px;
    margin: 0 auto;
    padding: 30px 64px;
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
}

.section-news h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 70px;
    text-align: center;
}

.title-icon {
    display: inline-block;
    width: 8px;
    height: 20px;
    background-color: #F15F56;
    border-radius: 4px;
    margin-right: 8px;
}

.view-more {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.view-more:hover {
    color: #e74c3c;
}

.view-more i {
    margin-left: 5px;
    /* ou margin-right se o ícone estiver antes */
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas:
        "img1 img2 img3"
        "img4 img2 img6"
        "img4 img5 img6";
    gap: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card:nth-child(1) {
    grid-area: img1;
    height: 384px;
}

.image-card:nth-child(2) {
    grid-area: img2;
    height: 568px;
}

.image-card:nth-child(3) {
    grid-area: img3;
    height: 384px;
}

.image-card:nth-child(4) {
    grid-area: img4;
    height: 568px;
}

.image-card:nth-child(5) {
    grid-area: img5;
    height: 384px;
}

.image-card:nth-child(6) {
    grid-area: img6;
    height: 568px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.image-info {
    margin-top: auto;
}

.image-info p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}



/* Estilos para a seção de Filtros de Categoria */
.category-filters {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Permite que os botões quebrem a linha em telas menores */
    gap: 15px;
    /* Espaçamento entre os botões */
}

.category-label {
    font-size: 16px;
    font-weight: 500;
    color: #343A40;
    margin-right: 10px;
}

.category-button {
    background-color: #FFFFFF;
    color: #555;
    border: 1px solid #E8E8E8;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* Evita que o texto do botão quebre */
}

.category-button:hover {
    background-color: #e0e0e0;
    border-color: #aaa;
}

/* Estilo para o botão de categoria ativo */
.category-button.active {
    background-color: #FEF2F1;
    /* Usando o vermelho do .title-icon como destaque */
    color: #F15F56;
    border-color: #E8E8E8;
    font-weight: 600;
}

.category-button:focus {
    outline: none;
}

@media (max-width: 768px) {
    .image-bank .image-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        /* Espaço entre as imagens */
        align-items: stretch;
    }

    .image-bank .image-grid>* {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .container-image-bank {
        padding: 0px 24px;
    }
}