/* Correção para altura consistente do banner */
.tj-slider-2-height {
    min-height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.tj-slider-2-bg {
    background-size: cover !important;
    background-position: center center !important;
    object-fit: cover;
}

.tj-slider-2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.tj-slider-2-title-box {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsividade */
@media only screen and (max-width: 991px) {
    .tj-slider-2-height {
        min-height: 60vh;
    }
    
    .tj-slider-2-content {
        min-height: 300px;
    }
    
    .tj-slider-2-title-box {
        min-height: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .tj-slider-2-height {
        min-height: 50vh;
    }
    
    .tj-slider-2-content {
        min-height: 250px;
    }
    
    .tj-slider-2-title-box {
        min-height: 120px;
    }
}

@media only screen and (max-width: 575px) {
    .tj-slider-2-height {
        min-height: 45vh;
    }
    
    .tj-slider-2-content {
        min-height: 200px;
    }
    
    .tj-slider-2-title-box {
        min-height: 100px;
    }
}