.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px; /* Espaço entre as galerias */
}

.gallery-main-image {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 800px; /* Largura máxima para a imagem principal */
    width: 100%;
}

.gallery-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-thumbnails-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Alinha com a imagem principal */
    justify-content: center;
}

.gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail-image {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.thumbnail-image.active {
    border-color: #E8373D; /* Cor do tema */
}

.thumbnail-button {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    padding: 0 15px;
    user-select: none;
}

.thumbnail-button:hover {
    color: #E8373D;
}