/* Grade da Galeria no Post */
.meu-gphotos-shortcode-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.gphotos-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.gphotos-item.foto-escondida {
    display: none !important;
}
.gphotos-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gphotos-item img:hover {
    transform: scale(1.05);
}

/* =========================================================
   BOTÃO "VER MAIS" - VISUAL EXATO DVEx
   ========================================================= */
.gphotos-ver-mais-btn {
    background: #ffff00 !important; /* Fundo amarelo */
    background-color: #ffff00 !important;
    background-image: none !important; /* Mata o gradiente do tema */
    color: #0c71c3 !important; /* Cor do texto original */
    font-family: 'Oxygen', sans-serif !important; /* Fonte Oxygen */
    border: 1px solid #ffffff !important; /* Borda branca (Normal) */
    border-radius: 10px !important; /* Arredondamento de 10px */
    padding: 16px 36px !important; /* Espaçamento exato solicitado */
    font-size: 16px !important; /* Tamanho da fonte */
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important; /* Tira sombras do tema */
    text-shadow: none !important; /* Tira sombras de texto do tema */
}

/* Efeito ao passar o mouse (Hover) */
.gphotos-ver-mais-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important; /* Fundo transparente */
    background-color: rgba(255, 255, 255, 0.1) !important;
    background-image: none !important; /* Garante que o gradiente não volte */
    border: 1px solid #ffffff !important; /* Borda branca (Hover) */
    color: #ffffff !important; /* Texto fica branco no Hover */
    transform: translateY(-2px) !important;
}

/* =========================================================
   GUERRA AO TEMA: CORREÇÕES ABSOLUTAS DO LIGHTBOX
   ========================================================= */
html body .glightbox-container .gslide,
html body .glightbox-container .gslide-inner-content,
html body .glightbox-container .ginner-container,
html body .glightbox-container .gslide-media {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}
html body .glightbox-container .gslide-image img {
    object-fit: contain !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    margin: auto !important;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
}
html body .glightbox-container .gslide-description {
    display: none !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}
html body .glightbox-container .gbtn {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 99999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 0.8 !important;
}
html body .glightbox-container .gbtn:hover {
    opacity: 1 !important;
}
html body .glightbox-container .gbtn svg,
html body .glightbox-container .gbtn svg path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}
