.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 40%; /* Ajuste para diminuir a altura do banner */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, left 1s ease;
}

.slide.active {
    left: 0;
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre toda a área sem distorção */
    display: block;
}

.slide-caption {
	position: absolute;
    bottom: 37%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    /* background-color: rgba(0, 0, 0, 0.6); */
    padding: 1rem 2rem;
    border-radius: 10px;
    max-width: 90%;
}

.slide-caption h2 {
    font-size: 2.25rem;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
    color: #fff;
}

@media (max-width: 768px) {
	
	.slide-caption {
    bottom: 20%;
    padding: 1rem 0rem;
}

    .slide-caption h2 {
        font-size: 1rem;
        line-height: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-caption h2 {
        font-size: 1.2rem;
    }
}