/* =========================
   MODAL DE IMAGEM
========================= */
.bioteca-modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 999999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.bioteca-modal-backdrop.active { opacity: 1; pointer-events: auto; }
.bioteca-modal-content {
    background-color: #ebdccc; width: 90%; max-width: 450px; border-radius: 20px; padding: 20px;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.2); max-height: 90vh; overflow-y: auto; font-family: sans-serif;
}
.bioteca-modal-close {
    position: absolute; top: 15px; right: 15px; background: none; border: none;
    font-size: 24px; cursor: pointer; color: #3d2b1f; line-height: 1; padding: 0; z-index: 10;
}
.bioteca-modal-body { margin-top: 10px; }
.bioteca-modal-loader { text-align: center; padding: 40px; color: #3d2b1f; font-weight: bold; }
.bioteca-modal-img { width: 100%; border-radius: 12px; margin-bottom: 15px; display: block; }
.bioteca-modal-tags { margin-bottom: 15px; }
.bioteca-modal-tag {
    display: inline-block; background-color: #3d2b1f; color: #ffffff;
    padding: 6px 20px; border-radius: 20px; font-size: 13px; margin-right: 8px; margin-bottom: 8px;
}
.bioteca-modal-desc { color: #3d2b1f; font-size: 14px; line-height: 1.6; margin-bottom: 25px; }
.bioteca-modal-desc p { margin-bottom: 10px; }
.bioteca-modal-desc p:last-child { margin-bottom: 0; }
.bioteca-modal-download {
    display: block; background-color: #3d2b1f; color: #ffffff !important;
    text-align: center; padding: 12px; border-radius: 25px; 
    text-decoration: none !important; font-weight: bold; transition: opacity 0.2s; border: none;
}
.bioteca-modal-download:hover { opacity: 0.85; }

/* =========================
   FILTRO DINÂMICO
========================= */
.bioteca-filter-container { position: relative; display: inline-block; width: 100%; max-width: 400px; }
.bioteca-filter-select {
    width: 100%; height: 55px; appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-color: #f1e9db; border: 3px solid #3d2b1f; border-radius: 50px;
    color: #3d2b1f; font-size: 20px; font-weight: bold; font-family: sans-serif;
    padding: 0 15px 0 24px; cursor: pointer; outline: none;
}
.bioteca-filter-select:focus { outline: none; }

/* =========================
   GALERIA E PAGINAÇÃO (BOLINHAS)
========================= */
/* Ocultar barra de rolagem cinza feia do navegador */
.bioteca-scroller {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.bioteca-scroller::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari and Opera */
}

/* Container das Bolinhas */
.bioteca-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
    min-height: 10px;
}

/* Bolinha Padrão */
.bioteca-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bioteca-dot-inactive, #cccccc); /* Cor nativa ou injetada pelo elementor */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Bolinha Ativa */
.bioteca-dot.active {
    width: 9px;
    height: 9px;
    background-color: var(--bioteca-dot-active, #3d2b1f);
}
