.custom-el-3-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.custom-el-3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.custom-el-3-img img.people-focus {
    object-position: 80% center;
}

.custom-hero-bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 300ms;
    z-index: 0; /* Adicionando z-index baixo */
}

.gradient-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.gradient-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.8; /* Ajuste conforme necessário */
}

.lines-container {
    position: absolute;
    width: 55%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 0;
}

.lines-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay; /* Isso ajuda na mistura do gradiente com as linhas */
}

/* Estilo para o texto SOLUÇÕES */
.main-title-background {
    position: relative;
    z-index: 2; /* Coloca o texto em uma camada acima */
    color: rgba(255, 255, 255, 0.1); /* Mantém a opacidade original do texto */
}

.lines-container {
    position: absolute;
    width: 55%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 0;
}

.lines-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

.custom-section-1 {
    position: relative;
}

.custom-section-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.4;
    z-index: -1;
    backdrop-filter: brightness(0.7) contrast(1.2); /* Ajuste esses valores conforme necessário */
}

/* CSS para a imagem de fundo da seção de setores */
.custom-el-pos-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
}

    .custom-el-pos-bg img {
        max-width: 50%;
        height: auto;
        object-fit: contain;
    }

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .custom-el-pos-bg {
        justify-content: center;
    }

        .custom-el-pos-bg img {
            max-width: 80%;
        }
}

/* Garantir que o carousel ocupe o espaço correto */
.carousel-half-full-width-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-half-full-width-right .owl-carousel {
    width: 100%;
}

/* Ajustes nos cards para melhor aparência */
.thumb-info-content-inner {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .thumb-info-content-inner h4 {
        flex-shrink: 0;
    }

    .thumb-info-content-inner p {
        flex-grow: 1;
    }