.glow-background {
    overflow: hidden;
    position: relative;
}

.glow-background::before {
    content: '';
    position: absolute;
    top: 0;
    width: 2000px;
    height: 100%;
    left: unset !important;
    right: -800px;
    background-position: right !important;
    background: radial-gradient(circle, #ebf0f9 0%, #f9f9f9 80%);
    filter: blur(80px);
    z-index: 0;
}

.tab-img-integracoes {
    transition: all 0.25s ease !important;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
}

.tab-img-integracoes:is(.active) {
    max-height: 450px;
    visibility: visible;
    opacity: 1;
}

.tab-item-integracoes {
    transition: all 0.25s ease-in-out;
    cursor: pointer !important;
}

.tab-item-integracoes:is(.active) {
    border-left-color: var(--e-global-color-secondary) !important;
}

.tab-item-integracoes:is(.active) p {
    color: var(--e-global-color-primary) !important;
}

.tab-item-integracoes:is(.active) .tab-descript-text p {
    color: #535353 !important;
}

.slider-integracoes img {
    filter: invert(1) sepia(1) saturate(1521%) hue-rotate(180deg) brightness(60%) contrast(1%);
    transition: all 0.25s ease;
}

@media (max-width: 768px) {
    .slider-integracoes img {
        filter: none;
    }
}

.slider-integracoes img:hover {
    filter: none;
}