.wrap_section_informacoes_header {
    padding-top: 30px;
    padding-bottom: 20px;
}

.titulo_informacoes_red {
    font-size: 32px;
    font-weight: 700;
    color: #e3242b;
    margin-top: 15px;
}

.subtitulo_informacoes {
    font-size: 20px;
    font-weight: 700;
    color: #e3242b;
    margin-bottom: 30px;
}

.wrap_section_informacoes_galeria {
    padding-bottom: 60px;
}

.flex-row-informacoes {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.col-informacao {
    width: 25%;
    padding: 10px;
}

@media (max-width: 991px) {
    .col-informacao {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .col-informacao {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .col-informacao {
        width: 100%;
    }
}

.informacao-card {
    position: relative;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #e3242b;
}

.informacao-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
}

.informacao-overlay {
    display: none;
}

.informacao-title {
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.informacao-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.informacao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #e3242b;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.informacao-btn:hover {
    background-color: #f0f0f0;
    color: #c11f24;
    text-decoration: none;
}
