/* Slider banners do index */
#id_slide_show_container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-banners {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slide-banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}
.slide-banner.active {
    opacity: 1;
    z-index: 2;
}
.conteudo_banner_slider {
    background: rgba(0,0,0,0.35);
    color: #fff;
    padding: 32px 36px 24px 36px;
    border-radius: 0 0 12px 12px;
    max-width: 520px;
    margin-bottom: 32px;
}
.titulo_banner_slider {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.subtitulo_banner_slider {
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.btn_banner_slider {
    background: #fff;
    color: #007bff;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn_banner_slider:hover {
    background: #007bff;
    color: #fff;
}
@media (max-width: 900px) {
    .slider-banners, .slide-banner {
        height: 100%;
    }
    .conteudo_banner_slider {
        padding: 18px 16px 12px 16px;
        margin-bottom: 12px;
        max-width: 95%;
    }
    .titulo_banner_slider {
        font-size: 1.2rem;
    }
    .subtitulo_banner_slider {
        font-size: 1rem;
    }
}
