/* Estilo do modal (inicialmente oculto) */
.modal {
    display: none;
    /* oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

/* Exibe o modal quando a classe "active" estiver presente */
.modal.active {
    display: flex;
}

/* Conteúdo centralizado do modal */
.modal-content {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin-bottom: 15px;
}

.close-btn {
    padding: 10px 20px;
    font-size: 16px;
    background: #facc15;
    border: none;
    cursor: pointer;
}