.gallery-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 auto;
}
.images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.images img {
    width: 100%;
    display: block;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.0);
    color: #B58C3A;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.arrow-left {
    left: 10px;
}
.arrow-right {
    right: 10px;
}

/* RESPONSIVIDADE */
@media(max-width: 767px) {
    .gallery-container {
        position: relative;
        width: 100%;
    }
}