/* Galeria de Stories */
.carousel-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.story-cover {
    width: 150px;
    text-align: center;
}

.story-cover img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.story-cover img:hover {
    transform: scale(1.05);
}

.story-cover p {
    margin-top: 10px;
    font-weight: bold;
}
