#meuSlideshow {
    margin-top: 10px;
    border: 2px solid #cccccc;
    padding: 0;
}

/* Container principal */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

/* Imagem */
.slideshow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease, transform 0.4s ease;
}
/* Efeito leve de zoom ao passar mouse */
.slideshow-container:hover .slideshow-img {
    transform: scale(1.03);
}

/* Overlay da descrição */
.slideshow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    pointer-events: none; /* Permite clicar na imagem inteira */
}
